/* ---------- PULO DO GATO DOCES — styles v3 ---------- */
@import url(https://db.onlinewebfonts.com/c/4ad324a72a2f6b5d2db13be16895999c?family=Sovba+W00+Black);
@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap);

:root {
  --paper:       #FBF7F0;
  --cream:       #F3EAD8;
  --bg-sec:      #F0E8D6;
  --wood:        #A0682B;
  --wood-deep:   #7A4C1D;
  --wood-soft:   #C9935B;
  --choc:        #2C1A0E;
  --ink:         #1E120A;
  --muted:       #7A5C3A;
  --line:        rgba(44,26,14,0.10);
  --line-s:      rgba(44,26,14,0.20);
  --display:     'Sovba W00 Black', 'Arial Black', sans-serif;
  --body:        'Poppins', sans-serif;
  --maxw:        1280px;
  --gutter:      clamp(20px, 4vw, 52px);
  --r:           14px;
  --r-lg:        22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Typography ── */
.disp      { font-family: var(--display); line-height: 1.0; letter-spacing: -.01em; color: var(--choc); }
.h1        { font-size: clamp(40px, 6vw, 88px); }
.h2        { font-size: clamp(32px, 4.5vw, 64px); }
.h3        { font-size: clamp(22px, 2.8vw, 38px); }
.eyebrow   { font-family: var(--body); font-weight: 600; font-size: 11px; letter-spacing: .20em; text-transform: uppercase; color: var(--wood-deep); display: inline-flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ''; width: 14px; height: 2px; background: currentColor; border-radius: 2px; flex-shrink: 0; }
.lead      { font-size: clamp(16px, 1.4vw, 19px); font-weight: 400; line-height: 1.7; color: var(--ink); max-width: 58ch; text-wrap: pretty; }
.prose p   { font-size: 16px; line-height: 1.75; color: var(--ink); max-width: 58ch; margin-bottom: 1em; text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 600; color: var(--choc); }

/* ── Layout ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(56px, 8vw, 120px) 0; position: relative; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px 15px;
  border-radius: 999px; border: 2px solid transparent;
  font-family: var(--body); font-weight: 600; font-size: 14px;
  cursor: pointer; white-space: nowrap; line-height: 1;
  transition: transform .2s, background .2s, color .2s, box-shadow .2s;
}
.btn-primary { background: var(--choc); color: var(--paper); border-color: var(--choc); }
.btn-primary:hover { background: var(--wood-deep); border-color: var(--wood-deep); transform: translateY(-2px); box-shadow: 0 8px 22px -8px rgba(44,26,14,.4); }
.btn-ghost   { background: transparent; color: var(--choc); border-color: var(--line-s); }
.btn-ghost:hover { background: var(--choc); color: var(--paper); }
.btn-wa      { background: #1FAE5A; color: #fff; border-color: #1FAE5A; }
.btn-wa:hover { background: #178c47; transform: translateY(-2px); box-shadow: 0 8px 22px -8px rgba(31,174,90,.5); }
.btn-white   { background: var(--paper); color: var(--choc); border-color: var(--paper); }
.btn-white:hover { background: var(--cream); }
.arr { display: inline-block; width: 12px; height: 12px; border-right: 2px solid currentColor; border-top: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s; flex-shrink: 0; }
.btn:hover .arr { transform: rotate(45deg) translate(2px,-2px); }

/* ──────────────────────────────────────────
   HEADER — transparent on hero, cream on scroll
──────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 64px var(--gutter) 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding .35s ease, margin .35s ease, background .35s, backdrop-filter .35s, border-color .35s, box-shadow .35s, border-radius .35s;
  border: 1px solid transparent;
  /* CSS vars for color-switching */
  --h-text: #fff;
  --h-sub:  rgba(255,255,255,0.78);
}
.header.scrolled {
  top: 16px;
  margin: 0 clamp(12px, 3vw, 36px);
  padding: 14px clamp(20px, 3vw, 32px);
  background: rgba(251,247,240,0.62);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  border-radius: 999px;
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 12px 34px -10px rgba(40,24,12,0.32);
  --h-text: var(--choc);
  --h-sub:  var(--muted);
}
.logo-wrap {
  display: flex; align-items: center; flex-shrink: 0;
}
/* Cabeça da Hazel — só aparece quando o header fica branco (rolagem) */
.logo-hazel {
  height: 0; width: auto; object-fit: contain;
  opacity: 0;
  transform: scale(0.7);
  transform-origin: left center;
  transition: opacity .3s, transform .3s, height .3s;
}
.header.scrolled .logo-hazel {
  height: 40px;
  opacity: 1;
  transform: scale(1);
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--body); font-weight: 600; font-size: 16px;
  color: var(--h-text);
  position: relative; padding-bottom: 2px;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; border-radius: 2px; background: currentColor;
  transition: right .28s;
}
.nav-links a:hover::after { right: 0; }
.nav .btn { padding: 12px 22px 13px; font-size: 15px; font-weight: 700; }
/* CTA button adapts to header state */
.nav .btn-cta {
  background: var(--h-text);
  color: var(--choc);
  border-color: var(--h-text);
}
.header.scrolled .nav .btn-cta { background: var(--choc); color: var(--paper); border-color: var(--choc); }
.header.scrolled .nav .btn-cta:hover { background: var(--wood-deep); border-color: var(--wood-deep); }
@media (max-width: 740px) { .nav-links { display: none; } }

/* ── Hamburger + mobile menu ── */
.nav-burger {
  display: none;
  width: 42px; height: 42px; flex-shrink: 0;
  background: none; border: none; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--h-text);
  transition: transform .3s ease, opacity .25s ease, background .3s ease;
}
.header.menu-open .nav-burger span { background: var(--choc); }
.header.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.header.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(251,247,240,0.98);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.header.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu-inner {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center; padding: 0 var(--gutter);
}
.mobile-menu-inner a:not(.btn) {
  font-family: var(--display); font-size: clamp(30px, 9vw, 44px);
  color: var(--choc); padding: 8px 0; line-height: 1.1;
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease, color .2s;
}
.header.menu-open .mobile-menu-inner a:not(.btn) { opacity: 1; transform: none; }
.mobile-menu-inner a:not(.btn):active { color: var(--wood-deep); }
.mobile-menu-inner a:nth-child(1) { transition-delay: .04s; }
.mobile-menu-inner a:nth-child(2) { transition-delay: .08s; }
.mobile-menu-inner a:nth-child(3) { transition-delay: .12s; }
.mobile-menu-inner a:nth-child(4) { transition-delay: .16s; }
.mobile-menu-inner a:nth-child(5) { transition-delay: .20s; }
.mobile-wa {
  margin-top: 22px; padding: 16px 28px 17px; font-size: 16px;
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s ease .26s, transform .4s ease .26s, background .2s, box-shadow .2s;
}
.header.menu-open .mobile-wa { opacity: 1; transform: none; }
@media (min-width: 741px) { .mobile-menu { display: none; } }
@media (max-width: 740px) {
  .nav-burger { display: flex; }
  .nav .btn-cta { display: none; }
  .header { padding-top: 40px; }
  .header.scrolled { padding-top: 12px; padding-bottom: 12px; }
}

/* ──────────────────────────────────────────
   HERO — full viewport
──────────────────────────────────────────── */
.hero {
  height: 100vh; min-height: 600px;
  position: relative; overflow: hidden;
  background: #1a100a;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg image-slot { width: 100%; height: 100%; display: block; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.15) 0%, rgba(10,5,2,.68) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--gutter);
  padding-bottom: clamp(70px, 11vw, 150px);
  z-index: 2;
}
.hero-content .disp { color: #fff; transform: translateY(34px); font-size: clamp(40px, 6vw, 88px); }
.hero-sub {
  margin-top: 2px;
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 18px;
}
.hero-tag {
  align-self: flex-end;
  transform: translateY(56px);
}
.hero-tag {
  font-family: var(--body); font-weight: 400; font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px); color: rgba(255,255,255,.78);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; transform: translateY(26px); }
.hero-ctas .btn { padding: 17px 28px 18px; font-size: clamp(15px, 1.15vw, 18px); }
.hero-ctas .arr { width: 13px; height: 13px; }
.hero-logo {
  position: absolute;
  bottom: clamp(10px, 2vh, 24px);
  left: 50%; transform: translateX(-50%);
  height: clamp(54px, 6vw, 78px); width: auto; object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
  z-index: 3; pointer-events: none;
}

/* Spinning cookie — wrapper handles position, inner handles rotation */
.cookie-spin-wrap {
  position: absolute;
  left: clamp(16px, 4vw, 48px);
  top: clamp(58px, 9vh, 92px);
  z-index: 2;
  pointer-events: none;
}
/* sombra projetada do cookie (estática, atrás de tudo) */
.cookie-spin-wrap::before {
  content: '';
  position: absolute;
  left: 50%; bottom: -10px;
  transform: translateX(-50%);
  width: 80%; height: 16px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 48%, transparent 74%);
  border-radius: 50%;
  filter: blur(3px);
  z-index: 0;
}
.cookie-spin {
  width: clamp(46px, 5.3vw, 68px);
  height: clamp(46px, 5.3vw, 68px);
  border-radius: 50%;
  animation: spin 9.5s linear infinite;
}
.cookie-spin img { width: 100%; height: 100%; display: block; }
/* Cookie cartoon-realista — base assada irregular + gotas de chocolate */
.cookie-cartoon {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, #f3cf8d 0%, #e7b56f 38%, #d59d51 68%, #bd842e 100%),
    conic-gradient(from 20deg, rgba(120,72,24,.10), rgba(255,235,190,.10) 25%, rgba(120,72,24,.10) 50%, rgba(255,235,190,.10) 75%, rgba(120,72,24,.10));
  background-blend-mode: multiply;
  box-shadow:
    inset 0 0 0 0.45em #c0852f,
    inset 0 0 0.5em 0.45em rgba(150,92,32,.55),
    inset 0 0.5em 1.1em rgba(255,240,205,.4),
    inset 0 -0.8em 1.4em rgba(110,62,18,.5);
}
.cookie-cartoon .chip {
  position: absolute;
  background: radial-gradient(circle at 34% 28%, #7d5631 0%, #4a2a14 60%, #321c0d 100%);
  border-radius: 46% 54% 52% 48% / 56% 44% 56% 44%;
  box-shadow:
    inset 0.16em 0.16em 0.18em rgba(255,222,170,.3),
    inset -0.1em -0.12em 0.2em rgba(20,10,4,.5),
    0 0.14em 0.22em rgba(60,32,12,.45);
}
.chip.c1 { width: 18%; aspect-ratio: 1/0.92; top: 14%; left: 22%; transform: rotate(-12deg); }
.chip.c2 { width: 14%; aspect-ratio: 1/0.9;  top: 26%; left: 58%; transform: rotate(20deg); }
.chip.c3 { width: 20%; aspect-ratio: 1/0.95; top: 50%; left: 24%; transform: rotate(8deg); }
.chip.c4 { width: 13%; aspect-ratio: 1/0.9;  top: 58%; left: 60%; transform: rotate(-18deg); }
.chip.c5 { width: 11%; aspect-ratio: 1/0.9;  top: 40%; left: 45%; transform: rotate(30deg); }
.chip.c6 { width: 13%; aspect-ratio: 1/0.92; top: 71%; left: 42%; transform: rotate(16deg); }
.chip.c7 { width: 10%; aspect-ratio: 1/0.9;  top: 20%; left: 42%; transform: rotate(-24deg); }
.chip.c8 { width: 12%; aspect-ratio: 1/0.9;  top: 60%; left: 17%; transform: rotate(12deg); }
.chip.c9 { width: 9%;  aspect-ratio: 1/0.9;  top: 33%; left: 76%; transform: rotate(-8deg); }
.cookie-cartoon .speck {
  position: absolute;
  width: 3.4%; aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(110,66,22,.5);
}
.speck.s1 { top: 38%; left: 33%; }
.speck.s2 { top: 64%; left: 52%; }
.speck.s3 { top: 30%; left: 67%; background: rgba(255,238,200,.45); }
.speck.s4 { top: 52%; left: 72%; }
.speck.s5 { top: 76%; left: 60%; background: rgba(255,238,200,.4); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Gatinho 2D fofo (branco, sem rosto) andando em cima do cookie ── */
.cat2d {
  position: absolute;
  bottom: calc(100% - 11px);     /* pés pousam na curva de cima do cookie */
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 13.2em;
  height: 9.8em;
  font-size: clamp(2.25px, 0.28vw, 3.9px);
  pointer-events: none;
  filter: drop-shadow(0 3px 3px rgba(0,0,0,.22));
}
.cat2d > * { position: absolute; }

.cat-bob {
  position: absolute;
  inset: 0;
  animation: catBodyBob 0.25s ease-in-out infinite;
}
/* corpo redondinho */
.cat-body {
  position: absolute;
  left: 3.6em; top: 3.4em;
  width: 7.7em; height: 4.9em;
  background: #fbfbf8;
  border-radius: 56% 48% 50% 50% / 66% 60% 44% 44%;
  box-shadow: inset -0.4em -0.5em 0.9em rgba(60,50,40,.08);
}
/* cabeça grande (estilo fofo/chibi) */
.cat-head {
  position: absolute;
  left: 0.2em; top: 1.2em;
  width: 5.7em; height: 5.5em;
  background: #fbfbf8;
  border-radius: 52% 52% 48% 48% / 55% 55% 47% 47%;
  box-shadow: inset -0.4em -0.4em 0.8em rgba(60,50,40,.06);
}
.ear {
  position: absolute; top: -0.5em;
  width: 2.1em; height: 2.5em;
  background: #fbfbf8;
  border-radius: 50% 50% 28% 28% / 76% 76% 24% 24%;
}
.ear i {
  position: absolute; left: 50%; top: 52%;
  transform: translate(-50%, -45%);
  width: 0.95em; height: 1.4em;
  background: #f4b3bf;
  border-radius: 50% 50% 32% 32% / 72% 72% 28% 28%;
}
.ear-l { left: 0.5em;  transform: rotate(-16deg); }
.ear-r { left: 3.1em;  transform: rotate(16deg); }
/* rabo levantado, balançando atrás do corpo */
.cat-tail {
  position: absolute;
  left: 10.6em; top: 0.5em;
  width: 1.7em; height: 4.9em;
  background: #fbfbf8;
  border-radius: 1.1em 1.1em 1.5em 0.6em;
  transform-origin: bottom center;
  animation: catTail 0.5s ease-in-out infinite;
}
/* pernas — pivô no quadril; arrastam para trás (sentido do giro) e levantam */
.leg {
  position: absolute;
  top: 6.9em;
  width: 1.8em; height: 2.6em;
  background: #fbfbf8;
  border-radius: 0.9em 0.9em 0.7em 0.7em;
  transform-origin: top center;
}
.leg::after {
  content: '';
  position: absolute; bottom: -0.05em; left: -0.12em;
  width: 2.05em; height: 1em;
  background: inherit;
  border-radius: 50%;
}
.leg-fn { left: 3.9em;  animation: legWalk 0.5s linear infinite; }
.leg-bf { left: 9.4em;  background: #e8e8e1; animation: legWalk 0.5s linear infinite; }
.leg-ff { left: 5.0em;  background: #e8e8e1; animation: legWalk 0.5s linear infinite; animation-delay: -0.25s; }
.leg-bn { left: 8.3em;  animation: legWalk 0.5s linear infinite; animation-delay: -0.25s; }

/* contato: arrasta para trás (linear, junto com a superfície do cookie);
   recuperação: levanta a patinha (scaleY) e volta à frente */
@keyframes legWalk {
  0%   { transform: rotate(17deg) scaleY(1);     animation-timing-function: linear; }
  52%  { transform: rotate(-19deg) scaleY(1);    animation-timing-function: ease-out; }
  60%  { transform: rotate(-19deg) scaleY(0.78); animation-timing-function: ease-in-out; }
  82%  { transform: rotate(8deg) scaleY(0.8);    animation-timing-function: ease-in; }
  100% { transform: rotate(17deg) scaleY(1); }
}
@keyframes catBodyBob {
  0%,100% { transform: translateY(0.16em); }   /* baixo na pisada */
  50%     { transform: translateY(-0.15em); }  /* alto no meio do passo */
}
@keyframes catTail {
  0%,100% { transform: rotate(11deg); }
  50%     { transform: rotate(25deg); }
}

/* Sombra de contato — assenta o gato na superfície do cookie, reage à pisada */
.cat-contact-shadow {
  position: absolute;
  bottom: calc(100% - 13px);
  left: 50%;
  width: clamp(24px, 2.7vw, 39px);
  height: clamp(4px, 0.45vw, 6px);
  background: radial-gradient(ellipse at center, rgba(0,0,0,.5) 0%, rgba(0,0,0,.26) 40%, rgba(0,0,0,.08) 64%, transparent 78%);
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
  filter: blur(1.3px);
  transform: translateX(-50%);
  animation: catShadowPulse 0.25s ease-in-out infinite;
}
@keyframes catShadowPulse {
  0%,100% { transform: translateX(-50%) scale(1.06, 1);   opacity: .85; }
  50%     { transform: translateX(-50%) scale(0.82, 0.9); opacity: .52; }
}
@media (prefers-reduced-motion: reduce) {
  .cat-bob, .cat-tail, .leg, .cat-contact-shadow, .cookie-spin { animation: none; }
}

/* ── Strip ── */
.strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 15px 0; overflow: hidden; background: var(--cream);
}
.strip-track {
  display: flex; gap: 44px; white-space: nowrap;
  animation: scroll 42s linear infinite; align-items: center;
}
.strip-item { font-family: var(--display); font-size: clamp(17px, 1.8vw, 24px); color: var(--choc); }
.strip-sep  { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--wood); flex-shrink: 0; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ── História ── */
.story-grid {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.9fr);
  gap: clamp(32px, 5vw, 80px); align-items: start;
}
@media (max-width: 840px) { .story-grid { grid-template-columns: 1fr; } }
.story-portraits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: sticky; top: 96px; }
.portrait { position: relative; aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden; background: var(--bg-sec); }
.portrait image-slot { width: 100%; height: 100%; display: block; }
.portrait .label {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(251,247,240,.94); padding: 4px 11px; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--choc); z-index: 2;
}
.portrait:first-child { transform: translateY(18px); }
.hazel {
  margin-top: 52px; padding: 28px; background: var(--cream);
  border-radius: var(--r-lg); border: 1px solid var(--line);
  display: grid; grid-template-columns: 170px 1fr; gap: 26px; align-items: start;
}
@media (max-width: 660px) { .hazel { grid-template-columns: 1fr; } }
.hazel-photo { aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--bg-sec); border: 5px solid var(--paper); position: relative; }
.hazel-photo image-slot { width: 100%; height: 100%; display: block; }
.hazel h3 { font-family: var(--display); margin: 10px 0 10px; color: var(--choc); }

/* ── Diferenciais ── */
.diff { background: var(--bg-sec); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.diff-intro { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(0,1fr); gap: clamp(32px, 5vw, 72px); margin-bottom: 52px; align-items: end; }
@media (max-width: 840px) { .diff-intro { grid-template-columns: 1fr; align-items: start; } }

/* Cards em grade */
.diff-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
@media (max-width: 860px) { .diff-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .diff-cards { grid-template-columns: 1fr; } }
.diff-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: 0 20px 52px -26px rgba(44,26,14,.36); }
.diff-card-photo { aspect-ratio: 4/3; background: var(--cream); overflow: hidden; }
.diff-card-photo image-slot { width: 100%; height: 100%; display: block; }
.diff-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.diff-card-num { font-family: var(--body); font-weight: 700; font-size: 11px; letter-spacing: .16em; color: var(--wood-deep); }
.diff-card-title { font-family: var(--display); font-size: clamp(21px, 2.1vw, 27px); line-height: 1.06; color: var(--choc); }
.diff-card-txt { font-size: 14.5px; font-weight: 400; color: var(--muted); line-height: 1.65; text-wrap: pretty; }

/* ── Produtos ── */
.prod-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.prod-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; max-width: 1140px; margin: 0 auto; justify-content: center; }
.prod-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 20px 52px -26px rgba(44,26,14,.36); }
@media (max-width: 940px) { .prod-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .prod-grid { grid-template-columns: 1fr; } }

/* Carousel */
.carousel { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-sec); }
.car-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .55s ease; }
.car-slide.active { opacity: 1; }
.car-slide image-slot { width: 100%; height: 100%; display: block; }
.car-tag {
  position: absolute; top: 11px; left: 11px; z-index: 4;
  background: rgba(251,247,240,.95); padding: 4px 11px; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--choc);
}
.car-tag.holiday { background: var(--wood-deep); color: #F5E8D0; }
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; background: rgba(251,247,240,.88); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px; color: var(--choc); line-height: 1;
  transition: background .2s, transform .2s;
}
.car-btn:hover { background: var(--paper); transform: translateY(-50%) scale(1.08); }
.car-prev { left: 8px; }
.car-next { right: 8px; }
.car-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 5px;
}
.car-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(251,247,240,.55); border: none; cursor: pointer; padding: 0;
  transition: background .25s, transform .25s;
}
.car-dot.active { background: var(--paper); transform: scale(1.25); }

.prod-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.prod-row  { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.prod-name { font-family: var(--display); font-size: clamp(20px, 1.9vw, 26px); line-height: 1.1; color: var(--choc); }
.prod-num  { font-family: var(--body); font-weight: 600; font-size: 10.5px; letter-spacing: .14em; color: var(--muted); flex-shrink: 0; }
.prod-desc { font-size: 14px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.prod-cta  { text-align: center; margin-top: 44px; }

/* ── Bento imersivo de produtos ── */
.prod-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(180px, 21vw, 240px);
  gap: 14px;
}
.pb-trad    { grid-column: span 7; grid-row: span 2; }
.pb-double  { grid-column: span 5; }
.pb-oat     { grid-column: span 5; }
.pb-ginger  { grid-column: span 6; }
.pb-brownie { grid-column: span 6; }
@media (max-width: 860px) {
  .prod-bento { grid-auto-rows: clamp(190px, 32vw, 250px); }
  .pb-trad   { grid-column: span 12; grid-row: span 1; }
  .pb-double, .pb-oat, .pb-ginger, .pb-brownie { grid-column: span 6; }
}
@media (max-width: 520px) {
  .pb-trad, .pb-double, .pb-oat, .pb-ginger, .pb-brownie { grid-column: span 12; }
}

.pcard {
  position: relative; overflow: hidden;
  border-radius: 20px; cursor: pointer;
  background: var(--bg-sec);
  box-shadow: 0 16px 44px -26px rgba(44,26,14,.55);
  isolation: isolate;
}
.pcard-img { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.pcard-img.active { opacity: 1; }
.pcard-img img, .pcard-img image-slot {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.1s cubic-bezier(.2,.6,.2,1);
}
.pcard:hover .pcard-img.active img { transform: scale(1.07); }
.pcard-grad {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(26,15,7,.92) 0%, rgba(26,15,7,.55) 32%, rgba(26,15,7,.05) 60%, transparent 80%);
}
.pcard-tag {
  position: absolute; top: 15px; left: 15px; z-index: 3;
  background: rgba(251,247,240,.95); padding: 5px 12px; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: 10px;
  letter-spacing: .15em; text-transform: uppercase; color: var(--choc);
}
.pcard-tag.holiday { background: var(--wood-deep); color: #F5E8D0; }
.pcard-dots {
  position: absolute; top: 17px; right: 16px; z-index: 3;
  display: flex; gap: 5px;
}
.pcard-dot {
  width: 6px; height: 6px; border-radius: 50%; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.45); border: none; transition: background .25s, transform .25s;
}
.pcard-dot.active { background: #fff; transform: scale(1.35); }
.pcard-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(18px, 2vw, 26px) clamp(18px, 2vw, 26px) clamp(18px, 2vw, 24px);
  color: #fff;
}
.pcard-num {
  font-family: var(--body); font-weight: 600; font-size: 10px;
  letter-spacing: .16em; color: rgba(255,255,255,.7); display: block; margin-bottom: 7px;
}
.pcard-name {
  font-family: var(--display); line-height: 1.02; color: #fff;
  font-size: clamp(21px, 2vw, 30px);
}
.pb-trad .pcard-name { font-size: clamp(26px, 3vw, 42px); }
.pcard-desc {
  font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.88);
  text-wrap: pretty; margin-top: 0;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s ease, opacity .4s ease, margin-top .5s ease;
}
.pcard:hover .pcard-desc { max-height: 160px; opacity: 1; margin-top: 9px; }
@media (hover: none) {
  .pcard-desc { max-height: 160px; opacity: 1; margin-top: 9px; }
}

/* ── Parceiros ── */
.part { background: var(--choc); color: var(--paper); }
.part .eyebrow { color: var(--wood-soft); }
.part .disp { color: var(--paper); }
.part .lead { color: rgba(251,247,240,.80); }
.part-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
@media (max-width: 840px) { .part-grid { grid-template-columns: 1fr; } }
.part-uses { list-style: none; display: flex; flex-direction: column; margin-top: 24px; }
.part-uses li { display: grid; grid-template-columns: 124px 1fr; gap: 0 22px; padding: 16px 0; border-top: 1px solid rgba(251,247,240,.12); align-items: start; }
.part-uses li:last-child { border-bottom: 1px solid rgba(251,247,240,.12); }
.part-uses .k { font-family: var(--body); font-weight: 700; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--wood-soft); white-space: nowrap; padding-top: 3px; }
.part-uses .v { font-size: 15px; line-height: 1.55; color: rgba(251,247,240,.85); text-wrap: pretty; }
@media (max-width: 480px) { .part-uses li { grid-template-columns: 1fr; gap: 5px; } }
.partner-logos { margin-top: 32px; }
.partner-logos .eyebrow { margin-bottom: 16px; display: inline-flex; }
.logos-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
@media (max-width: 420px) { .logos-row { grid-template-columns: 1fr 1fr; } }
.logo-card {
  background: #FBF7F0;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--r);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: center;
  height: 94px;
  box-shadow: 0 10px 26px -16px rgba(0,0,0,.5);
}
.logo-card img { max-width: 100%; max-height: 54px; object-fit: contain; }

/* ── FAQ (GEO) ── */
.faq { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-grid {
  display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
  gap: clamp(32px, 5vw, 80px); align-items: start;
}
@media (max-width: 840px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-head { position: sticky; top: 108px; }
@media (max-width: 840px) { .faq-head { position: static; } }
.faq-list { border-top: 1px solid var(--line-s); }
.faq-item { border-bottom: 1px solid var(--line-s); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 2px; font-family: var(--body); color: var(--choc);
}
.faq-q-txt {
  font-weight: 600; font-size: clamp(15.5px, 1.4vw, 18.5px);
  line-height: 1.4; color: var(--choc); transition: color .2s; text-wrap: pretty;
}
.faq-q:hover .faq-q-txt { color: var(--wood-deep); }
.faq-ico { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-ico::before, .faq-ico::after {
  content: ''; position: absolute; background: var(--wood-deep);
  border-radius: 2px; transition: transform .3s ease, opacity .3s ease;
}
.faq-ico::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-ico::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.open .faq-ico::after { transform: scaleY(0); opacity: 0; }
.faq-a-inner { overflow: hidden; max-height: 0; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-a-inner { max-height: 460px; }
.faq-a p {
  font-size: 15px; line-height: 1.72; color: var(--muted);
  max-width: 62ch; padding: 0 2px 24px; text-wrap: pretty;
}
@media (prefers-reduced-motion: reduce) {
  .faq-a-inner { transition: none; }
}

/* ── Footer ── */
.footer { background: var(--choc); color: var(--cream); padding-top: clamp(64px, 7vw, 116px); padding-bottom: 36px; position: relative; overflow: hidden; }
.footer-cta {
  background: linear-gradient(135deg, var(--wood-deep), var(--wood));
  border: none;
  border-radius: var(--r-lg); padding: clamp(30px, 4vw, 58px);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center;
  margin-bottom: 56px;
  box-shadow: 0 28px 64px -28px rgba(0,0,0,.55);
}
.footer-cta .eyebrow { color: #F6DCBA; }
.footer-cta .disp { color: #fff; }
.footer-cta .lead { color: rgba(255,255,255,.92); }
@media (max-width: 840px) { .footer-cta { grid-template-columns: 1fr; } }
.footer-cta-right { display: flex; flex-direction: column; gap: 16px; }

/* New balanced footer layout */
.foot-main {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.7fr;
  gap: clamp(32px, 5vw, 72px);
  padding-top: 52px;
  border-top: 1px solid rgba(255,255,255,.12);
  align-items: start;
}
@media (max-width: 900px) { .foot-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-main { grid-template-columns: 1fr; } }
.foot-brand { display: flex; flex-direction: column; gap: 18px; }
.foot-logo { width: 144px; height: auto; }
.foot-slogan { font-family: var(--display); font-size: clamp(20px, 2.2vw, 28px); line-height: 1.08; color: #fff; margin: 0; }
.foot-links { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 900px) { .foot-locale { grid-column: 1 / -1; } }
.foot-col h4 { font-family: var(--body); font-weight: 700; font-size: 10.5px; letter-spacing: .20em; text-transform: uppercase; color: var(--wood-soft); margin-bottom: 14px; }
.foot-col a  { display: block; font-size: 14px; color: rgba(255,255,255,.78); margin-bottom: 9px; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-locale h4 { font-family: var(--body); font-weight: 700; font-size: 10.5px; letter-spacing: .20em; text-transform: uppercase; color: var(--wood-soft); margin-bottom: 12px; }
.foot-addr-lg { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; margin: 0 0 16px; }
.foot-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-family: var(--body); font-weight: 500; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.foot-made { letter-spacing: .06em; }
.social-row { display: flex; gap: 8px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; color: #fff; transition: background .2s, border-color .2s; }
.social-row a:hover { background: var(--wood); border-color: var(--wood); color: #fff; }

/* Leaflet map — framed & rounded */
.leaflet-container {
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 14px 36px -16px rgba(0,0,0,.6);
  font-family: var(--body) !important;
}
.leaflet-popup-content-wrapper { border-radius: 10px; }
.leaflet-popup-content { font-family: var(--body); font-size: 12.5px; line-height: 1.5; color: var(--choc); }
.leaflet-control-zoom a { color: var(--wood-deep) !important; }

/* WhatsApp FAB */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: #1FAE5A; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px -6px rgba(31,174,90,.55);
  transition: transform .25s, opacity .3s;
  opacity: 0; visibility: hidden;
  transform: scale(0.6) translateY(10px);
  pointer-events: none;
}
.wa-fab.is-visible {
  opacity: 1; visibility: visible;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab::after {
  content: ''; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid #1FAE5A; animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0%{transform:scale(.85);opacity:.8} 100%{transform:scale(1.4);opacity:0} }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ────────────────────────────────────────────
   AMERICAN DETAILS
──────────────────────────────────────────── */

/* Crossed flags accent in the História block */
.us-flags-accent { display: block; width: 70px; height: auto; margin-bottom: 16px; }

/* Star sunglasses on Hazel */
.us-hazel-glasses {
  position: absolute; top: 30%; left: 50%; width: 58%;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 3; pointer-events: none;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.25));
}

/* Star bunting divider under Produtos heading */
.us-bunting-divider { display: block; width: clamp(150px, 22vw, 220px); height: auto; margin-top: 18px; }

/* Colored star bunting draped across top of footer */
.us-bunting-footer {
  position: absolute; top: 0; left: 0; right: 0; height: 42px;
  background: url('bunting.svg') repeat-x top center;
  background-size: auto 42px; pointer-events: none; opacity: .85;
}


