:root {
  /* Paleta extraída da identidade visual oficial. */
  --navy-900: #12052d;
  --navy-800: #1a0a3a;
  --navy-700: #251046;
  --navy-600: #3a1c61;
  --navy-100: #e9e4f1;
  --navy-50: #f6f3f9;
  --red: #d60016;
  --red-dark: #b70014;
  --red-soft: #fdecee;
  --ink: #171129;
  --muted: #6e6878;
  --line: #e3dfe9;
  --off-white: #f8f6fa;
  --white: #ffffff;
  --brand-gold: #f28a00;
  --whatsapp: #25d366;
  --shadow-sm: 0 10px 30px rgba(18, 5, 45, 0.08);
  --shadow-md: 0 18px 55px rgba(18, 5, 45, 0.14);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --header-height: 76px;
  --transition: 240ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  padding-bottom: 70px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(214, 0, 22, 0.78);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--navy-700);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.55rem, 10vw, 4.9rem);
  font-weight: 800;
}

h1 em {
  position: relative;
  color: var(--brand-gold);
  font-style: normal;
  white-space: nowrap;
}

h1 em::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  opacity: 0.7;
  transform: rotate(-1deg) scaleX(0.96);
}

h2 {
  margin-bottom: 20px;
  color: var(--navy-900);
  font-size: clamp(2rem, 8vw, 3.25rem);
  font-weight: 800;
}

h3 {
  color: var(--navy-900);
  font-size: 1.2rem;
  font-weight: 700;
}

.section {
  position: relative;
  padding-block: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--red);
}

.eyebrow--light {
  color: #ded5e9;
}

.eyebrow--gold {
  color: var(--brand-gold);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: left;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    transform var(--transition),
    color var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.button:hover {
  box-shadow: 0 10px 24px rgba(18, 5, 45, 0.16);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.84rem;
}

.button--primary {
  color: var(--white);
  background: var(--navy-700);
}

.button--primary:hover {
  background: var(--navy-900);
}

.button--secondary {
  border-color: var(--navy-700);
  color: var(--navy-700);
  background: transparent;
}

.button--secondary:hover {
  color: var(--white);
  background: var(--navy-700);
}

.button--whatsapp {
  color: var(--navy-900);
  background: var(--whatsapp);
}

.button--whatsapp:hover {
  background: #52e080;
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button--ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.whatsapp-icon {
  display: block;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  fill: currentColor;
}

/* Top bar and navigation */
.topbar {
  position: relative;
  z-index: 20;
  color: #e9e3f0;
  background: var(--navy-900);
  font-size: 0.73rem;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
}

.topbar p {
  margin: 0;
  text-align: center;
}

.store-status {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #74e99a;
  box-shadow: 0 0 0 4px rgba(116, 233, 154, 0.13);
}

.store-status.is-closed .status-dot {
  background: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(214, 0, 22, 0.16);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(227, 223, 233, 0.75);
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(18, 5, 45, 0.08);
}

.header__inner {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
}

.brand-logo {
  display: block;
  object-fit: contain;
}

.brand-logo--header {
  width: 78px;
  height: 78px;
}

.menu-toggle {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-900);
  background: var(--off-white);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: absolute;
  z-index: 120;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: flex;
  max-height: calc(100vh - 120px);
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
  visibility: hidden;
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.main-nav > a:not(.button) {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding-inline: 13px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 600;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button).is-active {
  color: var(--navy-700);
  background: var(--navy-50);
}

.nav-whatsapp {
  margin-top: 8px;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px 0 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(to left, #000, transparent);
  opacity: 0.28;
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.hero-orb--one {
  top: -170px;
  left: -220px;
  width: 460px;
  height: 460px;
}

.hero-orb--two {
  top: 100px;
  left: -105px;
  width: 250px;
  height: 250px;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 56px;
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 30px;
  color: #e9e3f0;
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero__actions {
  margin-bottom: 30px;
}

.hero__facts {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: #e9e3f0;
  font-size: 0.83rem;
  list-style: none;
}

.hero__facts li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__facts li span {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: #ffd06a;
  font-size: 0.7rem;
  font-weight: 900;
}

.hero__visual {
  position: relative;
  max-width: 560px;
  margin-inline: auto;
  padding: 0 8px 18px;
}

.hero__image-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  border-radius: 110px 24px 0 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero__image-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 5, 45, 0.03), rgba(18, 5, 45, 0.3));
  pointer-events: none;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 190px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  font-size: 0.72rem;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}

.floating-card strong {
  display: block;
  color: var(--navy-900);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.83rem;
}

.floating-card--top {
  top: 28px;
  right: -2px;
}

.floating-card--bottom {
  bottom: 42px;
  left: -2px;
}

.floating-card__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--red);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
}

.pulse-icon {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: var(--navy-100);
}

.pulse-icon::before,
.pulse-icon::after {
  position: absolute;
  top: 17px;
  height: 2px;
  background: var(--navy-700);
  content: "";
}

.pulse-icon::before {
  right: 7px;
  left: 7px;
}

.pulse-icon::after {
  left: 14px;
  width: 10px;
  transform: rotate(-62deg);
}

.trust-strip {
  position: relative;
  z-index: 5;
  display: grid;
  margin-top: 0;
  color: var(--ink);
  background: var(--white);
}

.trust-strip article {
  display: flex;
  gap: 15px;
  padding: 23px 20px;
  border-bottom: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-bottom: 0;
}

.trust-number {
  color: var(--red);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
}

.trust-strip h2 {
  margin: 0 0 5px;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

/* Products */
.products {
  background:
    radial-gradient(circle at 98% 4%, rgba(37, 16, 70, 0.06), transparent 24%),
    var(--off-white);
}

.category-grid {
  display: grid;
  gap: 16px;
}

.category-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.category-card::after {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 88px;
  height: 88px;
  border: 15px solid var(--navy-50);
  border-radius: 50%;
  content: "";
  transition: transform var(--transition);
}

.category-card:hover {
  border-color: #cec4da;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.category-card:hover::after {
  transform: scale(1.2);
}

.category-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.category-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px 15px 15px 5px;
  color: var(--navy-700);
  background: var(--navy-50);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card-index {
  color: #a79faf;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.category-card h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
}

.category-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.category-card a {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: var(--navy-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.category-card a span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.category-card:hover a span {
  color: var(--white);
  background: var(--navy-700);
  transform: translateX(3px);
}

.category-card--accent {
  color: var(--white);
  border-color: var(--navy-700);
  background: var(--navy-700);
}

.category-card--accent h3,
.category-card--accent a {
  color: var(--white);
}

.category-card--accent p,
.category-card--accent .card-index {
  color: #e4dcec;
}

.category-card--accent .category-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.category-card--accent::after {
  border-color: rgba(255, 255, 255, 0.08);
}

.product-help {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid #f0b1b8;
  border-radius: var(--radius-md);
  background: var(--red-soft);
}

.product-help__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
}

.product-help h3 {
  margin-bottom: 5px;
}

.product-help p {
  margin: 0;
  color: #74464b;
  font-size: 0.9rem;
}

/* Delivery */
.delivery {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.delivery::before,
.delivery::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.delivery::before {
  top: -170px;
  right: -150px;
  width: 390px;
  height: 390px;
}

.delivery::after {
  right: 35px;
  bottom: -150px;
  width: 250px;
  height: 250px;
}

.delivery__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 48px;
}

.delivery h2 {
  color: var(--white);
}

.delivery__intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: #d8d0e3;
}

.delivery__intro .button {
  width: 100%;
}

.delivery__intro small {
  display: block;
  margin-top: 14px;
  color: #b7abc6;
  font-size: 0.74rem;
}

.delivery-steps {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-steps::before {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 25px;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.delivery-steps li {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.delivery-steps li > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  color: #ffc34d;
  background: var(--navy-800);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.delivery-steps h3 {
  margin: 2px 0 8px;
  color: var(--white);
  font-size: 1rem;
}

.delivery-steps p {
  margin: 0;
  color: #c8bfd3;
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Services */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 220px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.service-card:hover {
  background: var(--off-white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-icon {
  display: inline-flex;
  width: 47px;
  height: 47px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50% 50% 50% 15%;
  color: var(--white);
  background: var(--navy-700);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.service-card:nth-child(even) .service-icon {
  background: var(--red);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* About */
.about {
  overflow: hidden;
  background: var(--off-white);
}

.about__grid {
  display: grid;
  gap: 50px;
}

.about__visual {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 32px;
  border-radius: 100px 24px 24px 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(145deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow-md);
}

.about__visual::before,
.about__visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.about__visual::before {
  top: -80px;
  right: -80px;
  width: 230px;
  height: 230px;
}

.about__visual::after {
  right: -30px;
  bottom: -60px;
  width: 170px;
  height: 170px;
}

.about__number {
  position: relative;
  z-index: 1;
  color: var(--brand-gold);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(7rem, 32vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.82;
}

.about__visual > p {
  position: relative;
  z-index: 1;
  margin: 15px 0 0 8px;
  color: #e7e0ef;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.35;
}

.about__seal {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  display: grid;
  width: 92px;
  height: 92px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  line-height: 1.1;
  text-align: center;
  transform: rotate(7deg);
}

.about__seal span {
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__seal strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.35rem;
}

.about__content > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.91rem;
  font-weight: 600;
}

.check-list span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-700);
  background: var(--navy-100);
  font-size: 0.72rem;
}

/* Location */
.location {
  background: var(--white);
}

.location__grid {
  display: grid;
  gap: 20px;
}

.location-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--off-white);
}

.location-block + .location-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.location-label {
  display: block;
  margin-bottom: 8px;
  color: var(--red-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-block h3 {
  margin-bottom: 5px;
  font-size: 1.45rem;
}

.location-block p {
  margin: 0;
  color: var(--muted);
}

.hours-list {
  margin: 0;
}

.hours-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 9px;
}

.hours-list dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.hours-list dd {
  margin: 0;
  color: var(--navy-900);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.location__actions {
  margin-top: 28px;
}

.location-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.location-note span {
  color: var(--red);
  font-size: 0.65rem;
}

.map-wrap {
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--navy-50);
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
  border: 0;
  filter: saturate(0.78) contrast(0.96);
}

/* FAQ */
.faq {
  background: var(--off-white);
}

.faq__grid {
  display: grid;
  gap: 44px;
}

.faq__intro > p:not(.eyebrow) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--navy-700);
  font-weight: 700;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(4px);
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 2px;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  cursor: pointer;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  text-align: left;
}

.faq-item button > span {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.faq-item button > span::before,
.faq-item button > span::after {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 10px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy-700);
  content: "";
  transition: transform var(--transition);
}

.faq-item button > span::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] > span {
  border-color: var(--navy-700);
  background: var(--navy-700);
}

.faq-item button[aria-expanded="true"] > span::before,
.faq-item button[aria-expanded="true"] > span::after {
  background: var(--white);
}

.faq-item button[aria-expanded="true"] > span::after {
  transform: rotate(0deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  margin: -2px 44px 22px 2px;
  color: var(--muted);
  font-size: 0.91rem;
}

/* CTA and footer */
.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 72px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}

.final-cta::before {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 350px;
  height: 350px;
  border: 52px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  content: "";
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 30px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: #e4ddea;
}

.site-footer {
  color: #cfc5da;
  background: #0b021d;
}

.footer__grid {
  display: grid;
  gap: 36px;
  padding-block: 62px 46px;
}

.brand--footer {
  width: fit-content;
  padding: 7px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.brand-logo--footer {
  width: 118px;
  height: 118px;
  border-radius: 10px;
}

.footer__brand > p {
  max-width: 290px;
  margin: 20px 0;
  font-size: 0.88rem;
}

.footer-contact {
  display: block;
  width: fit-content;
  min-height: 34px;
  color: var(--white);
  font-size: 0.8rem;
}

.footer__grid h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.footer__grid address,
.footer__grid > div > p {
  margin-bottom: 13px;
  color: #b8aec4;
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.7;
}

.footer__grid p strong {
  color: #e8e2ef;
}

.footer-link {
  display: block;
  width: fit-content;
  min-height: 35px;
  color: #ded7e8;
  font-size: 0.79rem;
  line-height: 1.4;
}

.footer-link:hover,
.footer-contact:hover {
  color: #ffb33b;
}

.footer-link--button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.company-data {
  margin-top: 17px;
  font-size: 0.68rem !important;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-block: 22px 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
  margin: 0;
  color: #9388a0;
  font-size: 0.69rem;
}

.developer-credit a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-left: 3px;
  color: #e8e2ef;
  font-weight: 700;
  transition: color var(--transition);
}

.developer-credit a:hover {
  color: var(--brand-gold);
}

/* Persistent WhatsApp actions */
.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 82px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 14px 34px rgba(11, 2, 29, 0.25);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.floating-whatsapp:hover {
  box-shadow: 0 18px 38px rgba(11, 2, 29, 0.34);
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp__label {
  display: none;
}

.mobile-whatsapp-bar {
  position: fixed;
  z-index: 89;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 9px 12px;
  border-top: 1px solid rgba(11, 2, 29, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -8px 30px rgba(11, 2, 29, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-whatsapp-bar a {
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  color: var(--navy-900);
  background: var(--whatsapp);
  font-size: 0.88rem;
  font-weight: 800;
}

/* Legal dialogs */
.legal-dialog {
  width: min(calc(100% - 28px), 670px);
  max-height: min(84vh, 720px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(11, 2, 29, 0.3);
}

.legal-dialog::backdrop {
  background: rgba(11, 2, 29, 0.72);
  backdrop-filter: blur(5px);
}

.legal-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  color: var(--white);
  background: var(--navy-900);
}

.legal-dialog__header span {
  color: #c1b5d1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-dialog__header h2 {
  margin: 5px 0 0;
  color: var(--white);
  font-size: 1.5rem;
}

.legal-dialog__header button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.5rem;
}

.legal-dialog__content {
  max-height: calc(84vh - 118px);
  overflow-y: auto;
  padding: 26px;
}

.legal-dialog__content p {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-dialog__content a {
  color: var(--navy-700);
  font-weight: 700;
  text-decoration: underline;
}

/* Reveal effects */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal--delay {
  transition-delay: 100ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 640px */
@media (min-width: 640px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .button-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button-row .button {
    width: auto;
  }

  .hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__image-wrap {
    height: 500px;
  }

  .floating-card {
    max-width: 220px;
    padding: 14px 16px;
    font-size: 0.78rem;
  }

  .floating-card--top {
    right: -18px;
  }

  .floating-card--bottom {
    left: -18px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-help {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .product-help .button {
    white-space: nowrap;
  }

  .delivery__intro .button {
    width: auto;
  }

  .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 768px */
@media (min-width: 768px) {
  body {
    font-size: 17px;
  }

  .section {
    padding-block: 104px;
  }

  .topbar__inner {
    justify-content: space-between;
  }

  .topbar p {
    text-align: left;
  }

  .store-status {
    display: inline-flex;
  }

  .section-heading--center {
    text-align: center;
  }

  .section-heading--center .eyebrow {
    justify-content: center;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -10px 38px rgba(11, 2, 29, 0.11);
  }

  .trust-strip article {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:nth-child(2n) {
    border-right: 0;
  }

  .trust-strip article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 245px;
    padding: 31px;
  }

  .location-card {
    padding: 38px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* 1024px */
@media (min-width: 1024px) {
  :root {
    --header-height: 84px;
  }

  body {
    padding-bottom: 0;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    max-height: none;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .main-nav > a:not(.button) {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .nav-whatsapp {
    margin: 0 0 0 8px;
  }

  .hero {
    padding-top: 82px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    align-items: center;
    gap: 64px;
  }

  .hero__content {
    padding-bottom: 90px;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .hero__visual {
    align-self: end;
    margin: 0;
    padding-bottom: 0;
  }

  .hero__image-wrap {
    height: 570px;
  }

  .floating-card--bottom {
    bottom: 42px;
  }

  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: -50px;
    border-radius: 20px;
  }

  .trust-strip article {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 24px 20px;
  }

  .trust-strip article:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-right: 0;
  }

  .section-heading--split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: 80px;
  }

  .section-heading--split h2,
  .section-heading--split > p {
    margin-bottom: 0;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-card {
    min-height: 290px;
    padding: 28px;
  }

  .delivery__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    align-items: center;
    gap: 100px;
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about__grid {
    grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: 90px;
  }

  .about__visual {
    min-height: 560px;
    padding: 48px;
    border-radius: 160px 28px 28px 28px;
  }

  .about__seal {
    right: 40px;
    bottom: 40px;
    width: 112px;
    height: 112px;
  }

  .location__grid {
    grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
    align-items: stretch;
  }

  .location-card,
  .map-wrap,
  .map-wrap iframe {
    min-height: 520px;
  }

  .faq__grid {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 100px;
  }

  .faq__intro {
    position: sticky;
    top: calc(var(--header-height) + 30px);
    align-self: start;
  }

  .final-cta {
    padding-block: 86px;
  }

  .final-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .final-cta__actions {
    justify-content: flex-end;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 0.85fr 1fr;
    gap: 50px;
  }

  .footer__bottom {
    padding-bottom: 24px;
  }

  .mobile-whatsapp-bar {
    display: none;
  }

  .floating-whatsapp {
    right: 24px;
    bottom: 24px;
    display: flex;
    width: auto;
    min-width: 58px;
    height: 58px;
    gap: 9px;
    padding: 0 19px;
    border-radius: 99px;
  }

  .floating-whatsapp__label {
    display: inline;
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
  }
}

/* 1180px */
@media (min-width: 1180px) {
  .main-nav {
    gap: 5px;
  }

  .main-nav > a:not(.button) {
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .trust-strip article {
    padding: 27px 23px;
  }
}

/* 1280px */
@media (min-width: 1280px) {
  .section {
    padding-block: 120px;
  }

  .hero__grid {
    gap: 88px;
  }

  .hero__image-wrap {
    height: 610px;
  }

  .category-grid,
  .services-grid {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .topbar,
  .site-header,
  .floating-whatsapp,
  .mobile-whatsapp-bar,
  .final-cta,
  .button {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
  }

  .section,
  .hero {
    padding-block: 24px;
  }
}
