/* ==========================================================================
   AERODROME LABS — design system
   Mobile-first. No !important. No fixed pixel widths on containers.
   ========================================================================== */

:root{
  /* --- Brand color tokens (source of truth: current project) --- */
  --color-primary: #065F46;
  --color-primary-dark: #043D2C;
  --color-secondary: #E3F1EA;
  --color-bg: #FCFBF7;
  --color-text: #0A0E18;
  --color-white: #FFFFFF;

  --color-text-muted: #545C68;
  --color-text-faint: #656F7B;
  --color-border: #E4E1D6;
  --color-border-strong: rgba(10,14,24,.14);
  --color-danger: #B3261E;
  --color-star: #C9A227;
  --color-accent: #A9812F;
  --color-accent-strong: #8A6423;
  --color-accent-soft: #E9DCB8;

  --color-primary-rgb: 6,95,70;
  --color-accent-rgb: 169,129,47;

  /* --- Typography --- */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.8125rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-lg: clamp(1.125rem, 1.06rem + 0.3vw, 1.25rem);
  --fs-xl: clamp(1.3rem, 1.18rem + 0.6vw, 1.625rem);
  --fs-2xl: clamp(1.55rem, 1.35rem + 1vw, 2.1rem);
  --fs-3xl: clamp(1.9rem, 1.55rem + 1.75vw, 2.75rem);
  --fs-hero: clamp(2.1rem, 1.6rem + 2.7vw, 3.6rem);

  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-normal: 1.6;

  /* --- Spacing scale (standard density) --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* --- Radii / shadows --- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(10,14,24,.06);
  --shadow-md: 0 10px 30px -12px rgba(10,14,24,.18);
  --shadow-lg: 0 24px 60px -20px rgba(10,14,24,.22);
  --shadow-card: 0 2px 6px -2px rgba(6,95,70,.08), 0 20px 40px -24px rgba(6,95,70,.28);
  --shadow-card-hover: 0 8px 16px -6px rgba(6,95,70,.14), 0 28px 56px -20px rgba(6,95,70,.32);

  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  --header-h: 64px;
  --announce-h: 40px;

  --ease: cubic-bezier(.4,0,.2,1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body{
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{ margin: 0; font-weight: 700; line-height: var(--lh-tight); letter-spacing: -0.01em; }
p{ margin: 0; }
ul,ol{ margin: 0; padding: 0; list-style: none; }
a{ color: inherit; text-decoration: none; }
img, svg{ max-width: 100%; height: auto; display: block; }
button{ font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
input, select, textarea{ font-family: inherit; font-size: inherit; }
table{ border-collapse: collapse; width: 100%; }

:focus-visible{ outline: 2.5px solid var(--color-primary); outline-offset: 2px; border-radius: 4px; }

::selection{ background: var(--color-primary); color: #fff; }
.kit-card ::selection{ background: var(--color-accent-soft); color: var(--color-primary-dark); }

html{ scrollbar-color: var(--color-primary) var(--color-secondary); scrollbar-width: thin; }
::-webkit-scrollbar{ width: 11px; height: 11px; }
::-webkit-scrollbar-track{ background: var(--color-secondary); }
::-webkit-scrollbar-thumb{ background: var(--color-primary); border-radius: var(--radius-full); border: 2px solid var(--color-secondary); }
::-webkit-scrollbar-thumb:hover{ background: var(--color-primary-dark); }

.skip-link{
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--color-primary); color: #fff;
  padding: .85rem 1.25rem; border-radius: 0 0 10px 0;
  font-size: var(--fs-sm); font-weight: 600;
}
.skip-link:focus{ left: 0; }

.sr-only{
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container{
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section{ padding-block: var(--space-7); }
.section-head{ display: flex; flex-direction: column; gap: .85rem; max-width: 46rem; margin-bottom: var(--space-6); }
.section-head.center{ margin-inline: auto; text-align: center; }
.eyebrow{
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-primary);
}
.section-title{ font-size: var(--fs-3xl); }
.section-title mark{
  position: relative;
  background: transparent; color: var(--color-primary);
  font-style: normal; box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.section-title mark::after{
  content: ""; position: absolute; left: -.06em; right: -.06em; bottom: .05em; height: .16em;
  background: rgba(var(--color-primary-rgb), .14); z-index: -1; border-radius: 2px;
}
.section-sub{ font-size: var(--fs-md); color: var(--color-text-muted); line-height: var(--lh-snug); }
.section-tint{ background: var(--color-secondary); }

.visually-hidden-mobile{ display: none; }
@media (min-width: 768px){ .visually-hidden-mobile{ display: initial; } }
.hide-desktop{ display: initial; }
@media (min-width: 768px){ .hide-desktop{ display: none; } }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: 0 1.5rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: scale(.97); }
.btn-primary{ background: var(--color-primary); color: #fff; box-shadow: 0 1px 2px rgba(6,95,70,.15), 0 10px 24px -10px rgba(6,95,70,.55); }
.btn-primary:hover{ background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: 0 2px 4px rgba(6,95,70,.18), 0 16px 32px -12px rgba(6,95,70,.6); }
.btn-primary:active{ transform: scale(.97) translateY(0); }
.btn-outline{ background: transparent; border-color: var(--color-border-strong); color: var(--color-text); }
.btn-outline:hover{ border-color: var(--color-primary); color: var(--color-primary); }
.btn-ghost{ background: transparent; color: var(--color-primary); }
.btn-ghost:hover{ background: var(--color-secondary); }
.btn-white{ background: #fff; color: var(--color-primary); }
.btn-white:hover{ background: var(--color-secondary); }
.btn-block{ width: 100%; }
.btn-sm{ min-height: 40px; padding: 0 1.1rem; font-size: var(--fs-xs); }
.btn[disabled]{ opacity: .5; pointer-events: none; }

.icon-btn{
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius-full);
  background: transparent; border: none; color: var(--color-text); position: relative;
  transition: background-color .15s var(--ease);
}
.icon-btn:hover{ background: var(--color-secondary); }
.icon-btn svg{ width: 22px; height: 22px; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announce{
  background: var(--color-primary-dark); color: #fff;
  min-height: var(--announce-h);
  display: flex; align-items: center;
  overflow: hidden; /* ticker never causes page-level scroll */
  position: relative;
}
.announce-track{
  display: flex; white-space: nowrap;
  animation: aero-ticker 26s linear infinite;
}
.announce-set{ display: flex; align-items: center; gap: 3rem; min-width: 100vw; padding-inline: 1.5rem; flex-shrink: 0; }
@media (prefers-reduced-motion: reduce){
  .announce-track{ animation: none; width: 100%; }
  .announce-set[aria-hidden]{ display: none; }
  .announce-set:not([aria-hidden]){ width: 100%; justify-content: space-evenly; gap: 1.5rem; padding-inline: var(--container-pad); }
}
.announce-item{
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em;
}
.announce-item svg{ width: 14px; height: 14px; flex-shrink: 0; }
@keyframes aero-ticker{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3);
  min-height: var(--header-h);
}
.brand{ display: flex; align-items: center; min-width: 0; flex-shrink: 1; min-height: 44px; }
.brand img{ height: 30px; width: auto; max-width: 42vw; object-fit: contain; }
@media (min-width: 480px){ .brand img{ height: 34px; } }

.nav-desktop{ display: none; }
@media (min-width: 1024px){
  .nav-desktop{
    display: flex; align-items: center; gap: var(--space-6);
    font-size: var(--fs-sm); font-weight: 600;
  }
  .nav-desktop a{ color: var(--color-text); transition: color .15s var(--ease); padding: .5rem 0; position: relative; }
  .nav-desktop a:hover{ color: var(--color-primary); }
}

.header-actions{ display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.cart-badge{
  position: absolute; top: 2px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: var(--radius-full);
  background: var(--color-primary); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--color-bg);
}
.hamburger{ display: inline-flex; }
@media (min-width: 1024px){ .hamburger{ display: none; } }

/* Mobile nav panel */
.mobile-nav{
  position: fixed; inset: 0; z-index: 90;
  visibility: hidden;
}
.mobile-nav[data-open="true"]{ visibility: visible; }
.mobile-nav-scrim{
  position: absolute; inset: 0; background: rgba(10,14,24,.45);
  opacity: 0; transition: opacity .25s var(--ease);
}
.mobile-nav[data-open="true"] .mobile-nav-scrim{ opacity: 1; }
.mobile-nav-panel{
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--color-bg);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  display: flex; flex-direction: column;
  padding: var(--space-4) var(--space-5);
  padding-top: max(var(--space-4), env(safe-area-inset-top));
  padding-bottom: max(var(--space-5), env(safe-area-inset-bottom));
  overflow-y: auto;
}
.mobile-nav[data-open="true"] .mobile-nav-panel{ transform: translateX(0); }
.mobile-nav-head{ display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-5); }
.mobile-nav-head img{ height: 26px; width: auto; object-fit: contain; }
.mobile-nav-links{ display: flex; flex-direction: column; }
.mobile-nav-links a{
  padding: var(--space-4) .25rem; font-size: var(--fs-lg); font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav-foot{ margin-top: auto; padding-top: var(--space-5); font-size: var(--fs-sm); color: var(--color-text-muted); }
.mobile-nav-foot a{ color: var(--color-primary); font-weight: 600; }

/* ==========================================================================
   Hero banner (full-bleed)
   ========================================================================== */
.hero-banner{ width: 100%; line-height: 0; background: var(--color-secondary); }
.hero-banner picture{ display: block; }
.hero-banner img{ display: block; width: 100%; height: auto; aspect-ratio: 3200 / 711; }
/* Reserva a caixa da arte vertical antes do carregamento (evita CLS).
   A condição precisa ser idêntica à do <source> no HTML. */
@media (max-width: 599px) and (orientation: portrait){
  .hero-banner img{ aspect-ratio: 1300 / 1160; }
}
.hero-banner-bridge{ height: 6px; background: linear-gradient(90deg, #D9622B, var(--color-primary-dark)); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  padding-block: var(--space-7);
  overflow: hidden;
  isolation: isolate;
}
.hero::before,
.hero::after{
  content: ""; position: absolute; z-index: -1; border-radius: 50%; filter: blur(60px);
}
.hero::before{
  width: min(52vw, 640px); aspect-ratio: 1; top: -18%; right: -12%;
  background: radial-gradient(circle at 35% 35%, rgba(var(--color-primary-rgb),.16), rgba(var(--color-primary-rgb),0) 70%);
}
.hero::after{
  width: min(30vw, 380px); aspect-ratio: 1; bottom: -20%; left: -8%;
  background: radial-gradient(circle at 50% 50%, rgba(var(--color-accent-rgb),.14), rgba(var(--color-accent-rgb),0) 70%);
}
.hero-copy{
  display: flex; flex-direction: column; align-items: center; gap: var(--space-4);
  max-width: 54rem; margin-inline: auto; text-align: center;
}
.hero-copy .hero-text{ margin-inline: auto; }
.hero-copy .hero-ctas{ justify-content: center; }
.hero-copy .hero-trust{ justify-content: center; }
.badge{
  display: inline-flex; align-items: center; gap: .4rem;
  align-self: flex-start;
  background: var(--color-secondary); color: var(--color-primary-dark);
  padding: .5rem .9rem; border-radius: var(--radius-full);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.badge svg{ width: 14px; height: 14px; }
.hero-title{ font-size: var(--fs-hero); letter-spacing: -0.02em; }
.hero-title mark{
  position: relative;
  background: transparent; color: var(--color-primary);
  font-style: normal; box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hero-title mark::after{
  content: ""; position: absolute; left: -.06em; right: -.06em; bottom: .05em; height: .16em;
  background: rgba(var(--color-primary-rgb), .14); z-index: -1; border-radius: 2px;
}
.hero-text{ font-size: var(--fs-md); color: var(--color-text-muted); max-width: 40rem; line-height: var(--lh-snug); }
.hero-ctas{ display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-2); }
@media (min-width: 480px){ .hero-ctas{ flex-direction: row; flex-wrap: wrap; } }
.hero-ctas .btn{ padding-inline: 1.75rem; }
.hero-trust{
  display: flex; align-items: center; gap: .6rem; margin-top: var(--space-3);
  font-size: var(--fs-xs); color: var(--color-text-faint); font-weight: 600; letter-spacing: .01em;
}
.hero-trust svg{ width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; }


/* ==========================================================================
   Selos strip
   ========================================================================== */
.selos-strip{ background: #fff; border-block: 1px solid var(--color-border); padding-block: var(--space-5); }
.selos-strip img{ max-width: 100%; height: auto; margin-inline: auto; }

/* ==========================================================================
   Product grid & cards
   ========================================================================== */
.product-grid{
  display: grid; gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 640px){ .product-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .product-grid{ max-width: 960px; margin-inline: auto; } }

.product-card{
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-4);
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.product-card:hover{
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: rgba(var(--color-primary-rgb), .16);
}
.product-card-media{
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(var(--color-primary-rgb), .14);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.product-card-media img{
  width: 100%; height: 100%; object-fit: contain;
  padding: var(--space-7) var(--space-4) var(--space-4);
  transition: transform .4s var(--ease);
}
.product-card:hover .product-card-media img{ transform: scale(1.035); }
.product-card-tag{
  position: absolute; top: var(--space-3); left: var(--space-3); z-index: 1;
  display: inline-flex; align-items: center;
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  padding: .4rem .8rem; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.product-card-tag--laranja{ background: #FDE7D6; color: #B24E00; }
.product-card-tag--azul{ background: #DCE6EE; color: #063660; }
.product-card-cat{ font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--color-primary); }
.product-card-name{ font-size: var(--fs-xl); margin-top: .35rem; }
.product-card-type{ font-size: var(--fs-xs); color: var(--color-text-faint); margin-top: .2rem; }
.product-card-ingredients{
  font-size: var(--fs-sm); color: var(--color-text-muted); line-height: var(--lh-snug);
}
.product-card-ship{
  display: flex; align-items: center; gap: .4rem;
  font-size: var(--fs-xs); font-weight: 600; color: var(--color-primary-dark);
}
.product-card-ship svg{ width: 15px; height: 15px; flex-shrink: 0; }

/* Quantity selector */
.qty-select{ display: flex; flex-direction: column; gap: .6rem; }
.qty-option{
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  width: 100%;
  padding: .75rem .9rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  min-height: 44px;
  cursor: pointer;
  transition: border-color .15s var(--ease), background-color .15s var(--ease);
}
.qty-option:hover{ border-color: var(--color-primary); }
.qty-option input{
  position: absolute; opacity: 0; width: 1px; height: 1px;
}
.qty-option:has(input:checked){
  border-color: var(--color-primary);
  background: var(--color-secondary);
  box-shadow: 0 0 0 1px var(--color-primary) inset;
}
.qty-option-left{ display: flex; align-items: center; gap: .65rem; min-width: 0; }
.qty-radio-dot{
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--color-border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .15s var(--ease);
}
.qty-option:has(input:checked) .qty-radio-dot{ border-color: var(--color-primary); }
.qty-radio-dot::after{
  content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--color-primary);
  transform: scale(0); transition: transform .15s var(--ease);
}
.qty-option:has(input:checked) .qty-radio-dot::after{ transform: scale(1); }
.qty-option-label{ display: flex; flex-direction: column; min-width: 0; }
.qty-option-title{ font-size: var(--fs-sm); font-weight: 700; }
.qty-option-save{ font-size: 11px; color: var(--color-primary); font-weight: 600; }
.qty-option-price{ display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.qty-option-unit{ font-size: var(--fs-sm); font-weight: 700; white-space: nowrap; }
.qty-option-each{ font-size: 11px; color: var(--color-text-faint); white-space: nowrap; }
.qty-badge{
  position: absolute; top: -10px; left: .9rem;
  background: var(--color-primary); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .03em;
  padding: .2rem .55rem; border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 2px 6px -1px rgba(6,95,70,.4);
}
.qty-badge-featured{ background: var(--color-accent-strong); box-shadow: 0 2px 6px -1px rgba(var(--color-accent-rgb),.45); }
.qty-option-featured{
  border-color: var(--color-accent-strong);
  border-width: 2px;
  background: linear-gradient(135deg, #fff 0%, var(--color-accent-soft) 220%);
  box-shadow: 0 6px 18px -8px rgba(var(--color-accent-rgb),.45);
  transform: scale(1.02);
}
.qty-option-featured:hover{ border-color: var(--color-accent-strong); }
.qty-option:has(input:checked).qty-option-featured{
  border-color: var(--color-accent);
  background: linear-gradient(0deg, var(--color-secondary), var(--color-secondary)), var(--color-bg);
  box-shadow: 0 0 0 1px var(--color-accent) inset;
  transform: scale(1.02);
}
.qty-option-featured:has(input:checked) .qty-radio-dot{ border-color: var(--color-accent); }
.qty-option-featured:has(input:checked) .qty-radio-dot::after{ background: var(--color-accent); }

.product-card-anvisa{ font-size: 11px; color: var(--color-text-faint); line-height: var(--lh-snug); text-align: center; }
.product-card-cta{ margin-top: .25rem; }

/* ==========================================================================
   Kit section
   ========================================================================== */
.kit-card{
  position: relative;
  background: var(--color-primary-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; gap: var(--space-5);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
}
.kit-card::after{
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
}
.kit-card > *{ position: relative; z-index: 1; }
.kit-card-tagline{ color: rgba(255,255,255,.7); font-size: var(--fs-sm); font-weight: 500; margin-top: -.15rem; }
@media (min-width: 900px){
  .kit-card{ grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: var(--space-7); padding: var(--space-7); }
}
.kit-card-media{
  border-radius: var(--radius-md); overflow: hidden; background: #fff;
  aspect-ratio: 4/3;
}
.kit-card-media img{ width: 100%; height: 100%; object-fit: contain; padding: var(--space-4); }
.kit-card-body{ display: flex; flex-direction: column; gap: var(--space-3); }
.kit-card-title{ font-size: var(--fs-2xl); }
.kit-card-text{ color: rgba(255,255,255,.78); font-size: var(--fs-md); line-height: var(--lh-snug); }
.kit-card-price{ display: flex; align-items: baseline; gap: .6rem; margin-top: var(--space-2); }
.kit-card-price strong{ font-size: var(--fs-3xl); }
.kit-card-price span{ color: rgba(255,255,255,.65); font-size: var(--fs-sm); }
.kit-card-ctas{ display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-3); }
.btn-outline-invert{
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.8); color: #fff;
}
.btn-outline-invert:hover{ background: rgba(255,255,255,.16); border-color: #fff; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-grid{
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 700px){ .review-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .review-grid{ grid-template-columns: repeat(3, 1fr); } }
.review-card{
  position: relative;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5) var(--space-5); display: flex; flex-direction: column; gap: var(--space-3);
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
  overflow: hidden;
}
.review-card:hover{ box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.review-card::before{
  content: "\201C";
  position: absolute; top: -.35rem; left: var(--space-4);
  font-family: Georgia, "Times New Roman", serif; font-weight: 700;
  font-size: 4.5rem; line-height: 1; color: var(--color-secondary);
  pointer-events: none; z-index: 0;
}
.review-stars{ display: flex; gap: 2px; color: var(--color-star); position: relative; z-index: 1; }
.review-stars svg{ width: 16px; height: 16px; }
.review-quote{ font-size: var(--fs-sm); line-height: var(--lh-normal); color: var(--color-text); position: relative; z-index: 1; }
.review-author{ display: flex; align-items: center; gap: .65rem; margin-top: auto; padding-top: var(--space-2); position: relative; z-index: 1; }
.review-avatar{
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-secondary); color: var(--color-primary-dark);
  font-size: 11px; font-weight: 700; letter-spacing: .02em;
}
.review-author-info{ display: flex; flex-direction: column; min-width: 0; }
.review-author strong{ font-size: var(--fs-sm); }
.review-author span{ font-size: var(--fs-xs); color: var(--color-text-faint); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-columns{ column-count: 1; column-gap: var(--space-7); }
@media (min-width: 860px){ .faq-columns{ column-count: 2; } }
.faq-group{ break-inside: avoid; -webkit-column-break-inside: avoid; margin-bottom: var(--space-7); }
.faq-group:last-child{ margin-bottom: 0; }
.faq-group .section-head{ margin-bottom: var(--space-4); }
.faq-list{ display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item{
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.faq-item:hover{ box-shadow: var(--shadow-card); border-color: rgba(var(--color-primary-rgb),.15); }
.faq-item[open]{ box-shadow: var(--shadow-card); }
.faq-item summary{
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  font-weight: 600; font-size: var(--fs-md);
  cursor: pointer; min-height: 44px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary .faq-icon{
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--color-secondary); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s var(--ease);
}
.faq-item[open] summary .faq-icon{ transform: rotate(45deg); }
.faq-answer{ padding: 0 var(--space-5) var(--space-5); color: var(--color-text-muted); font-size: var(--fs-sm); line-height: var(--lh-normal); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--color-primary-dark); color: rgba(255,255,255,.82); padding-block: var(--space-8) var(--space-6); }
.footer-grid{
  display: grid; gap: var(--space-6);
  grid-template-columns: 1fr;
  align-items: baseline;
}
@media (min-width: 700px){ .footer-grid{ grid-template-columns: repeat(2, minmax(0, 240px)); column-gap: var(--space-8); } }
@media (min-width: 1024px){ .footer-grid{ grid-template-columns: minmax(240px, 300px) repeat(3, minmax(0, 190px)); column-gap: var(--space-8); } }
.footer-brand p{ font-size: var(--fs-sm); max-width: 26rem; line-height: var(--lh-normal); margin-top: var(--space-3); }
.footer-col-title{ color: #fff; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--space-3); }
.footer-links{ display: flex; flex-direction: column; gap: .65rem; font-size: var(--fs-sm); }
.footer-links a{ transition: color .15s var(--ease); }
.footer-links a:hover{ color: #fff; }
.footer-social{ display: flex; gap: .6rem; margin-top: var(--space-4); }
.footer-social a{
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: background-color .15s var(--ease);
}
.footer-social a:hover{ background: rgba(255,255,255,.18); }
.footer-social svg{ width: 18px; height: 18px; }
.footer-brand .footer-copyright{
  font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 0;
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: var(--space-7); padding-top: var(--space-5);
  font-size: 11px; line-height: var(--lh-normal); color: rgba(255,255,255,.5);
  max-width: 68rem;
}

/* ==========================================================================
   Cart drawer
   ========================================================================== */
.cart-drawer{ position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.cart-drawer[data-open="true"]{ visibility: visible; }
.cart-scrim{ position: absolute; inset: 0; background: rgba(10,14,24,.45); opacity: 0; transition: opacity .25s var(--ease); }
.cart-drawer[data-open="true"] .cart-scrim{ opacity: 1; }
.cart-panel{
  position: absolute; top: 0; right: 0;
  height: 100%; height: 100dvh;
  width: 100%;
  background: var(--color-bg);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 480px){ .cart-panel{ width: min(100%, 420px); } }
.cart-drawer[data-open="true"] .cart-panel{ transform: translateX(0); }
.cart-head{
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  padding-top: max(var(--space-4), env(safe-area-inset-top));
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-head h2{ font-size: var(--fs-lg); }
.cart-shipping-progress{
  padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--color-border); flex-shrink: 0;
  transition: background-color .3s var(--ease);
}
.cart-shipping-progress[data-unlocked="true"]{ background: var(--color-secondary); }
.cart-shipping-text{ display: flex; align-items: center; gap: .4rem; font-size: var(--fs-xs); font-weight: 600; margin-bottom: .6rem; color: var(--color-text-muted); }
.cart-shipping-text strong{ color: var(--color-primary); }
.cart-shipping-text svg{ width: 15px; height: 15px; color: var(--color-primary); flex-shrink: 0; }
.progress-track{ height: 6px; border-radius: var(--radius-full); background: var(--color-secondary); overflow: hidden; }
.cart-shipping-progress[data-unlocked="true"] .progress-track{ background: rgba(255,255,255,.6); }
.progress-fill{
  width: 100%; height: 100%; background: var(--color-primary); border-radius: var(--radius-full);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}

.cart-items{ flex: 1 1 auto; overflow-y: auto; padding: var(--space-2) var(--space-5) var(--space-4); display: flex; flex-direction: column; }
.cart-empty{ text-align: center; padding: var(--space-8) var(--space-4); color: var(--color-text-muted); }
.cart-empty svg{ width: 48px; height: 48px; margin: 0 auto var(--space-4); color: var(--color-border-strong); }
.cart-item{ display: flex; gap: var(--space-3); padding-block: var(--space-4); border-bottom: 1px solid var(--color-border); }
.cart-item:last-child{ border-bottom: none; }
.cart-item-media{
  width: 64px; height: 64px; border-radius: var(--radius-sm); background: #fff;
  box-shadow: inset 0 0 0 1px var(--color-border); flex-shrink: 0; overflow: hidden;
}
.cart-item-media img{ width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-item-body{ flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cart-item-top{ display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; }
.cart-item-name{ font-size: var(--fs-sm); font-weight: 700; line-height: var(--lh-snug); }
.cart-item-tier{ font-size: 11px; color: var(--color-text-faint); }
.cart-item-row{ display: flex; align-items: center; justify-content: space-between; margin-top: .6rem; gap: .5rem; }
.stepper{ display: flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-full); }
.stepper button{
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  color: var(--color-text); transition: color .15s var(--ease);
}
.stepper button svg{ width: 13px; height: 13px; }
.stepper button:hover{ color: var(--color-primary); }
.stepper span{ min-width: 20px; text-align: center; font-size: var(--fs-sm); font-weight: 700; }
.cart-item-price{ font-size: var(--fs-sm); font-weight: 700; white-space: nowrap; }
.cart-item-remove{
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: var(--radius-full);
  color: var(--color-text-faint); transition: color .15s var(--ease), background-color .15s var(--ease);
}
.cart-item-remove svg{ width: 15px; height: 15px; }
.cart-item-remove:hover{ color: var(--color-danger); background: rgba(179,38,30,.08); }

.cart-foot{
  border-top: 1px solid var(--color-border);
  padding: var(--space-4) var(--space-5);
  padding-bottom: max(var(--space-4), env(safe-area-inset-bottom));
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: var(--space-3);
}
.cart-subtotal-row{ display: flex; align-items: baseline; justify-content: space-between; }
.cart-subtotal-row span{ font-size: var(--fs-sm); color: var(--color-text-muted); }
.cart-subtotal-row strong{ font-size: var(--fs-xl); }
.cart-secure{ display: flex; align-items: center; justify-content: center; }
.cart-secure img{ height: 30px; width: auto; }

.cart-payments{ display: flex; align-items: center; justify-content: center; gap: var(--space-4); padding-block: .35rem; }
.cart-payments-icon{ display: flex; align-items: center; justify-content: center; width: 40px; height: 24px; }
.cart-payments-icon img{ max-width: 100%; max-height: 100%; object-fit: contain; }

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.whatsapp-float{
  position: fixed;
  right: var(--space-4);
  bottom: calc(max(var(--space-4), env(safe-area-inset-bottom)) + var(--mobile-cart-bar-space, 0px));
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px -4px rgba(37,211,102,.55), 0 2px 6px rgba(10,14,24,.18);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.whatsapp-float::before{
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.55);
  animation: aero-whatsapp-pulse 4.25s ease-out infinite;
  pointer-events: none;
}
.whatsapp-float:hover{ transform: scale(1.06); box-shadow: 0 8px 26px -4px rgba(37,211,102,.65), 0 3px 8px rgba(10,14,24,.2); }
.whatsapp-float:active{ transform: scale(.96); }
.whatsapp-float svg{ width: 28px; height: 28px; position: relative; }
@keyframes aero-whatsapp-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%{ box-shadow: 0 0 0 13px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 13px rgba(37,211,102,0); }
}
@media (min-width: 1024px){ .whatsapp-float{ right: var(--space-6); bottom: max(var(--space-6), env(safe-area-inset-bottom)); } }

/* ==========================================================================
   Mobile sticky cart bar
   ========================================================================== */
.mobile-cart-bar{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: var(--color-primary); color: #fff;
  display: none;
  align-items: center; justify-content: space-between; gap: var(--space-3);
  padding: .75rem var(--space-4);
  padding-bottom: max(.75rem, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(10,14,24,.15);
}
.mobile-cart-bar[data-visible="true"]{ display: flex; }
@media (min-width: 1024px){ .mobile-cart-bar{ display: none !important; } }
.mobile-cart-bar-info{ display: flex; flex-direction: column; min-width: 0; }
.mobile-cart-bar-count{ font-size: 11px; opacity: .85; }
.mobile-cart-bar-total{ font-size: var(--fs-md); font-weight: 700; }

/* ==========================================================================
   Cookie consent
   ========================================================================== */
.cookie-banner{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: #fff; border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5);
  padding-bottom: max(var(--space-5), env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.cookie-banner[data-visible="true"]{ transform: translateY(0); }
.cookie-banner-inner{ max-width: 1100px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-4); }
.cookie-banner-text{ font-size: var(--fs-sm); color: var(--color-text-muted); line-height: var(--lh-snug); }
.cookie-banner-text a{ color: var(--color-primary); font-weight: 600; text-decoration: underline; }
.cookie-banner-actions{ display: flex; flex-direction: column; gap: .65rem; }
@media (min-width: 640px){ .cookie-banner-actions{ flex-direction: row; flex-wrap: wrap; } .cookie-banner-actions .btn{ flex: 0 0 auto; } }

.cookie-modal{ position: fixed; inset: 0; z-index: 130; display: none; align-items: center; justify-content: center; padding: var(--space-4); }
.cookie-modal[data-open="true"]{ display: flex; }
.cookie-modal-scrim{ position: absolute; inset: 0; background: rgba(10,14,24,.55); }
.cookie-modal-panel{
  position: relative; background: #fff; border-radius: var(--radius-lg);
  width: 100%; max-width: 34rem; max-height: 85vh; overflow-y: auto;
  padding: var(--space-6);
}
.cookie-pref-row{ display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding-block: var(--space-4); border-bottom: 1px solid var(--color-border); }
.cookie-pref-row:last-of-type{ border-bottom: none; }
.cookie-pref-title{ font-size: var(--fs-sm); font-weight: 700; }
.cookie-pref-desc{ font-size: var(--fs-xs); color: var(--color-text-faint); margin-top: .2rem; }

.switch{ position: relative; display: inline-flex; width: 44px; height: 26px; flex-shrink: 0; }
.switch input{ position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch-track{ position: absolute; inset: 0; background: var(--color-border-strong); border-radius: var(--radius-full); transition: background-color .15s var(--ease); pointer-events: none; }
.switch-track::after{ content:""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .15s var(--ease); }
.switch input:checked + .switch-track{ background: var(--color-primary); }
.switch input:checked + .switch-track::after{ transform: translateX(18px); }
.switch input:disabled + .switch-track{ opacity: .5; }

/* ==========================================================================
   Legal / institutional page prose
   ========================================================================== */
.page-hero{
  position: relative; overflow: hidden;
  padding-block: var(--space-7) var(--space-6); border-bottom: 1px solid var(--color-border);
  background: radial-gradient(90% 140% at 100% 0%, rgba(var(--color-primary-rgb),.06), rgba(var(--color-primary-rgb),0) 60%);
}
.page-hero .container{ display: flex; flex-direction: column; gap: .85rem; }
.page-hero .eyebrow{ margin-bottom: .1rem; }
.page-hero .breadcrumb{ max-width: 46rem; }
.page-hero .hero-title{ font-size: var(--fs-3xl); max-width: 46rem; }
.page-hero .hero-text{ max-width: 46rem; }
.breadcrumb{ display: flex; flex-wrap: wrap; gap: .4rem; font-size: var(--fs-xs); color: var(--color-text-faint); margin-bottom: var(--space-3); }
.breadcrumb a{ color: var(--color-text-faint); }
.breadcrumb a:hover{ color: var(--color-primary); }

.prose h2{ font-size: var(--fs-xl); margin-top: var(--space-6); margin-bottom: var(--space-3); max-width: 68ch; }
.prose h2:first-child{ margin-top: 0; }
.prose h3{ font-size: var(--fs-lg); margin-top: var(--space-5); margin-bottom: var(--space-2); max-width: 68ch; }
.prose p{ margin-bottom: var(--space-4); color: var(--color-text-muted); line-height: var(--lh-normal); max-width: 68ch; }
.prose ul{ margin-bottom: var(--space-4); padding-left: 1.25rem; list-style: disc; color: var(--color-text-muted); max-width: 68ch; }
.prose li{ margin-bottom: .5rem; line-height: var(--lh-normal); }
.prose strong{ color: var(--color-text); }
.prose-meta{ font-size: var(--fs-xs); color: var(--color-text-faint); margin-bottom: var(--space-6); }

/* Ingredient / nutrition table used on product pages */
.data-table{ width: 100%; font-size: var(--fs-sm); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.data-table th, .data-table td{ text-align: left; padding: .75rem 1rem; border-bottom: 1px solid var(--color-border); }
.data-table th{ background: var(--color-secondary); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .05em; }
.data-table tr:last-child td{ border-bottom: none; }

/* Tabela de informação nutricional (reproduz o rótulo) */
.nutrition-facts{ border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.nutrition-facts-head{ background: var(--color-secondary); padding: .7rem 1rem; }
.nutrition-facts-title{ margin: 0; font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--color-primary-dark); }
.nutrition-facts-serving{ margin: .3rem 0 0; font-size: var(--fs-xs); color: var(--color-text-muted); line-height: var(--lh-snug); }
.nutrition-table{ width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.nutrition-table th, .nutrition-table td{ padding: .5rem 1rem; border-bottom: 1px solid var(--color-border); text-align: left; vertical-align: middle; }
.nutrition-table thead th{ font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .04em; color: var(--color-text-faint); font-weight: 700; }
.nutrition-table .nutrition-num{ text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; width: 1%; padding-left: .5rem; }
.nutrition-table td.nutrition-sub{ padding-left: 1.9rem; color: var(--color-text-muted); }
.nutrition-facts-foot{ padding: .65rem 1rem .8rem; }
.nutrition-note{ margin: 0; font-size: 11px; color: var(--color-text-faint); line-height: var(--lh-snug); }
.nutrition-note + .nutrition-note{ margin-top: .3rem; }

/* ==========================================================================
   Product page layout
   ========================================================================== */
.pdp{ display: grid; gap: var(--space-6); padding-block: var(--space-6) var(--space-8); }
@media (min-width: 960px){
  .pdp{ grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: start; }
  .pdp-media{ position: sticky; top: calc(var(--header-h) + 1rem); }
}
.pdp-media-frame{
  position: relative;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card), inset 0 0 0 1.5px rgba(var(--color-primary-rgb), .14);
  aspect-ratio: 1/1; overflow: hidden;
}
.pdp-media-frame img{ width: 100%; height: 100%; object-fit: contain; padding: var(--space-8) var(--space-6) var(--space-6); }
.pdp-body{ display: flex; flex-direction: column; gap: var(--space-4); }
.pdp-title{ font-size: var(--fs-3xl); }
.pdp-ingredients-list{ display: flex; flex-wrap: wrap; gap: var(--space-4) var(--space-5); }
.tag{
  display: flex; flex-direction: column; gap: .15rem;
  border-left: 2px solid var(--color-primary); padding-left: .65rem;
  font-size: var(--fs-sm); font-weight: 600; color: var(--color-text);
}
.tag::before{
  content: "Ativo"; font-size: 10px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--color-text-faint);
}
.pdp-usage{ background: var(--color-secondary); border-radius: var(--radius-md); padding: var(--space-4); font-size: var(--fs-sm); }
.pdp-usage strong{ display: block; margin-bottom: .25rem; }

/* Anchor offset for sticky header */
[id]{ scroll-margin-top: calc(var(--header-h) + var(--announce-h) + 1rem); }

/* Utility: no overflow anywhere */
body{ max-width: 100%; }
