/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta */
  --espresso:   #1A0D02;
  --bark:       #3D2010;
  --walnut:     #7B4F2A;
  --caramel:    #B87D4B;
  --honey:      #C9A34A;
  --honey-light:#E8C96A;
  --sage:       #5E7245;
  --sage-light: #8AAA72;
  --cream:      #FBF8F2;
  --oat:        #F2E8D6;
  --parchment:  #E5D5BB;
  --white:      #FFFFFF;
  --wa:         #25D366;
  --wa-dark:    #1da855;

  /* Tipografia */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  /* Espaçamentos */
  --section-py: clamp(72px, 8vw, 120px);
  --wrap:       1240px;
  --wrap-pad:   clamp(20px, 5vw, 48px);

  /* Misc */
  --radius:    18px;
  --radius-sm: 10px;
  --shadow:    0 4px 24px rgba(26,13,2,.08);
  --shadow-lg: 0 16px 56px rgba(26,13,2,.14);
  --t:         .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ============================================================
   UTILITÁRIOS
============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--honey-light); }
.eyebrow::before { content: '◆'; font-size: .5rem; }

.h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--espresso);
  text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--walnut); }
.h2--light { color: var(--cream); }
.h2--light em { color: var(--honey-light); }

.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-lead {
  margin-top: 12px;
  color: var(--walnut);
  font-size: .95rem;
}

/* ============================================================
   BOTÕES
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t);
  white-space: nowrap;
  line-height: 1;
  touch-action: manipulation;
  min-height: 44px;
}
.btn:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
}
.btn svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

.btn--wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
}
.btn--wa:hover {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251,248,242,.45);
}
.btn--ghost:hover {
  background: rgba(251,248,242,.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 18px; font-size: .82rem; }
.btn--sm svg { width: 15px; height: 15px; }
.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--xl { padding: 20px 48px; font-size: 1.1rem; }

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
.nav.scrolled {
  background: rgba(251,248,242,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26,13,2,.08);
}

.nav__wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--wrap-pad);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.nav__logo-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--honey);
  transition: border-color var(--t);
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav__brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
  transition: color var(--t);
}
.nav__brand-sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(251,248,242,.5);
  transition: color var(--t);
}
.nav.scrolled .nav__brand-name { color: var(--espresso); }
.nav.scrolled .nav__brand-sub { color: var(--caramel); }

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: .87rem;
  font-weight: 500;
  color: rgba(251,248,242,.75);
  transition: color var(--t);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav.scrolled .nav__links a { color: var(--walnut); }
.nav.scrolled .nav__links a:hover { color: var(--espresso); }

.nav__cta { flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  border-radius: 8px;
}
.nav__toggle:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 2px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--t);
}
.nav.scrolled .nav__toggle span { background: var(--espresso); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — layout split
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--espresso);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Grain texture */
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* Decorative circle accent */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,163,74,.08) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}

.hero__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--wrap);
  width: 100%;
  margin: 0 auto;
  padding: 120px var(--wrap-pad) 80px;
}

/* LEFT */
.hero__content { max-width: 560px; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--honey);
  animation: blink 2s infinite;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--honey);
  display: block;
}

.hero__lead {
  font-size: 1.05rem;
  color: rgba(251,248,242,.7);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(251,248,242,.75);
  font-size: .78rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.hero__badge span { font-size: .95rem; }

/* RIGHT */
.hero__visual { position: relative; }

.hero__frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(201,163,74,.25);
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(201,163,74,.1);
  transform: rotate(1.5deg);
  transition: transform .6s ease;
  aspect-ratio: 1;
}
.hero__frame:hover { transform: rotate(0deg); }

.hero__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__frame-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,13,2,.85));
  padding: 40px 24px 20px;
  display: flex;
  flex-direction: column;
  color: var(--cream);
  font-size: .8rem;
  font-weight: 500;
  gap: 2px;
}
.hero__frame-label strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--honey-light);
  font-style: italic;
}

/* Floating cards */
.hero__float {
  position: absolute;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--parchment);
  line-height: 1.2;
  min-width: 90px;
  text-align: center;
}
.hero__float strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--bark); }
.hero__float span { font-size: .68rem; font-weight: 500; color: var(--walnut); }
.hero__float--tl { top: -20px; left: -24px; }
.hero__float--br { bottom: 30px; right: -24px; }

/* Scroll arrow */
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(251,248,242,.35);
  animation: bounce 2.2s ease infinite;
  transition: color var(--t);
}
.hero__scroll:hover { color: rgba(251,248,242,.7); }
.hero__scroll svg { width: 28px; height: 28px; }

/* ============================================================
   TICKER
============================================================ */
.ticker {
  background: var(--bark);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,163,74,.2);
  border-bottom: 1px solid rgba(201,163,74,.2);
}
.ticker__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(251,248,242,.6);
}
.ticker__dot { color: var(--honey); font-size: .6rem; align-self: center; }

/* ============================================================
   HISTÓRIA
============================================================ */
.historia {
  padding: var(--section-py) 0;
  background: var(--white);
}
.historia__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}

.historia__img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  margin-bottom: 24px;
  border: 2px solid var(--parchment);
}
.historia__img-frame img { width: 100%; height: 100%; object-fit: cover; }

.historia__quote {
  background: var(--oat);
  border-left: 3px solid var(--honey);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.historia__quote p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bark);
  line-height: 1.6;
  margin-bottom: 8px;
}
.historia__quote cite { font-size: .8rem; color: var(--caramel); font-weight: 600; }

.historia__text-col p {
  color: var(--walnut);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .96rem;
}
.historia__text-col p strong { color: var(--bark); font-weight: 600; }

.historia__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--parchment);
  border-bottom: 1px solid var(--parchment);
}
.historia__stat { text-align: center; }
.historia__stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bark);
  line-height: 1;
  margin-bottom: 4px;
}
.historia__stat span { font-size: .75rem; color: var(--caramel); font-weight: 500; }

.historia__diferenciais { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.diferencial {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--oat);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--parchment);
  transition: transform var(--t), box-shadow var(--t);
}
.diferencial:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.diferencial span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.diferencial p { font-size: .83rem; color: var(--walnut); line-height: 1.5; }

/* ============================================================
   BENEFÍCIOS
============================================================ */
.beneficios {
  padding: var(--section-py) 0;
  background: var(--oat);
}
.beneficios__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}
.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.beneficio {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--parchment);
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
}
.beneficio:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.beneficio__icon { font-size: 2.6rem; margin-bottom: 16px; }
.beneficio h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 10px;
}
.beneficio p { font-size: .87rem; color: var(--walnut); line-height: 1.7; }

/* ============================================================
   CATÁLOGO
============================================================ */
.catalogo {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.catalogo__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}

/* Filtros */
.filtros {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filtro {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--parchment);
  background: transparent;
  color: var(--walnut);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--t);
  min-height: 44px;
  touch-action: manipulation;
}
.filtro:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 2px;
}
.filtro:hover { border-color: var(--caramel); color: var(--bark); }
.filtro.active { background: var(--bark); border-color: var(--bark); color: var(--cream); }

/* Grid */
.produtos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.produto {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--parchment);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.produto:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.produto.hidden { display: none; }

/* Produto destaque — ocupa 2 colunas na linha 1 */
.produto--destaque {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.produto--destaque .produto__img-wrap { aspect-ratio: unset; }
.produto--destaque .produto__body { padding: 32px; }

.produto__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--oat);
}
.produto__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.produto:hover .produto__img { transform: scale(1.05); }

/* Tags */
.produto__tag {
  position: absolute;
  top: 12px;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  line-height: 1.5;
}
.produto__tag--safe {
  left: 12px;
  background: var(--bark);
  color: var(--cream);
}
.produto__tag--hot {
  right: 12px;
  background: #e05c2a;
  color: var(--white);
}
.produto__tag--fav {
  right: 12px;
  background: var(--honey);
  color: var(--bark);
}
.produto__tag--esp {
  right: 12px;
  background: var(--sage);
  color: var(--white);
}

.produto__body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.produto__meta { margin-bottom: 6px; }
.produto__peso {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--caramel);
}
.produto__nome {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.produto--destaque .produto__nome { font-size: 1.7rem; }
.produto__desc {
  font-size: .87rem;
  color: var(--walnut);
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}

/* Ingredientes */
.produto__ing {
  margin-bottom: 18px;
  font-size: .8rem;
}
.produto__ing summary {
  color: var(--caramel);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
}
.produto__ing summary::after { content: '↓'; font-size: .75rem; transition: transform var(--t); }
.produto__ing[open] summary::after { transform: rotate(180deg); }
.produto__ing p { color: var(--walnut); line-height: 1.7; padding-top: 8px; }
.alergico {
  font-size: .76rem !important;
  color: var(--caramel) !important;
  font-weight: 600;
  margin-top: 6px;
}

/* Rodapé do produto */
.produto__rodape {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--oat);
  gap: 12px;
}
.produto__preco {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.produto__preco small { font-size: .8rem; font-weight: 400; }

/* ============================================================
   DEPOIMENTOS
============================================================ */
.depoimentos {
  padding: var(--section-py) 0;
  background: var(--oat);
}
.depoimentos__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.dep {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--parchment);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t);
}
.dep:hover { transform: translateY(-4px); }
.dep--destaque {
  background: var(--bark);
  border-color: var(--bark);
}
.dep__stars { color: var(--honey); font-size: 1rem; letter-spacing: 3px; }
.dep p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--walnut);
  line-height: 1.7;
  flex: 1;
}
.dep--destaque p { color: rgba(251,248,242,.8); }
.dep__autor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.dep__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--caramel);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.dep--destaque .dep__avatar { background: var(--honey); color: var(--bark); }
.dep__autor strong { display: block; font-size: .9rem; font-weight: 600; color: var(--espresso); }
.dep--destaque .dep__autor strong { color: var(--honey-light); }
.dep__autor span { font-size: .77rem; color: var(--caramel); }
.dep--destaque .dep__autor span { color: rgba(251,248,242,.55); }

.selos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.selo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.selo span { font-size: 2rem; }
.selo p { font-size: .8rem; font-weight: 600; color: var(--walnut); max-width: 100px; line-height: 1.4; }

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding: var(--section-py) 0;
  background: var(--white);
}
.faq__wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}
.faq__list { display: flex; flex-direction: column; gap: 8px; }

.faq__item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--parchment);
  background: var(--oat);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq__item[open] { border-color: var(--caramel); background: var(--white); }

.faq__item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--bark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--t);
}
.faq__item summary:hover { color: var(--walnut); }
.faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--honey);
  flex-shrink: 0;
  transition: transform var(--t);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item p {
  padding: 0 22px 18px;
  font-size: .88rem;
  color: var(--walnut);
  line-height: 1.75;
}

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--espresso) 0%, var(--bark) 60%, #2d4a1e 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(201,163,74,.07) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(94,114,69,.1) 0%, transparent 50%);
}
.cta-final__wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.cta-final__wrap .eyebrow { margin-bottom: 16px; }
.cta-final__wrap .h2 { margin-bottom: 20px; }
.cta-final__wrap > p {
  color: rgba(251,248,242,.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.cta-final__note {
  margin-top: 16px;
  font-size: .78rem;
  color: rgba(251,248,242,.4);
  letter-spacing: .06em;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--espresso);
  color: rgba(251,248,242,.7);
  padding: 72px 0 0;
}
.footer__wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad) 56px;
}
.footer__logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,163,74,.4);
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: .86rem;
  line-height: 1.75;
  color: rgba(251,248,242,.5);
  max-width: 260px;
  margin-bottom: 20px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), transform var(--t);
}
.footer__social a:hover { background: var(--honey); transform: scale(1.1); }
.footer__social a:hover svg { fill: var(--bark); }
.footer__social svg { width: 17px; height: 17px; fill: rgba(251,248,242,.6); transition: fill var(--t); }

.footer__col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col ul a {
  font-size: .85rem;
  color: rgba(251,248,242,.5);
  transition: color var(--t);
}
.footer__col ul a:hover { color: var(--honey); }
.footer__col p {
  font-size: .85rem;
  color: rgba(251,248,242,.5);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer__col p strong { color: rgba(251,248,242,.8); font-weight: 600; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px var(--wrap-pad);
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: .77rem;
  color: rgba(251,248,242,.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   FLOAT WHATSAPP
============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .88rem;
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  animation: pulseWa 3s infinite;
  transition: background var(--t), transform var(--t);
}
.float-wa svg { width: 20px; height: 20px; }
.float-wa:hover {
  background: var(--wa-dark);
  transform: scale(1.04);
  animation: none;
  box-shadow: 0 10px 36px rgba(37,211,102,.55);
}

/* ============================================================
   ANIMAÇÕES
============================================================ */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulseWa {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .88; transform: scale(1.03); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 1100px) {
  .produtos__grid { grid-template-columns: repeat(2, 1fr); }
  .produto--destaque { grid-column: span 2; }
}

@media (max-width: 960px) {
  .historia__wrap,
  .faq__wrap { grid-template-columns: 1fr; gap: 48px; }
  .historia__stats { grid-template-columns: repeat(2, 1fr); }
  .beneficios__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__wrap { grid-template-columns: 1fr 1fr; }
  .hero__wrap { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  .hero__content { max-width: 100%; }
  .hero__eyebrow { justify-content: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .hero__float--tl { top: 10px; left: 8px; }
  .hero__float--br { bottom: 20px; right: 8px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(251,248,242,.98);
    backdrop-filter: blur(16px);
    padding: 24px var(--wrap-pad);
    gap: 20px;
    box-shadow: var(--shadow-lg);
    overscroll-behavior: contain;
  }
  .nav__links.open a { color: var(--espresso); font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .depoimentos__grid { grid-template-columns: 1fr; }
  .historia__diferenciais { grid-template-columns: 1fr; }
  .selos { gap: 24px; }
  .footer__wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .float-wa span { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .ticker__track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* safe-area para notch / home indicator */
.nav__wrap { padding-top: max(18px, env(safe-area-inset-top)); }
.float-wa  { bottom: max(28px, env(safe-area-inset-bottom)); right: max(28px, env(safe-area-inset-right)); }

@media (max-width: 640px) {
  .produtos__grid { grid-template-columns: 1fr; }
  .produto--destaque { grid-column: span 1; display: flex; flex-direction: column; }
  .produto--destaque .produto__img-wrap { aspect-ratio: 4/3; }
  .beneficios__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .historia__stats { grid-template-columns: repeat(2, 1fr); }
}
