/* =========================================================
   Vila Açaí — Design System
   O autêntico sabor do Pará
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Açaí — roxo profundo da polpa */
  --acai-950: #120518;
  --acai-900: #1D0826;
  --acai-800: #2E0C3C;
  --acai-700: #431356;
  --acai-600: #5C1C73;
  --acai-500: #7A2B95;
  --acai-400: #A04FBC;
  --acai-300: #C489DA;
  --acai-200: #E0BCEE;
  --acai-100: #F1DFF8;
  --acai-50:  #FAF4FD;

  /* Manga — CTA quente, alto contraste */
  --mango-600: #E08600;
  --mango-500: #FFA51F;
  --mango-400: #FFBE4D;
  --mango-100: #FFEFD4;

  /* Folha — frescor / selo natural */
  --leaf-700: #145E3A;
  --leaf-600: #1E7C4C;
  --leaf-500: #2E9E5B;
  --leaf-100: #DDF3E6;

  /* Neutros quentes */
  --cream: #FFF9F3;
  --sand:  #F6EADC;
  --sand-dark: #E8D6C2;
  --ink:   #1B0D21;
  --ink-70: rgba(27, 13, 33, .70);
  --ink-55: rgba(27, 13, 33, .55);
  --ink-40: rgba(27, 13, 33, .40);
  --white: #FFFFFF;

  /* Superfícies */
  --surface: var(--white);
  --surface-alt: var(--cream);
  --line: rgba(27, 13, 33, .10);
  --line-soft: rgba(27, 13, 33, .06);

  /* Tipografia */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-display: clamp(2.75rem, 1.4rem + 5.6vw, 6rem);
  --fs-h1: clamp(2.25rem, 1.3rem + 3.9vw, 4.25rem);
  --fs-h2: clamp(1.85rem, 1.15rem + 2.9vw, 3.25rem);
  --fs-h3: clamp(1.35rem, 1.1rem + 1.1vw, 1.9rem);
  --fs-h4: clamp(1.1rem, 1rem + .5vw, 1.35rem);
  --fs-lead: clamp(1.05rem, .98rem + .42vw, 1.3rem);
  --fs-body: 1rem;
  --fs-sm: .9375rem;
  --fs-xs: .8125rem;
  --fs-eyebrow: .75rem;

  /* Espaçamento */
  --sp-section: clamp(4.5rem, 3rem + 6vw, 9rem);
  --gutter: clamp(1.15rem, .7rem + 2vw, 2.5rem);
  --maxw: 1280px;
  --maxw-narrow: 820px;
  --maxw-wide: 1480px;

  /* Raios */
  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Sombras — luz quente */
  --sh-xs: 0 1px 2px rgba(27,13,33,.06), 0 2px 6px rgba(27,13,33,.04);
  --sh-sm: 0 2px 6px rgba(27,13,33,.06), 0 8px 20px rgba(27,13,33,.06);
  --sh-md: 0 6px 16px rgba(27,13,33,.08), 0 20px 42px rgba(46,12,60,.10);
  --sh-lg: 0 14px 34px rgba(27,13,33,.10), 0 38px 80px rgba(46,12,60,.16);
  --sh-glow: 0 18px 44px rgba(255,165,31,.30);
  --sh-glow-acai: 0 18px 50px rgba(122,43,149,.34);

  /* Movimento — curvas com inércia real */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-in-out: cubic-bezier(.65, .05, .36, 1);
  --t-fast: .18s;
  --t-base: .32s;
  --t-slow: .62s;

  --header-h: 76px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

/* Componentes com display próprio ignorariam o [hidden] do HTML. */
[hidden] { display: none !important; }

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

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

ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--acai-400);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--acai-500); color: #fff; }

/* Barra de rolagem */
@supports (scrollbar-color: auto) {
  html { scrollbar-color: var(--acai-300) var(--sand); scrollbar-width: thin; }
}

/* ---------- 3. Tipografia ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.022em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.16; }
h4 { font-size: var(--fs-h4); line-height: 1.25; letter-spacing: -.01em; }

p { text-wrap: pretty; }

/* O espaço da Plus Jakarta Sans é estreito: abaixo de 14px as legendas
   ficam com cara de palavra emendada. Um respiro extra resolve. */
.hero__card b + span,
.hero__trust-item span,
.testimonial__who b + span,
.stat__label,
.hours-list li,
.form-note,
.product-card__price small,
.logo__text small { word-spacing: .12em; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ink-70);
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--acai-500);
  font-family: var(--font-sans);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--acai-500), var(--mango-500));
  flex: none;
}

.eyebrow--center::before { display: none; }

.txt-acai { color: var(--acai-500); }
.txt-mango { color: var(--mango-600); }
.txt-muted { color: var(--ink-55); }

/* Destaque manuscrito no título */
.ink-highlight {
  position: relative;
  display: inline-block;
  color: var(--acai-600);
  font-style: italic;
}

.ink-highlight svg {
  position: absolute;
  left: -4%;
  bottom: -.22em;
  width: 108%;
  height: .5em;
  overflow: visible;
  pointer-events: none;
}

.ink-highlight svg path {
  fill: none;
  stroke: var(--mango-500);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke-dashoffset 1.1s var(--ease-out) .35s;
}

.is-inview .ink-highlight svg path,
.ink-highlight.is-inview svg path { stroke-dashoffset: 0; }

/* ---------- 4. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: var(--maxw-narrow); }
.container--wide { max-width: var(--maxw-wide); }

.section { padding-block: var(--sp-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.section--flush-top { padding-top: 0; }

.section-head { max-width: 680px; margin-bottom: clamp(2.25rem, 1.5rem + 2.5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .9rem; }
.section-head .lead { margin-top: 1.05rem; }

.grid { display: grid; gap: clamp(1.1rem, .7rem + 1.4vw, 1.9rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.stack-sm > * + * { margin-top: .75rem; }
.stack > * + * { margin-top: 1.15rem; }
.stack-lg > * + * { margin-top: 1.9rem; }

.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;
}

.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 2000;
  padding: .7rem 1.2rem;
  background: var(--acai-700);
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: var(--fs-sm);
  transform: translateY(-160%);
  transition: transform var(--t-base) var(--ease-spring);
}
.skip-link:focus { transform: translateY(0); }

/* Fundos de seção */
.bg-cream { background: var(--cream); }
.bg-sand  { background: var(--sand); }
.bg-white { background: var(--white); }

.bg-acai {
  background: radial-gradient(1200px 700px at 12% -10%, var(--acai-700) 0%, transparent 58%),
              radial-gradient(900px 600px at 92% 110%, var(--acai-600) 0%, transparent 55%),
              var(--acai-900);
  color: var(--cream);
}
.bg-acai h1, .bg-acai h2, .bg-acai h3, .bg-acai h4 { color: #fff; }
.bg-acai .lead, .bg-acai p { color: rgba(255, 249, 243, .76); }
.bg-acai .eyebrow { color: var(--mango-400); }
.bg-acai .eyebrow::before { background: linear-gradient(90deg, var(--mango-400), var(--acai-300)); }

/* Grão sutil para dar textura de impressão */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* Onda divisória entre seções */
.wave-divider {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  height: clamp(40px, 5vw, 86px);
  pointer-events: none;
  z-index: 2;
}
.wave-divider--top { top: -1px; }
.wave-divider--bottom { bottom: -1px; }
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* ---------- 5. Botões ---------- */
.btn {
  --btn-bg: var(--acai-600);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.7rem;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: -.005em;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base) var(--ease-spring),
              box-shadow var(--t-base) var(--ease-out),
              background-color var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out);
  will-change: transform;
}

.btn svg { flex: none; width: 1.15em; height: 1.15em; }

/* Brilho que atravessa o botão no hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.34) 50%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .72s var(--ease-out);
}
.btn:hover::before { transform: translateX(120%); }

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.985); transition-duration: .08s; }

.btn--primary {
  --btn-bg: var(--mango-500);
  --btn-fg: #2A1200;
  box-shadow: var(--sh-glow);
}
.btn--primary:hover { --btn-bg: var(--mango-400); box-shadow: 0 22px 52px rgba(255,165,31,.42); }

.btn--acai { --btn-bg: var(--acai-600); box-shadow: var(--sh-glow-acai); }
.btn--acai:hover { --btn-bg: var(--acai-500); box-shadow: 0 22px 56px rgba(122,43,149,.42); }

.btn--dark { --btn-bg: var(--ink); --btn-fg: var(--cream); }
.btn--dark:hover { --btn-bg: var(--acai-800); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { --btn-bg: var(--white); box-shadow: inset 0 0 0 1.5px var(--acai-300), var(--sh-sm); }

.bg-acai .btn--ghost { --btn-fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.26); }
.bg-acai .btn--ghost:hover { --btn-bg: rgba(255,255,255,.10); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); }

.btn--wa { --btn-bg: #1FAF54; --btn-fg: #fff; }
.btn--wa:hover { --btn-bg: #23C25E; box-shadow: 0 20px 46px rgba(31,175,84,.36); }

.btn--lg { padding: 1.15rem 2.1rem; font-size: 1rem; }
.btn--sm { padding: .68rem 1.2rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: .55;
  pointer-events: none;
}

/* Link com seta que desliza */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--acai-600);
  transition: gap var(--t-base) var(--ease-spring), color var(--t-base);
}
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform var(--t-base) var(--ease-spring); }
.link-arrow:hover { gap: .8rem; color: var(--acai-500); }
.link-arrow:hover svg { transform: translateX(3px); }
.bg-acai .link-arrow { color: var(--mango-400); }

/* Sublinhado animado */
.link-underline {
  position: relative;
  font-weight: 600;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-base) var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- 6. Pills / Badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .9rem;
  border-radius: var(--r-pill);
  background: var(--acai-100);
  color: var(--acai-700);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: -.005em;
  line-height: 1.3;
}
.pill svg { width: 1em; height: 1em; }
.pill--leaf { background: var(--leaf-100); color: var(--leaf-700); }
.pill--mango { background: var(--mango-100); color: #8A5200; }
.pill--glass {
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.pill--outline { background: transparent; box-shadow: inset 0 0 0 1.5px var(--line); color: var(--ink-70); }

/* Ponto pulsante de "aberto agora" */
.dot-live {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2E9E5B;
  flex: none;
}
.dot-live::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: ping 1.9s var(--ease-out) infinite;
}
.dot-live--off { background: #C4553C; }

@keyframes ping {
  0% { transform: scale(1); opacity: .7; }
  75%, 100% { transform: scale(3); opacity: 0; }
}

/* ---------- 7. Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height var(--t-base) var(--ease-out),
              background-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              transform .45s var(--ease-out);
}

.header::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(255, 249, 243, .82);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}

.header.is-stuck { height: 64px; }
.header.is-stuck::before { opacity: 1; }
.header.is-hidden { transform: translateY(-105%); }

.header__inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  flex: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}
.logo__mark {
  width: 38px; height: 38px;
  flex: none;
  transition: transform var(--t-slow) var(--ease-spring);
}
.logo:hover .logo__mark { transform: rotate(-12deg) scale(1.08); }
.logo__text small {
  display: block;
  font-family: var(--font-sans);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--acai-500);
  margin-top: 3px;
}
.header.is-stuck .logo__mark { width: 33px; height: 33px; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin-left: auto;
}

.nav__link {
  position: relative;
  padding: .55rem .85rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-70);
  transition: color var(--t-fast), background-color var(--t-fast);
}
.nav__link:hover { color: var(--ink); background: rgba(122,43,149,.07); }
.nav__link[aria-current="page"] { color: var(--acai-600); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mango-500);
  transform: translateX(-50%);
}

.header__actions { display: flex; align-items: center; gap: .6rem; flex: none; }

/* Botão hambúrguer */
.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: var(--sh-xs), inset 0 0 0 1px var(--line);
  flex: none;
}
.burger span {
  display: block;
  width: 19px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  position: relative;
  transition: background-color .12s var(--ease-out);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute; left: 0;
  width: 19px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--t-base) var(--ease-spring);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Drawer mobile */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 950;
  visibility: hidden;
  pointer-events: none;
  /* Sem isto, o painel deslocado para fora esticaria a largura da página. */
  overflow: hidden;
}
.drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(18, 5, 24, .55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 88vw);
  background: var(--cream);
  box-shadow: -20px 0 60px rgba(18,5,24,.24);
  display: flex;
  flex-direction: column;
  padding: 1.15rem var(--gutter) 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .46s var(--ease-out);
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.drawer__close {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform var(--t-base) var(--ease-spring), background-color var(--t-fast);
}
.drawer__close:hover { transform: rotate(90deg); background: var(--sand); }
.drawer__close svg { width: 18px; height: 18px; }

.drawer__nav { display: flex; flex-direction: column; gap: .1rem; }
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem .25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.02em;
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transform: translateX(22px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), color var(--t-fast);
}
.drawer.is-open .drawer__nav a { opacity: 1; transform: translateX(0); }
.drawer__nav a:nth-child(1) { transition-delay: .08s; }
.drawer__nav a:nth-child(2) { transition-delay: .13s; }
.drawer__nav a:nth-child(3) { transition-delay: .18s; }
.drawer__nav a:nth-child(4) { transition-delay: .23s; }
.drawer__nav a:nth-child(5) { transition-delay: .28s; }
.drawer__nav a:nth-child(6) { transition-delay: .33s; }
.drawer__nav a:hover, .drawer__nav a[aria-current="page"] { color: var(--acai-600); }
.drawer__nav a svg { width: 16px; height: 16px; opacity: .4; }

.drawer__foot {
  margin-top: auto;
  padding-top: 2rem;
  display: grid;
  gap: .7rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s var(--ease-out) .34s, transform .45s var(--ease-out) .34s;
}
.drawer.is-open .drawer__foot { opacity: 1; transform: translateY(0); }

.drawer__social { display: flex; gap: .5rem; justify-content: center; margin-top: .6rem; }

body.is-locked { overflow: hidden; }

/* Barra de progresso de leitura */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--acai-500), var(--mango-500));
  z-index: 999;
  pointer-events: none;
}

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2rem, 1rem + 5vw, 5rem));
  padding-bottom: clamp(4rem, 2rem + 8vw, 8rem);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1000px 620px at 78% 18%, rgba(160,79,188,.16) 0%, transparent 62%),
    radial-gradient(760px 520px at 10% 78%, rgba(255,165,31,.15) 0%, transparent 60%),
    var(--cream);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}

.hero__content { position: relative; z-index: 3; }

.hero__title {
  font-size: var(--fs-display);
  margin-top: 1.15rem;
  letter-spacing: -.035em;
}

.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: block;
  transform: translateY(110%) rotate(3deg);
  opacity: 0;
  animation: heroLine .95s var(--ease-out) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: .12s; }
.hero__title .line:nth-child(2) > span { animation-delay: .22s; }
.hero__title .line:nth-child(3) > span { animation-delay: .32s; }

@keyframes heroLine {
  to { transform: translateY(0) rotate(0); opacity: 1; }
}

.hero__lead {
  margin-top: 1.5rem;
  max-width: 50ch;
  animation: fadeUp .8s var(--ease-out) .52s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2.1rem;
  animation: fadeUp .8s var(--ease-out) .64s both;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.6rem;
  padding-top: 1.9rem;
  border-top: 1px solid var(--line);
  animation: fadeUp .8s var(--ease-out) .78s both;
}

.hero__trust-item { display: flex; flex-direction: column; gap: .1rem; }
.hero__trust-item b {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  color: var(--acai-700);
  letter-spacing: -.03em;
}
.hero__trust-item span { font-size: var(--fs-xs); color: var(--ink-55); font-weight: 600; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Palco visual do hero */
.hero__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  z-index: 2;
}

.hero__blob {
  position: absolute;
  inset: 2%;
  border-radius: 46% 54% 58% 42% / 52% 46% 54% 48%;
  background: linear-gradient(150deg, var(--acai-500), var(--acai-700) 55%, var(--acai-800));
  box-shadow: 0 40px 100px rgba(67,19,86,.38);
  animation: blobMorph 14s var(--ease-in-out) infinite;
  will-change: border-radius, transform;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 46% 54% 58% 42% / 52% 46% 54% 48%; transform: rotate(0deg) scale(1); }
  33% { border-radius: 58% 42% 44% 56% / 44% 58% 42% 56%; transform: rotate(4deg) scale(1.02); }
  66% { border-radius: 42% 58% 52% 48% / 58% 42% 58% 42%; transform: rotate(-3deg) scale(.99); }
}

.hero__ring {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 1.5px dashed rgba(122,43,149,.26);
  animation: spin 46s linear infinite;
}
.hero__ring--2 { inset: -13%; border-color: rgba(255,165,31,.24); animation-duration: 64s; animation-direction: reverse; }

@keyframes spin { to { transform: rotate(360deg); } }

.hero__photo {
  position: relative;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(29,8,38,.34);
  z-index: 2;
  will-change: transform;
}

/* Texto circular girando */
.hero__seal {
  position: absolute;
  right: -2%;
  bottom: 4%;
  width: clamp(92px, 12vw, 132px);
  height: clamp(92px, 12vw, 132px);
  z-index: 4;
  display: grid;
  place-items: center;
}
.hero__seal-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--mango-500);
  box-shadow: 0 16px 38px rgba(255,165,31,.4);
}
/* Classe própria: um `.hero__seal svg` genérico também pegaria o ícone central. */
.hero__seal-text { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 18s linear infinite; }
/* O texto precisa caber na circunferência (raio 33 → ~207u) sem se sobrepor. */
.hero__seal-text text { font-family: var(--font-sans); font-size: 7.4px; font-weight: 800; letter-spacing: .1em; fill: #2A1200; text-transform: uppercase; }
.hero__seal-icon { position: relative; width: 34%; z-index: 2; }

/* Cartões flutuantes */
.hero__card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .72rem .95rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--sh-md), inset 0 0 0 1px rgba(255,255,255,.8);
  will-change: transform;
}
/* Seletores mirando só o bloco de texto: um `.hero__card span` genérico
   venceria em especificidade e quebraria o grid do ícone. */
.hero__card b { display: block; font-size: var(--fs-sm); font-weight: 800; line-height: 1.25; }
.hero__card b + span { display: block; font-size: var(--fs-xs); color: var(--ink-55); }
.hero__card-icon {
  width: 36px; height: 36px;
  border-radius: 11px;
  display: grid; place-items: center;
  flex: none;
}
.hero__card-icon svg { width: 19px; height: 19px; }
.hero__card--a { top: 8%; left: -6%; animation: floatY 5.2s var(--ease-in-out) infinite; }
.hero__card--b { bottom: 20%; left: -10%; animation: floatY 6.4s var(--ease-in-out) .8s infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

/* Frutos caindo com gravidade */
.berries { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.berry {
  position: absolute;
  top: -8%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--acai-400), var(--acai-700) 62%, var(--acai-900));
  box-shadow: inset -2px -3px 5px rgba(0,0,0,.35);
  opacity: 0;
  will-change: transform;
}

/* Indicador de rolagem */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 2vw, 2rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  z-index: 6;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-40);
  animation: fadeUp .8s var(--ease-out) 1.1s both;
}
.scroll-hint__track {
  width: 24px; height: 38px;
  border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1.5px var(--line);
  position: relative;
}
.scroll-hint__track::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 4px; height: 8px;
  border-radius: 3px;
  background: var(--acai-500);
  transform: translateX(-50%);
  animation: scrollDot 1.9s var(--ease-in-out) infinite;
}
@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* ---------- 9. Marquee ---------- */
.marquee {
  overflow: hidden;
  position: relative;
  padding-block: 1.1rem;
  background: var(--acai-800);
  color: var(--cream);
  --marquee-dur: 36s;
}
.marquee--tilt { transform: rotate(-1.4deg) scale(1.03); }
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-dur) linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding-right: 2.4rem;
  flex: none;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, .9rem + .7vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.marquee__item svg { width: 1em; height: 1em; color: var(--mango-500); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 10. Cards ---------- */
.card {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

/* Inclinação 3D acompanhando o mouse */
.tilt {
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  will-change: transform;
}
.tilt > * { transform: translateZ(0); }
.tilt.is-tilting { transition: transform .1s linear; }

/* Card de produto */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(160deg, var(--sand), var(--acai-50));
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .85s var(--ease-out);
}
.product-card:hover .product-card__media img { transform: scale(1.07); }

.product-card__tags {
  position: absolute;
  top: .8rem; left: .8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  z-index: 2;
}

.product-card__fav {
  position: absolute;
  top: .8rem; right: .8rem;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-base) var(--ease-spring), background-color var(--t-fast);
}
.product-card__fav svg { width: 17px; height: 17px; fill: none; stroke: var(--ink-55); stroke-width: 2; transition: fill var(--t-fast), stroke var(--t-fast); }
.product-card__fav:hover { transform: scale(1.12); }
.product-card__fav[aria-pressed="true"] svg { fill: #E0384F; stroke: #E0384F; }
.product-card__fav[aria-pressed="true"] { animation: pop .42s var(--ease-spring); }
@keyframes pop { 0% { transform: scale(1); } 45% { transform: scale(1.28); } 100% { transform: scale(1); } }

.product-card__body { padding: 1.25rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; gap: .55rem; }
.product-card__title { font-size: 1.2rem; }
.product-card__desc { font-size: var(--fs-sm); color: var(--ink-55); line-height: 1.55; flex: 1; }
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .5rem;
  padding-top: .95rem;
  border-top: 1px solid var(--line-soft);
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--acai-700);
  letter-spacing: -.03em;
  line-height: 1;
}
.product-card__price small { font-size: .7rem; font-weight: 600; color: var(--ink-40); display: block; font-family: var(--font-sans); letter-spacing: 0; margin-bottom: 2px; }

/* Card de diferencial */
.feature {
  position: relative;
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.feature::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,43,149,.12), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease-out);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.feature:hover::after { opacity: 1; }

.feature__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 1.15rem;
  background: var(--acai-100);
  color: var(--acai-600);
  transition: transform var(--t-base) var(--ease-spring);
}
.feature:hover .feature__icon { transform: rotate(-8deg) scale(1.06); }
.feature__icon svg { width: 25px; height: 25px; }
.feature__icon--leaf { background: var(--leaf-100); color: var(--leaf-600); }
.feature__icon--mango { background: var(--mango-100); color: var(--mango-600); }
.feature h3 { font-size: 1.22rem; margin-bottom: .55rem; }
.feature p { font-size: var(--fs-sm); color: var(--ink-55); line-height: 1.6; }

.bg-acai .feature {
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
}
.bg-acai .feature:hover { background: rgba(255,255,255,.09); }
.bg-acai .feature__icon { background: rgba(255,165,31,.16); color: var(--mango-400); }
.bg-acai .feature p { color: rgba(255,249,243,.7); }

/* Número grande decorativo */
.feature__num {
  position: absolute;
  top: .4rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--acai-100);
  letter-spacing: -.05em;
  pointer-events: none;
  z-index: 0;
}
.bg-acai .feature__num { color: rgba(255,255,255,.07); }
.feature > *:not(.feature__num) { position: relative; z-index: 1; }

/* ---------- 11. Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, .6rem + 1.6vw, 2rem);
}
.stat { text-align: center; padding: 1.2rem .6rem; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 1.6rem + 2.6vw, 3.9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--mango-500);
  display: block;
}
.stat__label { font-size: var(--fs-sm); color: var(--ink-55); margin-top: .6rem; font-weight: 600; }
.bg-acai .stat__label { color: rgba(255,249,243,.62); }

/* ---------- 12. Passo a passo com trilho ---------- */
.steps { position: relative; display: grid; gap: clamp(1.1rem, .7rem + 1.4vw, 1.9rem); }

.step {
  position: relative;
  padding: clamp(1.5rem, 1.1rem + 1vw, 2rem);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.step__badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--acai-700);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.05rem;
  box-shadow: 0 8px 20px rgba(67,19,86,.28);
}
.step h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.step p { font-size: var(--fs-sm); color: var(--ink-55); line-height: 1.6; }

/* Seção fixa com progressão ao rolar */
.sticky-scene {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: start;
}
.sticky-scene__visual {
  position: sticky;
  top: calc(var(--header-h) + 3vh);
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--acai-800);
}
.sticky-scene__visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity .8s var(--ease-out), transform 1.3s var(--ease-out);
}
.sticky-scene__visual img.is-active { opacity: 1; transform: scale(1); }
.sticky-scene__caption {
  position: absolute;
  left: 1.3rem; right: 1.3rem; bottom: 1.3rem;
  padding: .95rem 1.2rem;
  border-radius: var(--r-md);
  background: rgba(18,5,24,.6);
  backdrop-filter: blur(14px);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.sticky-scene__steps { display: grid; gap: clamp(2.5rem, 2rem + 6vh, 6rem); padding-block: 2vh 12vh; }
.sticky-scene__step {
  opacity: .32;
  transform: translateY(0);
  transition: opacity .55s var(--ease-out);
}
.sticky-scene__step.is-active { opacity: 1; }
.sticky-scene__step h3 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem); margin-bottom: .75rem; }
.sticky-scene__step .step-index {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mango-500);
  margin-bottom: .9rem;
}
.sticky-scene__step .step-index::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.sticky-scene__step.is-active .step-index::before { transform: scaleX(1); }

/* ---------- 13. Depoimentos ---------- */
.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-sm);
  height: 100%;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.58;
  color: var(--ink);
  flex: 1;
  letter-spacing: -.008em;
}
.testimonial__stars { display: flex; gap: .16rem; color: var(--mango-500); }
.testimonial__stars svg { width: 17px; height: 17px; fill: currentColor; }
.testimonial__who { display: flex; align-items: center; gap: .8rem; padding-top: 1.05rem; border-top: 1px solid var(--line-soft); }
.avatar {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: .92rem;
  color: #fff;
  background: linear-gradient(140deg, var(--acai-500), var(--acai-700));
  letter-spacing: -.01em;
}
.testimonial__who b { display: block; font-size: var(--fs-sm); font-weight: 700; line-height: 1.3; }
.testimonial__who b + span { display: block; font-size: var(--fs-xs); color: var(--ink-40); }

/* Carrossel com arraste */
.drag-rail {
  display: flex;
  gap: clamp(1rem, .7rem + 1vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: .4rem 1.6rem;
  padding-inline: var(--gutter);
  margin-inline: calc(var(--gutter) * -1);
  scrollbar-width: none;
  cursor: grab;
}
.drag-rail::-webkit-scrollbar { display: none; }
.drag-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.drag-rail.is-dragging * { pointer-events: none; user-select: none; }
.drag-rail > * { flex: 0 0 min(340px, 82vw); scroll-snap-align: start; }

.rail-nav { display: flex; align-items: center; gap: .55rem; }
.rail-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white);
  box-shadow: var(--sh-xs), inset 0 0 0 1px var(--line);
  transition: transform var(--t-base) var(--ease-spring), background-color var(--t-fast), opacity var(--t-fast);
}
.rail-btn svg { width: 18px; height: 18px; }
.rail-btn:hover { background: var(--acai-600); color: #fff; transform: scale(1.06); box-shadow: var(--sh-md); }
.rail-btn[disabled] { opacity: .32; pointer-events: none; }

/* ---------- 14. Acordeão (FAQ) ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem .25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, .96rem + .35vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.35;
  color: var(--ink);
  transition: color var(--t-fast);
}
.acc-trigger:hover { color: var(--acai-600); }
.acc-icon {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--acai-100);
  color: var(--acai-700);
  position: relative;
  transition: background-color var(--t-base), transform var(--t-base) var(--ease-spring);
}
.acc-icon::before, .acc-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-spring), opacity var(--t-base);
}
.acc-icon::before { width: 12px; height: 2px; }
.acc-icon::after { width: 2px; height: 12px; }
.acc-trigger[aria-expanded="true"] .acc-icon { background: var(--acai-600); color: #fff; transform: rotate(180deg); }
.acc-trigger[aria-expanded="true"] .acc-icon::after { transform: scaleY(0); opacity: 0; }
.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .44s var(--ease-out);
}
.acc-panel > div { overflow: hidden; }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel p { padding: 0 3rem 1.5rem .25rem; color: var(--ink-55); font-size: var(--fs-sm); line-height: 1.68; }
.acc-panel p + p { padding-top: .8rem; }

/* ---------- 15. Formulários ---------- */
.form { display: grid; gap: 1.05rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.05rem; }

.field { display: grid; gap: .45rem; position: relative; }
.field label { font-size: var(--fs-xs); font-weight: 700; color: var(--ink-70); letter-spacing: .01em; }
.field label .req { color: #D0433C; }

.input, .select, .textarea {
  width: 100%;
  padding: .92rem 1.05rem;
  border-radius: var(--r-sm);
  background: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--line);
  border: 0;
  font-size: var(--fs-sm);
  transition: box-shadow var(--t-fast) var(--ease-out), background-color var(--t-fast);
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-40); }
.input:hover, .select:hover, .textarea:hover { box-shadow: inset 0 0 0 1.5px var(--acai-200); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--acai-500), 0 0 0 4px rgba(122,43,149,.14);
}
.textarea { min-height: 128px; resize: vertical; line-height: 1.6; }

.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%231B0D21' stroke-opacity='.5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.05rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}

.field__error {
  font-size: var(--fs-xs);
  color: #C43A33;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: .3rem;
}
.field.has-error .input, .field.has-error .select, .field.has-error .textarea {
  box-shadow: inset 0 0 0 2px #D0433C, 0 0 0 4px rgba(208,67,60,.12);
}
.field.has-error .field__error { display: flex; animation: shakeX .38s var(--ease-out); }
@keyframes shakeX {
  0%, 100% { transform: translateX(0); }
  22% { transform: translateX(-5px); }
  44% { transform: translateX(5px); }
  70% { transform: translateX(-3px); }
}

.checkbox { display: flex; align-items: flex-start; gap: .65rem; cursor: pointer; font-size: var(--fs-xs); color: var(--ink-55); line-height: 1.55; }
.checkbox input { width: 19px; height: 19px; flex: none; margin-top: 1px; accent-color: var(--acai-600); cursor: pointer; border-radius: 4px; }
.checkbox input[aria-invalid="true"] {
  outline: 2px solid #D0433C;
  outline-offset: 2px;
  animation: shakeX .38s var(--ease-out);
}

/* Formulário sobre fundo escuro: rótulos e apoios precisam inverter. */
.bg-acai .field label { color: rgba(255, 249, 243, .82); }
.bg-acai .field label .req { color: var(--mango-400); }
.bg-acai .field__error { color: #FFB4AC; }
.bg-acai .checkbox { color: rgba(255, 249, 243, .72); }
.bg-acai .checkbox .req { color: var(--mango-400); }
.bg-acai .form-note { color: rgba(255, 249, 243, .58); }
.bg-acai .input:focus, .bg-acai .select:focus, .bg-acai .textarea:focus {
  box-shadow: inset 0 0 0 2px var(--mango-500), 0 0 0 4px rgba(255, 165, 31, .22);
}

.form-note { font-size: var(--fs-xs); color: var(--ink-40); display: flex; align-items: center; gap: .4rem; }
.form-note svg { width: 14px; height: 14px; flex: none; }

/* Estados de envio */
.form-status {
  display: none;
  align-items: flex-start;
  gap: .8rem;
  padding: 1.05rem 1.2rem;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  line-height: 1.55;
  animation: fadeUp .45s var(--ease-out);
}
.form-status.is-visible { display: flex; }
.form-status--ok { background: var(--leaf-100); color: var(--leaf-700); }
.form-status--err { background: #FCE9E7; color: #A8332C; }
.form-status svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.form-status b { display: block; margin-bottom: .15rem; }

/* Spinner do botão */
.btn.is-loading { pointer-events: none; color: transparent; }
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 19px; height: 19px;
  border-radius: 50%;
  border: 2.5px solid rgba(0,0,0,.2);
  border-top-color: currentColor;
  border-top-color: #2A1200;
  animation: spin .7s linear infinite;
}
.btn--acai.is-loading::after, .btn--dark.is-loading::after, .btn--wa.is-loading::after { border-top-color: #fff; border-color: rgba(255,255,255,.28); border-top-color: #fff; }

/* ---------- 16. Estados: vazio e carregando ---------- */
.empty-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: clamp(3rem, 2rem + 4vw, 5rem) 1.5rem;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--line-soft);
  animation: fadeUp .5s var(--ease-out);
}
.empty-state.is-visible { display: flex; }
.empty-state__art { width: clamp(110px, 16vw, 160px); opacity: .95; }
.empty-state h3 { font-size: 1.35rem; }
.empty-state p { color: var(--ink-55); font-size: var(--fs-sm); max-width: 44ch; }

.skeleton {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  border-radius: var(--r-xs);
}
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }

.sk-card { border-radius: var(--r-lg); background: var(--white); box-shadow: var(--sh-xs); overflow: hidden; }
.sk-card__media { aspect-ratio: 4 / 3; }
.sk-card__body { padding: 1.25rem 1.3rem 1.4rem; display: grid; gap: .7rem; }
.sk-line { height: 12px; border-radius: 6px; }
.sk-line--title { height: 18px; width: 68%; }
.sk-line--sm { width: 40%; }

.loading-grid { display: grid; gap: clamp(1.1rem, .7rem + 1.4vw, 1.9rem); }
.loading-grid[hidden] { display: none; }

/* ---------- 17. Filtros / chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.chip {
  padding: .6rem 1.15rem;
  border-radius: var(--r-pill);
  background: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--line);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-70);
  white-space: nowrap;
  transition: all var(--t-base) var(--ease-out);
}
.chip:hover { box-shadow: inset 0 0 0 1.5px var(--acai-300); color: var(--acai-700); transform: translateY(-2px); }
.chip[aria-pressed="true"] {
  background: var(--acai-700);
  color: #fff;
  box-shadow: 0 10px 24px rgba(67,19,86,.26);
}

.search-box { position: relative; flex: 1; min-width: 200px; }
.search-box .input { padding-left: 2.85rem; }
.search-box__icon {
  position: absolute;
  left: 1.05rem; top: 50%;
  transform: translateY(-50%);
  width: 17px; height: 17px;
  color: var(--ink-40);
  pointer-events: none;
}
.search-box__clear {
  position: absolute;
  right: .75rem; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: none;
  place-items: center;
  background: var(--sand);
  color: var(--ink-55);
  transition: background-color var(--t-fast);
}
.search-box__clear svg { width: 12px; height: 12px; }
.search-box__clear.is-visible { display: grid; }
.search-box__clear:hover { background: var(--sand-dark); }

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem;
  margin-bottom: 2rem;
}

.result-count { font-size: var(--fs-sm); color: var(--ink-55); font-weight: 600; }
.result-count b { color: var(--ink); }

/* ---------- 18. Unidades ---------- */
.store-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.store-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.store-card__map {
  aspect-ratio: 16 / 9;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.store-card__map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.92); }
.store-card__body { padding: 1.4rem 1.45rem 1.55rem; display: grid; gap: .8rem; flex: 1; }
.store-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.store-card__addr { display: flex; gap: .6rem; font-size: var(--fs-sm); color: var(--ink-55); line-height: 1.55; }
.store-card__addr svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--acai-500); }
.store-card__actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; padding-top: .6rem; }

.hours-list { display: grid; gap: .3rem; font-size: var(--fs-xs); }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-55); padding: .18rem 0; }
.hours-list li.is-today { color: var(--acai-700); font-weight: 700; }

/* ---------- 19. CTA final ---------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(2.4rem, 1.6rem + 4vw, 4.6rem) clamp(1.5rem, 1rem + 3vw, 4rem);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--acai-700) 0%, var(--acai-900) 52%, var(--acai-800) 100%);
  color: #fff;
  box-shadow: var(--sh-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,249,243,.76); }
.cta-band__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.cta-band__glow--1 { width: 340px; height: 340px; background: var(--mango-500); top: -110px; right: -70px; animation: floatY 9s var(--ease-in-out) infinite; }
.cta-band__glow--2 { width: 300px; height: 300px; background: var(--acai-400); bottom: -130px; left: -60px; animation: floatY 11s var(--ease-in-out) 1.2s infinite; }
.cta-band__inner { position: relative; z-index: 1; display: grid; gap: 1.6rem; justify-items: center; text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ---------- 20. Footer ---------- */
.footer {
  position: relative;
  background: var(--acai-950);
  color: rgba(255,249,243,.68);
  padding-top: clamp(3.5rem, 2.5rem + 4vw, 5.5rem);
  overflow: hidden;
}
.footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: clamp(1.8rem, 1rem + 3vw, 3.5rem);
  padding-bottom: 3rem;
}
.footer .logo { color: #fff; }
.footer .logo__text small { color: var(--mango-400); }
.footer__about { font-size: var(--fs-sm); line-height: 1.68; margin-top: 1.15rem; max-width: 38ch; }
.footer__links { display: grid; gap: .6rem; font-size: var(--fs-sm); }
.footer__links a { transition: color var(--t-fast), transform var(--t-fast) var(--ease-out); display: inline-block; }
.footer__links a:hover { color: var(--mango-400); transform: translateX(3px); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: var(--fs-xs);
}
.footer__bottom a:hover { color: var(--mango-400); }

.social {
  display: flex;
  gap: .5rem;
  margin-top: 1.5rem;
}
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.07);
  color: #fff;
  transition: transform var(--t-base) var(--ease-spring), background-color var(--t-base);
}
.social a svg { width: 18px; height: 18px; }
.social a:hover { background: var(--mango-500); color: #2A1200; transform: translateY(-4px) scale(1.06); }
.drawer .social a { background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.drawer .social a:hover { background: var(--acai-600); color: #fff; }

.footer__wave { width: 100%; display: block; color: var(--acai-950); }

/* ---------- 21. WhatsApp flutuante ---------- */
.fab-wa {
  position: fixed;
  right: clamp(1rem, 2vw, 1.75rem);
  bottom: clamp(1rem, 2vw, 1.75rem);
  z-index: 800;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.25rem .85rem .95rem;
  border-radius: var(--r-pill);
  background: #1FAF54;
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-sm);
  box-shadow: 0 14px 34px rgba(31,175,84,.42);
  opacity: 0;
  transform: translateY(24px) scale(.9);
  pointer-events: none;
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-spring), box-shadow var(--t-base);
}
.fab-wa.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab-wa:hover { box-shadow: 0 18px 46px rgba(31,175,84,.55); transform: translateY(-3px) scale(1.03); }
.fab-wa svg { width: 22px; height: 22px; flex: none; }
.fab-wa__label { white-space: nowrap; }

/* ---------- 22. Breadcrumb / Page hero ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 1.5rem + 4vw, 4.5rem));
  padding-bottom: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(800px 500px at 82% 10%, rgba(160,79,188,.18) 0%, transparent 62%),
    radial-gradient(700px 480px at 6% 88%, rgba(255,165,31,.14) 0%, transparent 62%),
    var(--cream);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 800px; }
.page-hero h1 { margin-top: 1rem; }
.page-hero .lead { margin-top: 1.15rem; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-size: var(--fs-xs); color: var(--ink-40); font-weight: 600; }
.crumbs a:hover { color: var(--acai-600); }
.crumbs svg { width: 12px; height: 12px; opacity: .55; }
.crumbs [aria-current] { color: var(--acai-600); }

/* Folhas decorativas do page hero */
.deco-leaf { position: absolute; pointer-events: none; z-index: 1; opacity: .5; will-change: transform; }

/* ---------- 23. Reveal ao rolar ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .78s var(--ease-out), transform .78s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(.93); }
[data-reveal="blur"]  { filter: blur(9px); transform: translateY(20px); transition-property: opacity, transform, filter; }
[data-reveal].is-inview {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Parallax */
[data-parallax] { will-change: transform; }

/* ---------- 24. Cursor personalizado ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--acai-500);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width .28s var(--ease-out), height .28s var(--ease-out),
              background-color .28s var(--ease-out), opacity .28s, border-color .28s;
  mix-blend-mode: multiply;
}
.cursor__dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--acai-600);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .28s;
}
.cursor.is-active, .cursor__dot.is-active { opacity: 1; }
.cursor.is-hover { width: 62px; height: 62px; background: rgba(122,43,149,.1); border-color: transparent; }

@media (hover: none), (pointer: coarse) {
  .cursor, .cursor__dot { display: none !important; }
}

/* ---------- 25. Utilitários ---------- */
.media-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--sand);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 3 / 4; }
.media-frame--wide { aspect-ratio: 16 / 10; }
.media-frame--square { aspect-ratio: 1; }

.img-zoom img { transition: transform 1.1s var(--ease-out); }
.img-zoom:hover img { transform: scale(1.05); }

.badge-float {
  position: absolute;
  z-index: 3;
  padding: .9rem 1.15rem;
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--sh-md);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }

.check-list { display: grid; gap: .85rem; }
.check-list li { display: flex; gap: .75rem; font-size: var(--fs-sm); line-height: 1.55; color: var(--ink-70); }
.check-list li svg { width: 21px; height: 21px; flex: none; color: var(--leaf-500); margin-top: 1px; }
.bg-acai .check-list li { color: rgba(255,249,243,.78); }
.bg-acai .check-list li svg { color: var(--mango-400); }

.divider { height: 1px; background: var(--line); border: 0; }

.prose { max-width: 70ch; }
.prose h2 { margin-top: 2.6rem; margin-bottom: .9rem; }
.prose h3 { margin-top: 2rem; margin-bottom: .7rem; }
.prose p { color: var(--ink-70); margin-bottom: 1.05rem; line-height: 1.75; }
.prose ul { display: grid; gap: .6rem; margin-bottom: 1.2rem; }
.prose ul li { display: flex; gap: .65rem; color: var(--ink-70); line-height: 1.7; }
.prose ul li::before { content: "•"; color: var(--acai-500); font-weight: 800; flex: none; }
.prose strong { color: var(--ink); font-weight: 700; }

/* Tabela nutricional */
.table-wrap { overflow-x: auto; border-radius: var(--r-md); box-shadow: inset 0 0 0 1px var(--line); }
table.data { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); background: var(--white); min-width: 480px; }
table.data th, table.data td { padding: .85rem 1.1rem; text-align: left; }
table.data thead th { background: var(--acai-50); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--acai-700); font-weight: 800; }
table.data tbody tr + tr { border-top: 1px solid var(--line-soft); }
table.data tbody tr:hover { background: var(--cream); }
table.data td:last-child, table.data th:last-child { text-align: right; font-variant-numeric: tabular-nums; }

/* Timeline */
.timeline { position: relative; display: grid; gap: clamp(1.8rem, 1.2rem + 2vw, 3rem); padding-left: 2.6rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--acai-300), var(--mango-400));
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s var(--ease-out);
}
.timeline.is-inview::before { transform: scaleY(1); }
.tl-item { position: relative; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -2.6rem; top: 6px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: inset 0 0 0 3px var(--acai-500);
  transition: box-shadow var(--t-base);
}
.tl-item:hover::before { box-shadow: inset 0 0 0 7px var(--mango-500); }
.tl-item .tl-year {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mango-600);
  letter-spacing: -.01em;
}
.tl-item h3 { font-size: 1.3rem; margin: .25rem 0 .5rem; }
.tl-item p { font-size: var(--fs-sm); color: var(--ink-55); line-height: 1.65; }

/* Galeria masonry leve */
.gallery { columns: 3; column-gap: clamp(.8rem, .5rem + 1vw, 1.3rem); }
.gallery figure {
  break-inside: avoid;
  margin-bottom: clamp(.8rem, .5rem + 1vw, 1.3rem);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  position: relative;
}
.gallery img { width: 100%; transition: transform .9s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem .95rem .85rem;
  background: linear-gradient(transparent, rgba(18,5,24,.78));
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-base), transform var(--t-base) var(--ease-out);
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* Toast */
.toast-area {
  position: fixed;
  left: 50%; bottom: clamp(1rem, 2vw, 1.75rem);
  transform: translateX(-50%);
  z-index: 1000;
  display: grid;
  gap: .5rem;
  width: min(420px, calc(100vw - 2rem));
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1.15rem;
  border-radius: var(--r-md);
  background: var(--ink);
  color: var(--cream);
  font-size: var(--fs-sm);
  font-weight: 600;
  box-shadow: var(--sh-lg);
  animation: toastIn .45s var(--ease-spring);
}
.toast svg { width: 18px; height: 18px; flex: none; color: var(--mango-400); }
.toast.is-leaving { animation: toastOut .3s var(--ease-out) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(18px) scale(.95); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateY(12px) scale(.96); } }

/* ---------- 26. Responsivo ---------- */
@media (max-width: 1180px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  :root { --header-h: 70px; }

  .nav { display: none; }
  .burger { display: flex; }
  .header__actions .btn--desktop { display: none; }
  .nav, .header__actions { margin-left: auto; }

  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero__stage { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  .hero__card--a { left: -2%; }
  .hero__card--b { left: -4%; }
  .scroll-hint { display: none; }

  .sticky-scene { grid-template-columns: 1fr; }
  .sticky-scene__visual { position: relative; top: 0; max-width: 520px; margin-inline: auto; aspect-ratio: 4/3; }
  .sticky-scene__steps { padding-block: 2.5rem 0; gap: 2.5rem; }
  .sticky-scene__step { opacity: 1; }

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

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .split--reverse > *:first-child { order: 0; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band__glow--1, .cta-band__glow--2 { filter: blur(48px); }
}

@media (max-width: 620px) {
  :root { --header-h: 66px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery { columns: 1; }

  .hero { padding-bottom: 3rem; padding-top: calc(var(--header-h) + 1.25rem); }
  /* Imagem menor para o título e os botões caberem na primeira tela. */
  .hero__stage { max-width: 320px; }
  .hero__trust { gap: 1.1rem 1.8rem; }
  .hero__trust-item b { font-size: 1.5rem; }
  .hero__card--a { top: 4%; left: 0; padding: .6rem .75rem; }
  .hero__card--b { bottom: 14%; left: -1%; padding: .6rem .75rem; }
  .hero__card-icon { width: 30px; height: 30px; border-radius: 9px; }
  .hero__card-icon svg { width: 16px; height: 16px; }

  .btn { width: 100%; }
  .btn--sm, .chip, .rail-btn, .hero__cta .btn--inline { width: auto; }
  .hero__cta, .cta-band__actions, .store-card__actions { flex-direction: column; align-items: stretch; }
  .store-card__actions .btn { width: 100%; }

  .fab-wa__label { display: none; }
  .fab-wa { padding: .95rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; gap: .8rem; }

  .acc-panel p { padding-right: 1rem; }
  .timeline { padding-left: 2.2rem; }
  .tl-item::before { left: -2.2rem; width: 20px; height: 20px; }
}

@media (max-width: 400px) {
  :root { --gutter: 1rem; }
  .hero__seal { width: 76px; height: 76px; right: 0; }
  .hero__seal text { font-size: 9px; }
  .drag-rail > * { flex-basis: 86vw; }
}

/* ---------- 27. Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero__title .line > span { opacity: 1; transform: none; }
  .berries, .cursor, .cursor__dot { display: none !important; }
  .sticky-scene__step { opacity: 1; }
  .ink-highlight svg path { stroke-dashoffset: 0; }
  .timeline::before { transform: scaleY(1); }
}

/* ---------- 28. Impressão ---------- */
@media print {
  .header, .drawer, .fab-wa, .cursor, .cursor__dot, .progress-bar, .scroll-hint, .berries { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; }
}
