/* =========================================================================
   GOTA NATIVA — SISTEMA DE DESIGN + BASE (Fase 0)
   Todos os valores de cor/espaço/tipo vêm dos tokens em :root.
   Não usar hex/medidas soltas no meio do código — sempre via var().
   ========================================================================= */

:root {
  /* ---- Paleta da marca ---- */
  --oliva:        #4A5B3A;  /* verde oliva profundo — títulos, faixas escuras */
  --salvia:       #8FA17D;  /* verde sálvia — apoio, botânico */
  --ouro:         #D4AF37;  /* ouro natural — destaque, CTAs */
  --creme:        #F7F4EC;  /* creme suave — fundo principal */
  --bege:         #E7DBC4;  /* bege terroso — seção alternada, cards */

  /* ---- Derivadas (contraste e profundidade) ---- */
  --tinta:        #2E3A22;  /* texto corrido (AA sobre creme) */
  --oliva-esc:    #3A4A2E;  /* hover de faixas/realces; texto sobre ouro */
  --ouro-esc:     #B8932B;  /* hover de botões dourados; foco */
  --salvia-txt:   #677A50;  /* eyebrows/labels pequenos com contraste */
  --creme-cl:     #FCFAF4;  /* superfícies claras */
  --branco:       #FFFDF8;  /* cards brancos quentes */
  --linha:        rgba(74, 91, 58, .14);            /* fios/hairlines */
  --sombra:       0 18px 50px -24px rgba(58, 74, 46, .40);
  --sombra-sm:    0 8px 24px -16px rgba(58, 74, 46, .45);

  /* ---- Tipografia ---- */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* ---- Espaçamento, raio, grid ---- */
  --container: 1180px;
  --pad-x: clamp(20px, 5vw, 48px);
  --sec-y: clamp(64px, 9vw, 118px);   /* padding vertical de seção */
  --r: 18px;                          /* raio padrão (cards, faixas) */
  --r-sm: 12px;                       /* raio pequeno (botões, pills) */
  --gap: clamp(20px, 3vw, 36px);
}

/* =========================================================================
   RESET LEVE
   ========================================================================= */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--tinta);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

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

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

h1, h2, h3, h4 { margin: 0; }

/* =========================================================================
   TIPOGRAFIA BASE
   ========================================================================= */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--oliva);
  line-height: 1.1;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin: 0 0 1em; }

/* Eyebrow / rótulo pequeno em caixa alta */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--salvia-txt);
}

/* Lead / subtítulo */
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: var(--tinta);
}

/* Caption / disclaimer */
.caption { font-size: .8rem; opacity: .7; }

/* =========================================================================
   LAYOUT — container e seção
   (uma classe utilitária para padding vertical; não sobrescrever por elemento)
   ========================================================================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--sec-y); }

/* =========================================================================
   ACESSIBILIDADE — foco visível
   ========================================================================= */

:focus-visible {
  outline: 2px solid var(--ouro-esc);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Remove o outline padrão só quando há :focus-visible suportado */
:focus:not(:focus-visible) { outline: none; }

/* Link "pular para o conteúdo" (acessibilidade de teclado) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--oliva);
  color: var(--creme);
  padding: 12px 18px;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* =========================================================================
   MOVIMENTO REDUZIDO — obrigatório
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================================
   BOTÕES
   ========================================================================= */

.btn,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 26px;
  min-height: 44px;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

/* Primário — ouro com texto escuro (contraste AA) */
.btn {
  background: var(--ouro);
  color: var(--oliva-esc);
}
.btn:hover { background: var(--ouro-esc); transform: translateY(-2px); box-shadow: var(--sombra-sm); }
.btn:active { transform: translateY(0); }

/* Secundário (ghost) */
.btn-ghost {
  background: transparent;
  border-color: var(--oliva);
  color: var(--oliva);
}
.btn-ghost:hover { background: rgba(74, 91, 58, .06); transform: translateY(-2px); }

/* Botão de ícone (WhatsApp no header) */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--oliva);
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}
.icon-btn:hover { background: rgba(74, 91, 58, .08); }

/* =========================================================================
   BARRA DE AVISO
   ========================================================================= */

.topbar {
  background: var(--oliva);
  color: var(--creme);
  font-size: .82rem;
  letter-spacing: .02em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  flex-wrap: wrap;
  padding-block: 8px;
  text-align: center;
}
.topbar__dot { opacity: .55; }

/* =========================================================================
   CABEÇALHO
   ========================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 236, .88);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--linha);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--sombra-sm); background: rgba(247, 244, 236, .96); }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--gap);
  min-height: 72px;
}

/* Marca */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand__mark { width: 44px; height: 44px; border-radius: 50%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--oliva); }
.brand__eyebrow {
  font-size: .62rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .26em; color: var(--salvia-txt);
}

/* Navegação */
.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__link {
  position: relative;
  font-weight: 600;
  font-size: .95rem;
  color: var(--tinta);
  text-decoration: none;
  padding: 6px 2px;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--ouro);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav__link:hover::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 10px; }
.btn--header { padding: 10px 18px; min-height: 40px; font-size: .92rem; }

/* Botão hambúrguer (só no mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--linha);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 22px; height: 2px;
  margin-inline: auto;
  background: var(--oliva);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */

.hero { padding-block: clamp(40px, 7vw, 88px); }
.hero__inner {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__lead { max-width: 46ch; margin-bottom: 1.6em; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2em; }

/* Linha de confiança */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 34px);
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--oliva);
}
.trust__icon { width: 22px; height: 22px; color: var(--salvia); flex: none; }

/* Cartão-assinatura do hero */
.hero__visual { display: flex; justify-content: center; }
.hero__card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bege);
  border-radius: var(--r);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--sombra);
  overflow: hidden;
}
.hero__card::before {
  /* broto botânico em fio fino, discreto, no canto */
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid var(--linha);
  opacity: .8;
}
/* Ramo botânico em fio fino, atrás do frasco (P2.2) */
.hero__sprig {
  position: absolute;
  right: -8px;
  bottom: -12px;
  width: clamp(96px, 16vw, 150px);
  height: auto;
  color: var(--salvia);
  opacity: .38;
  pointer-events: none;
}
.hero__bottle { position: relative; z-index: 1; margin-inline: auto; max-width: 320px; }
.hero__bottle svg { width: 100%; height: auto; }
.hero__bottle img {
  width: 100%;
  height: auto;
  border-radius: var(--r-sm);
  filter: drop-shadow(0 22px 30px rgba(58, 74, 46, .28));
}

/* =========================================================================
   RODAPÉ
   ========================================================================= */

.site-footer {
  background: var(--oliva);
  color: var(--creme);
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: 28px;
}
.site-footer__inner {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(247, 244, 236, .16);
}
/* Wordmark do rodapé (texto + gota) — legível sobre o fundo oliva */
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand__mark { width: 52px; height: 52px; flex: none; }
.footer-brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.footer-brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.9rem; color: var(--creme); }
.footer-brand__eyebrow {
  font-size: .68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .26em; color: var(--ouro);
}
.site-footer__tagline { font-family: var(--serif); font-size: 1.35rem; max-width: 22ch; margin: 0; color: var(--creme); }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.site-footer__nav a {
  color: var(--creme);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  opacity: .9;
}
.site-footer__nav a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.site-footer__legal { padding-top: 24px; }
.site-footer__legal .caption { color: var(--creme); opacity: .72; margin-bottom: .4em; }

/* =========================================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================================= */

.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--sombra-sm);
  transition: transform .18s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }

/* =========================================================================
   RESPONSIVO
   ========================================================================= */

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
  .site-footer__inner { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 899px) {
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 88px var(--pad-x) 28px;
    background: var(--creme-cl);
    box-shadow: var(--sombra);
    transform: translateY(-110%);
    transition: transform .3s ease;
    z-index: 95;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { font-size: 1.2rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--linha); }
  .nav__link::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .btn--header { display: none; }
}

@media (max-width: 560px) {
  .brand__eyebrow { display: none; }
  .brand__name { font-size: 1.3rem; }
}

/* =========================================================================
   CABEÇALHO DE SEÇÃO (eyebrow + título + lead, centralizado)
   ========================================================================= */

.section__head { text-align: center; max-width: 60ch; margin-inline: auto; margin-bottom: clamp(32px, 5vw, 56px); }
.section__head .eyebrow { display: block; margin-bottom: .8em; }
.section__head h2 { margin-bottom: .4em; }
.section__lead { margin: 0 auto; }

/* Divisor-assinatura (gota entre dois fios) */
.divider { display: flex; align-items: center; gap: 16px; max-width: 280px; margin: 0 auto 1.6em; }
.divider::before, .divider::after { content: ""; height: 1px; flex: 1; background: var(--linha); }
.divider svg { width: 20px; height: 24px; color: var(--salvia); flex: none; }

/* =========================================================================
   CATÁLOGO — filtros, grade, cards
   ========================================================================= */

.catalog { background: var(--bege); }

/* Pills de filtro */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.pill {
  padding: 9px 20px;
  min-height: 44px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--linha);
  background: var(--creme-cl);
  color: var(--oliva);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.pill:hover { border-color: var(--salvia); }
.pill.is-active { background: var(--oliva); color: var(--creme); border-color: var(--oliva); }

/* Grade */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--gap);
}

/* Card de produto */
.card {
  display: flex;
  flex-direction: column;
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sombra-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sombra); }

/* Área visual (fundo em tom claro do hue + foto/frasco) */
.card__visual {
  position: relative;
  padding: 18px;
}
/* Proporção uniforme 1:1 (combina com as fotos SVG quadradas, frasco com
   fundo transparente). object-fit: contain nunca corta. Painel claro
   padroniza o fundo (P2.4). */
.card__media {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: var(--branco);
  border-radius: var(--r-sm);
  box-shadow: inset 0 0 0 1px var(--linha);
  overflow: hidden;
}
.card__media img,
.card__media svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Selos (tag / destaque) */
.card__badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 6px; }
.badge {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--oliva);
  color: var(--creme);
}
.badge--star { background: var(--ouro); color: var(--oliva-esc); }

/* Corpo do card */
.card__body { display: flex; flex-direction: column; flex: 1; padding: 6px 22px 22px; }
.card__cats { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--salvia-txt); font-weight: 600; margin-bottom: 4px; }
.card__name { margin-bottom: .25em; }
.card__resumo { font-size: .95rem; margin-bottom: 14px; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.chip {
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(74, 91, 58, .08);
  color: var(--oliva);
}

/* Preço */
.price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; margin-bottom: 16px; }
.price__de { font-size: .9rem; color: var(--salvia-txt); text-decoration: line-through; }
.price__now { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; color: var(--oliva); }

/* Teaser de kit promocional (linha discreta acima das ações) */
.card__kit {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
  font-size: .92rem;
}
.card__kit-label {
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--salvia-txt);
}
.card__kit-price { font-weight: 700; color: var(--oliva); }

/* Ações */
.card__actions { display: flex; flex-direction: column; gap: 8px; }
.card__actions .btn { width: 100%; }
.btn--sm { padding: 9px 18px; min-height: 40px; font-size: .9rem; width: 100%; }
.link-more {
  align-self: center;
  font-weight: 600;
  font-size: .88rem;
  color: var(--salvia-txt);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .18s ease, color .18s ease;
}
.link-more:hover { color: var(--oliva); border-color: var(--ouro); }

/* Card do KIT (destaque, ocupa 2 colunas no desktop) */
.card--kit { background: var(--bege); border: 1.5px solid var(--ouro); }
.card--kit .card__name { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.card--kit .price__now { color: var(--ouro-esc); }
.card--kit .kit-list { display: grid; gap: 8px; margin: 6px 0 18px; }
.card--kit .kit-list li { position: relative; padding-left: 26px; font-size: .95rem; }
.card--kit .kit-list li::before {
  content: "";
  position: absolute; left: 0; top: .35em;
  width: 14px; height: 14px;
  background: var(--ouro);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.card--kit .card__note { font-size: .82rem; color: var(--salvia-txt); margin-top: 12px; }

@media (min-width: 760px) {
  .card--kit { grid-column: span 2; }
  .card--kit .card__inner { display: grid; grid-template-columns: 240px 1fr; align-items: center; }
  .card--kit .card__visual { min-height: 100%; }
}

/* Estado vazio */
.catalog__empty {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--salvia-txt);
  padding: 40px 0;
}

/* =========================================================================
   PRODUTO-ÂNCORA — RITUAL NOTURNO
   ========================================================================= */

/* 4 pilares */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: clamp(48px, 7vw, 80px);
}
.pillar {
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: center;
}
.pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(74, 91, 58, .08);
  color: var(--oliva);
}
.pillar__icon svg { width: 28px; height: 28px; }
.pillar__title { font-size: 1.3rem; margin-bottom: .35em; }
.pillar p { font-size: .95rem; margin: 0; }

/* Ritual em 3 passos */
.steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 26px 26px;
  background: var(--bege);
  border-radius: var(--r);
}
.step__num {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--ouro-esc);
  margin-bottom: .2em;
}
.step__title { font-size: 1.35rem; margin-bottom: .3em; }
.step p { margin: 0; font-size: .95rem; }

/* Por que 90 dias + reforço de oferta */
.ritual__offer {
  display: grid;
  gap: var(--gap);
  margin-top: clamp(40px, 6vw, 72px);
  align-items: stretch;
}
.note90 {
  background: var(--oliva);
  color: var(--creme);
  border-radius: var(--r);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.note90__title { color: var(--creme); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .3em; }
.note90 p { margin: 0; opacity: .92; }

.offer-cta {
  background: var(--branco);
  border: 1.5px solid var(--ouro);
  border-radius: var(--r);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  box-shadow: var(--sombra-sm);
}
.offer-cta__seal {
  display: inline-block;
  background: var(--ouro);
  color: var(--oliva-esc);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.offer-cta__lead { font-family: var(--serif); font-size: 1.4rem; color: var(--oliva); margin-bottom: .5em; }
.offer-cta__price { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 18px; }
.offer-cta__price .price__now { color: var(--ouro-esc); }
.offer-cta .btn { width: 100%; margin-bottom: 12px; }

@media (min-width: 760px) {
  .ritual__offer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 759px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .steps__list { grid-template-columns: 1fr; }
}

/* =========================================================================
   FAIXA ESSÊNCIA
   ========================================================================= */

.essence { background: var(--creme-cl); border-block: 1px solid var(--linha); }
.essence__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 5vw, 64px);
  padding-block: clamp(24px, 4vw, 40px);
}
.essence__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--oliva);
}
.essence__item svg { width: 26px; height: 26px; color: var(--salvia); flex: none; }

/* =========================================================================
   FAIXA DE FACILIDADES DE COMPRA (frete, parcelas, pagamento, garantia MP)
   ========================================================================= */

.perks { background: var(--creme-cl); border-block: 1px solid var(--linha); }
.perks__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 32px);
  padding-block: clamp(22px, 3.5vw, 34px);
}
.perk { display: flex; align-items: center; gap: 12px; }
.perk__icon { width: 30px; height: 30px; color: var(--ouro-esc); flex: none; }
.perk strong { display: block; font-weight: 700; color: var(--oliva); font-size: .98rem; line-height: 1.2; }
.perk span { display: block; font-size: .82rem; color: var(--tinta); opacity: .8; }

@media (max-width: 860px) { .perks__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .perks__list { grid-template-columns: 1fr; } }

/* =========================================================================
   DEPOIMENTOS
   ========================================================================= */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}
.testi {
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: var(--r);
  padding: 28px 26px;
  box-shadow: var(--sombra-sm);
  display: flex;
  flex-direction: column;
}
.stars { color: var(--ouro); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.testi__text { font-family: var(--serif); font-size: 1.3rem; line-height: 1.4; color: var(--tinta); margin-bottom: 18px; flex: 1; }
.testi__author { display: flex; align-items: center; gap: 12px; font-size: .92rem; }
.testi__author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.testi__author strong { color: var(--oliva); }
.testimonials__note { text-align: center; margin-top: clamp(24px, 4vw, 36px); }

/* =========================================================================
   GARANTIA (faixa de impacto)
   ========================================================================= */

.guarantee { position: relative; overflow: hidden; background: var(--oliva); color: var(--creme); padding-block: clamp(48px, 7vw, 80px); }
.band-sprig {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: clamp(160px, 22vw, 280px);
  height: auto;
  color: var(--creme);
  opacity: .12;
  pointer-events: none;
}
.guarantee__inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.guarantee__seal {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 2px solid var(--ouro);
  color: var(--ouro);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.1;
}
.guarantee__title { color: var(--creme); margin-bottom: .25em; }
.guarantee__text { margin: 0; max-width: 52ch; opacity: .92; }
.guarantee__text--mp { font-size: .95rem; opacity: .85; margin-top: .7em; }
.guarantee__text--mp strong { color: var(--ouro); }

@media (min-width: 700px) {
  .guarantee__inner { flex-wrap: nowrap; text-align: left; justify-content: flex-start; }
}

/* =========================================================================
   FAQ (accordion)
   ========================================================================= */

.faq__container { max-width: 820px; }
.acc-item { border-bottom: 1px solid var(--linha); }
.acc-item__h { margin: 0; }
.acc-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--oliva);
}
.acc-item__icon { position: relative; flex: none; width: 22px; height: 22px; }
.acc-item__icon::before,
.acc-item__icon::after {
  content: "";
  position: absolute;
  background: var(--ouro-esc);
  transition: transform .25s ease, opacity .25s ease;
}
.acc-item__icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.acc-item__icon::after  { top: 0; left: 10px; width: 2px; height: 22px; }
.acc-item__btn[aria-expanded="true"] .acc-item__icon::after { transform: scaleY(0); opacity: 0; }

.acc-item__panel { overflow: hidden; height: 0; transition: height .28s ease; }
.acc-item__inner { padding: 0 4px 22px; }
.acc-item__inner p { margin: 0; color: var(--tinta); }

/* =========================================================================
   CTA FINAL
   ========================================================================= */

.final-cta { background: var(--bege); text-align: center; }
.final-cta__inner { max-width: 56ch; margin-inline: auto; }
.final-cta h2 { margin-bottom: .3em; }
.final-cta .lead { margin-bottom: 1.6em; }

/* =========================================================================
   ÂNCORAS — compensar o cabeçalho fixo ao rolar para uma seção
   ========================================================================= */

#topo, #ritual, #catalogo, #faq, #sobre { scroll-margin-top: 92px; }

/* =========================================================================
   REVEAL ON SCROLL (aplicado via JS; desligado em reduced-motion)
   ========================================================================= */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
