/* ============================================================
   Guia de Imunização para Gestantes — Dra. Michelli Rodrigues
   Identidade visual da LP: editorial premium, warm paper + sage,
   acolhedor e de alto valor percebido. Light theme.
   Fontes: Fraunces (display) + Outfit (body).
   ============================================================ */

:root {
  --paper:      #FBF8F3;   /* off-white papel, marca Michelli */
  --paper-2:    #F3EDE2;   /* warm para painéis */
  --ink:        #382A45;   /* eggplant escuro — texto principal */
  --ink-soft:   #5E5070;   /* lavanda acinzentada — texto secundário (AA em paper) */
  --brand:      #7B5E92;   /* roxo da marca — detalhes */
  --sage:       #6E9384;   /* eucalipto/sage — accent acolhedor (CTA) */
  --sage-deep:  #557567;   /* sage escuro — hover/realces */
  --line:       #DCCDB9;   /* champagne — fios finos */
  --shadow:     32px 40px 80px -42px rgba(56, 42, 69, .38);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

em { font-style: italic; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 88% 8%, #F0E9F1 0%, rgba(240,233,241,0) 55%),
    radial-gradient(90% 80% at 6% 96%, #E9F0EC 0%, rgba(233,240,236,0) 50%),
    var(--paper);
  overflow: hidden;
}

/* Grão de papel sutil — atmosfera, não cor chapada */
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .35;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  /* Asymmetric padding — composição editorial deslocada */
  padding: clamp(2.5rem, 6vh, 5rem) clamp(1.4rem, 5vw, 4rem)
           clamp(3rem, 7vh, 5.5rem) clamp(1.4rem, 7vw, 6rem);
}

/* ---- Conteúdo ---- */
.hero__kicker {
  display: flex; align-items: center; gap: .8rem;
  font-size: .82rem; letter-spacing: .04em;
  color: var(--ink-soft);
}
.hero__logo {
  width: 48px; height: 47px;
  border-radius: 50%;
  box-shadow: 0 4px 14px -6px rgba(56,42,69,.45);
}
.hero__kicker-text {
  display: flex; flex-direction: column;
  line-height: 1.4;
  font-size: .82rem;
  color: var(--ink-soft);
}
.hero__kicker-text b {
  font-weight: 600;
  color: var(--ink);
  font-size: .92rem;
  letter-spacing: .005em;
}

.hero__eyebrow {
  margin: clamp(1.6rem, 4vh, 2.4rem) 0 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 4.15rem);
  line-height: 1.05;
  letter-spacing: -.018em;
  color: var(--ink);
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--sage-deep);
  position: relative;
}
.hero__title em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: .08em;
  height: .06em; background: var(--line);
  transform: scaleX(0); transform-origin: left;
  animation: underline 1s cubic-bezier(.2,.7,.2,1) 1.1s forwards;
}

.hero__sub {
  margin-top: 1.5rem;
  max-width: 34ch;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-soft);
}

.hero__cta {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .55rem 1.4rem;
  margin-top: clamp(1.8rem, 4vh, 2.6rem);
}

.btn {
  --pad: 1.15rem 2.3rem;
  display: inline-flex; align-items: baseline; gap: .45rem;
  padding: var(--pad);
  background: var(--sage);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 999px;
  letter-spacing: .01em;
  box-shadow: 0 18px 34px -16px rgba(85,117,103,.7);
  transition: transform .25s cubic-bezier(.2,.7,.2,1),
              background .25s ease, box-shadow .25s ease;
}
.btn strong { font-weight: 600; }
.btn:hover {
  background: var(--sage-deep);
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -16px rgba(85,117,103,.78);
}

.hero__micro { font-size: .9rem; color: var(--ink-soft); }

.hero__trust {
  display: flex; align-items: center; gap: .9rem;
  margin-top: clamp(2rem, 5vh, 3rem);
  font-size: .85rem;
  letter-spacing: .02em;
  color: var(--ink-soft);
}
.hero__rule {
  width: clamp(34px, 6vw, 64px); height: 1px;
  background: var(--line); flex: none;
}

/* ---- Mídia: foto com máscara orgânica ---- */
.hero__media {
  position: relative;
  justify-self: center;
  width: min(100%, 460px);
  aspect-ratio: 1 / 1.2;
}

.hero__blob {
  position: absolute; inset: -8% -10% -4% -6%;
  background: radial-gradient(closest-side, #DCE9E1 0%, #E7DEEC 60%, rgba(231,222,236,0) 100%);
  filter: blur(8px);
  z-index: 0;
  animation: breathe 9s ease-in-out infinite;
}

.hero__photo {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  overflow: hidden;
  /* Imagem recortada — máscara orgânica, eco do logo aquarela */
  border-radius: 62% 38% 56% 44% / 54% 46% 54% 46%;
  box-shadow: var(--shadow);
  transform: rotate(-2.2deg);
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 18%;
  transform: rotate(2.2deg) scale(1.12);
}

.hero__ring {
  position: absolute; inset: 4% -7% -7% 4%;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 58% 42% 50% 50% / 50% 50% 50% 50%;
}

.hero__chip {
  position: absolute; z-index: 3;
  left: -1.4rem; bottom: 12%;
  background: var(--paper);
  color: var(--ink);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .03em;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 30px -18px rgba(56,42,69,.5);
  animation: float 6s ease-in-out infinite;
}

/* ===================== SEÇÃO 2 — PROBLEMA ===================== */
.problema {
  background: var(--paper);
  padding: clamp(4rem, 11vh, 8.5rem) clamp(1.4rem, 5vw, 4rem);
}
.problema__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;   /* split assimétrico 60/40 */
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.problema__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 2rem;
  max-width: 18ch;
  text-wrap: balance;
}
.problema__title span { color: var(--ink-soft); font-style: italic; }

.problema__text p {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  color: var(--ink-soft);
  max-width: 56ch;
}
.problema__text p + p { margin-top: 1.15rem; }

.problema__close {
  margin-top: 1.6rem !important;
  padding-left: 1.4rem;
  border-left: 2px solid var(--sage);
  color: var(--ink) !important;
  font-weight: 600;
}

/* ---- Painel de estatísticas — color blocking + mixed type ---- */
.statpanel {
  position: sticky; top: 2.5rem;
  background:
    linear-gradient(180deg, #EAF1ED 0%, #E4EDE8 100%);
  border: 1px solid #D6E3DB;
  border-radius: 26px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: 26px 30px 60px -42px rgba(85,117,103,.5);
}
.statpanel__head {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.6rem;
}

.stat { padding: 1.3rem 0; border-top: 1px solid #CFE0D6; }
.stat:first-of-type { border-top: 0; padding-top: 0; }

.stat__num {
  display: flex; align-items: baseline; gap: .32rem;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1;
}
.stat__num b {
  font-weight: 600;
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  font-variant-numeric: tabular-nums;
}
.stat__num i {
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--sage-deep);
}
.stat__label {
  margin-top: .55rem;
  font-size: .96rem;
  color: var(--ink-soft);
  max-width: 30ch;
}

.statpanel__src {
  margin-top: 1.8rem;
  font-size: .78rem;
  letter-spacing: .03em;
  color: var(--ink-soft);
}

/* ===================== ANIMAÇÕES ===================== */
@keyframes underline { to { transform: scaleX(1); } }
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.045); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* Reveal nativo (substitui o AOS) — só esconde quando o JS ativa .reveal-on,
   garantindo conteúdo visível sem JS e sem FOUC. Hero não tem data-aos. */
.reveal-on [data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal-on [data-aos].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__blob, .hero__chip, .hero__title em::after { animation: none; }
  .reveal-on [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: clamp(1.5rem, 5vw, 2.25rem);
    padding: clamp(1.8rem, 5vh, 2.6rem) 1.4rem clamp(3rem, 9vh, 4rem);
    text-align: left;
  }
  .hero__content { order: 0; }
  .hero__media { order: 1; width: min(72%, 320px); justify-self: start; }
  .hero__sub { max-width: 46ch; margin-top: 1.1rem; }
  .hero__eyebrow { margin: 1.2rem 0 .8rem; }
  .hero__cta { margin-top: 1.4rem; }
  .hero__trust { margin-top: 1.4rem; }
  .problema__inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .statpanel { position: static; }
}

@media (max-width: 540px) {
  .hero__chip { left: auto; right: -.4rem; bottom: 8%; }
  .btn { --pad: 1.05rem 1.8rem; font-size: 1rem; }
  .hero__title { font-size: clamp(1.95rem, 8vw, 2.35rem); line-height: 1.08; }
  .hero__media { width: min(70%, 300px); }
}

/* ============================================================
   SEÇÕES 3–10 + BARRA CTA FIXA + FOOTER
   ============================================================ */

.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: .9rem;
}
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn--lg { --pad: 1.3rem 2.8rem; font-size: 1.12rem; }

.recebe, .oferta { position: relative; }
.recebe::before, .oferta::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .3; mix-blend-mode: multiply; pointer-events: none;
}
.recebe__inner, .oferta__inner { position: relative; z-index: 1; }

/* ---------- S3 — O QUE VOCÊ RECEBE / Bento ---------- */
.recebe { background: var(--paper); padding: clamp(4rem,10vh,7rem) clamp(1.4rem,5vw,4rem); }
.recebe__inner { max-width: var(--maxw); margin: 0 auto; }
.recebe__head { max-width: 760px; }
.recebe__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem,3.4vw,2.8rem); line-height: 1.12;
  letter-spacing: -.015em; color: var(--ink);
  max-width: 20ch; text-wrap: balance;
}
.recebe__sub {
  margin-top: 1rem; font-size: clamp(1rem,1.2vw,1.1rem);
  color: var(--ink-soft); max-width: 48ch;
}
.bento {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(150px, auto); gap: 18px;
}
.bento__cell {
  background: #FFFFFF; border: 1px solid #ECE2D2;
  border-radius: 18px; padding: 1.5rem;
  display: flex; flex-direction: column;
  transition: transform .22s cubic-bezier(.2,.7,.2,1),
              box-shadow .22s ease, border-color .22s ease;
}
.bento__cell h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.15rem; color: var(--ink);
  margin: .7rem 0 .5rem; line-height: 1.2;
}
.bento__cell p { font-size: .95rem; color: var(--ink-soft); line-height: 1.55; }
.bento__mark { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.bento__cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -20px rgba(56,42,69,.35);
  border-color: var(--line);
}
.bento__cell:nth-of-type(1) { grid-column: 1 / 4; grid-row: 1 / 3; }
.bento__cell:nth-of-type(2) { grid-column: 4 / 7; grid-row: 1 / 3; }
.bento__cell:nth-of-type(3) { grid-column: 1 / 3; grid-row: 3; }
.bento__cell:nth-of-type(4) { grid-column: 3 / 5; grid-row: 3; }
.bento__cell:nth-of-type(5) { grid-column: 5 / 7; grid-row: 3; }
.bento__cell:nth-of-type(6) { grid-column: 1 / 3; grid-row: 4; }
.bento__cell:nth-of-type(7) { grid-column: 3 / 5; grid-row: 4; }
.bento__cell:nth-of-type(8) { grid-column: 5 / 7; grid-row: 4; }
.bento__cell--anchor {
  background: var(--paper-2); z-index: 2; transform: translateY(-12px);
}
.bento__cell--anchor:hover { transform: translateY(-16px); }
.bento__cell--anchor h3 { font-size: 1.5rem; }
.bento__cell--brand { border-left: 4px solid var(--brand); }

/* ---------- S4 — PRA QUEM É / Contained Center ---------- */
.praquem { background: var(--paper); padding: clamp(4.5rem,11vh,8rem) clamp(1.4rem,5vw,4rem); }
.praquem__inner { max-width: 760px; margin: 0 auto; }
.praquem__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem,3.4vw,2.7rem); line-height: 1.14;
  letter-spacing: -.015em; color: var(--ink);
  max-width: 22ch; margin-bottom: 1.4rem; text-wrap: balance;
}
.praquem__list { list-style: none; }
.praquem__list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.4rem 0; border-top: 1px solid var(--line);
}
.praquem__list li:first-child { border-top: 0; }
.praquem__list li span {
  flex: none; width: 28px;
  font-family: var(--font-display); font-weight: 600;
  color: var(--sage); font-size: 1.2rem; line-height: 1.4;
}
.praquem__list li p {
  font-size: clamp(1.05rem,1.4vw,1.2rem); color: var(--ink); line-height: 1.5;
}
.praquem__close {
  margin-top: 2.5rem; background: var(--paper-2);
  border-radius: 22px; padding: 1.6rem 1.8rem;
  font-size: 1rem; color: var(--ink-soft);
}
.praquem__close strong { font-weight: 600; color: var(--ink); }

/* ---------- S5 — AUTORIDADE / Layered ---------- */
.autoridade { background: var(--paper-2); padding: clamp(4.5rem,11vh,8rem) clamp(1.4rem,5vw,4rem); }
.autoridade__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: .85fr 1.15fr;
  align-items: center; gap: clamp(2.5rem,6vw,5rem);
}
.autoridade__media {
  position: relative; justify-self: center;
  width: min(100%, 420px); aspect-ratio: 1 / 1.16;
}
.autoridade__layer {
  position: absolute; inset: 8% -10% -10% 8%;
  background: var(--paper); border-radius: 58% 42% 50% 50% / 50% 50% 50% 50%;
  z-index: 0;
}
.autoridade__ring {
  position: absolute; inset: 3% -7% -7% 3%;
  border: 1px solid var(--line);
  border-radius: 58% 42% 50% 50% / 50% 50% 50% 50%; z-index: 1;
}
.autoridade__photo {
  position: relative; z-index: 2; width: 100%; height: 100%;
  overflow: hidden; box-shadow: var(--shadow);
  border-radius: 62% 38% 56% 44% / 54% 46% 54% 46%;
  transform: rotate(-2deg);
}
.autoridade__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%;
  transform: rotate(2deg) scale(1.12);
}
.autoridade__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem,3.2vw,2.6rem); line-height: 1.16;
  letter-spacing: -.015em; color: var(--ink);
  max-width: 24ch; margin-bottom: 1.2rem;
}
.autoridade__text p { font-size: clamp(1rem,1.2vw,1.1rem); color: var(--ink-soft); }
.autoridade__text p + p { margin-top: 1.1rem; }
.autoridade__close {
  margin-top: 1.6rem !important;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1.15rem,1.8vw,1.45rem); color: var(--sage-deep) !important;
  padding-left: 1.4rem; border-left: 2px solid var(--sage);
}
.autoridade__sign {
  display: flex; align-items: center; gap: .9rem;
  margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
}
.autoridade__sign img { width: 40px; height: 39px; border-radius: 50%; }
.autoridade__sign span { display: flex; flex-direction: column; font-size: .85rem; color: var(--ink-soft); line-height: 1.4; }
.autoridade__sign b {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 1.2rem; color: var(--ink);
}

/* ---------- S6 — DEPOIMENTOS / Gallery Wall ---------- */
.depo { background: var(--paper); padding: clamp(4rem,10vh,7rem) clamp(1.4rem,5vw,4rem); }
.depo__inner { max-width: var(--maxw); margin: 0 auto; }
.depo__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem,3.4vw,2.7rem); line-height: 1.14;
  color: var(--ink); max-width: 20ch; text-wrap: balance;
}
.depo__grid {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
  align-items: start;
}
.depo__pull { grid-column: 1 / 8; background: var(--paper-2); border-radius: 24px; padding: clamp(1.8rem,3vw,2.6rem); }
.depo__card {
  grid-column: 8 / 13;
  background: rgba(255,255,255,.6);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(220,205,185,.7);
  border-radius: 20px; padding: 1.6rem;
  transition: transform .22s cubic-bezier(.2,.7,.2,1);
}
.depo__card:last-child { transform: translateX(-18px); }
.depo__card:hover, .depo__card:last-child:hover { transform: translateY(-3px); }
.depo__quote { display: block; font-family: var(--font-display); font-weight: 600; font-size: 4rem; color: var(--line); line-height: .4; }
.depo__pull p { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem,2.4vw,2rem); line-height: 1.3; color: var(--ink); margin: 1rem 0 1.2rem; }
.depo__card p { font-size: 1.05rem; color: var(--ink); margin: .8rem 0 1rem; line-height: 1.5; }
.depo blockquote footer { display: flex; flex-direction: column; }
.depo blockquote footer b { font-weight: 600; color: var(--ink); }
.depo blockquote footer span { font-size: .85rem; color: var(--ink-soft); }
.depo__sources {
  margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.4rem;
  font-size: .82rem; color: var(--ink-soft);
}
.depo__sources span { color: var(--sage-deep); font-weight: 600; position: relative; }
.depo__sources span + span::before { content: "·"; position: absolute; left: -.8rem; color: var(--line); }

/* ---------- S7 — INVESTIMENTO / Spotlight ---------- */
.oferta { background: var(--paper); padding: clamp(5rem,12vh,9rem) clamp(1.4rem,5vw,4rem); }
.oferta::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 50% 45%, transparent 0%, rgba(56,42,69,.05) 100%);
}
.oferta__inner { max-width: var(--maxw); margin: 0 auto; }
.oferta__head { max-width: 640px; margin: 0 auto 2.5rem; text-align: center; }
.oferta__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem,3vw,2.5rem); line-height: 1.16;
  color: var(--ink); max-width: 22ch; margin: 0 auto; text-wrap: balance;
}
.card {
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto;
  display: grid; grid-template-columns: 1.25fr .9fr; gap: clamp(1.8rem,3vw,3rem);
  background: linear-gradient(180deg, #EAF1ED 0%, #E4EDE8 100%);
  border: 1px solid #D6E3DB; border-radius: 28px;
  padding: clamp(1.8rem,3.5vw,3rem);
  box-shadow: 26px 30px 60px -42px rgba(85,117,103,.5), 0 2px 0 #FFFFFF inset;
}
.card__body p { font-size: 1rem; color: var(--ink-soft); }
.card__body p + p { margin-top: .9rem; }
.card__anchorline { font-weight: 600; color: var(--ink) !important; }
.card__side { display: flex; flex-direction: column; align-items: stretch; gap: .9rem; }
.ticket {
  background: #FFFFFF; border: 1px solid #D6E3DB; border-radius: 16px;
  padding: 1.4rem 1.2rem; text-align: center;
  -webkit-mask:
    radial-gradient(11px at 0 50%, transparent 98%, #000) -11px,
    radial-gradient(11px at 100% 50%, transparent 98%, #000) right -11px;
  -webkit-mask-composite: source-over;
}
.ticket__label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-deep); }
.ticket__price {
  display: flex; align-items: baseline; justify-content: center; gap: .12rem;
  font-family: var(--font-display); font-weight: 600; color: var(--sage-deep);
  font-size: clamp(3rem,6vw,4.4rem); margin: .35rem 0 .2rem; line-height: 1;
}
.ticket__price i { font-style: normal; font-size: .42em; }
.ticket__price b { font-variant-numeric: tabular-nums; }
.ticket__sub { display: block; font-size: .9rem; color: var(--ink-soft); }
.card__micro { font-size: .85rem; color: var(--ink-soft); text-align: center; }
.card__seal {
  align-self: center; font-size: .8rem; font-weight: 600; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: .5rem 1rem;
}

/* ---------- S8 — GARANTIA / Framed Content ---------- */
.garantia { background: var(--paper); padding: clamp(3.5rem,9vh,6rem) clamp(1.4rem,5vw,4rem); }
.garantia__inner { max-width: 880px; margin: 0 auto; }
.garantia__frame {
  position: relative; border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(2rem,4vw,3rem);
  display: flex; align-items: center; gap: clamp(1.6rem,4vw,3rem);
}
.garantia__frame::before {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(220,205,185,.5); border-radius: 16px; pointer-events: none;
}
.garantia__seal {
  flex: none; width: 120px; height: 120px; border-radius: 50%;
  background: #FBF8F3; border: 2px solid var(--sage);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.garantia__seal b { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--sage-deep); }
.garantia__seal span { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.garantia__text h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.5rem,2.6vw,2.1rem); line-height: 1.2;
  color: var(--ink); max-width: 24ch; margin-bottom: .9rem;
}
.garantia__text p { font-size: 1rem; color: var(--ink-soft); }
.garantia__text p + p { margin-top: .9rem; }

/* ---------- S9 — FAQ / Accordion ---------- */
.faq { background: var(--paper-2); padding: clamp(4rem,10vh,7rem) clamp(1.4rem,5vw,4rem); }
.faq__inner { max-width: 820px; margin: 0 auto; }
.faq__head { margin-bottom: 1.5rem; }
.faq__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem,3vw,2.4rem); line-height: 1.16; color: var(--ink);
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.3rem 0;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.05rem,1.5vw,1.25rem); color: var(--ink);
  transition: color .2s ease;
}
.faq__q:hover { color: var(--sage-deep); }
.faq__q:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 4px; }
.faq__ic { flex: none; font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--sage); transition: transform .22s ease; }
.faq__item.open .faq__ic { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .32s cubic-bezier(.2,.7,.2,1), opacity .32s ease; }
.faq__item.open .faq__a { opacity: 1; }
.faq__a p { padding-bottom: 1.3rem; font-size: 1rem; color: var(--ink-soft); line-height: 1.6; max-width: 64ch; }
.faq__cta { margin-top: 2.6rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.faq__cta p { color: var(--ink-soft); }

/* ---------- S10 — CTA FINAL + FOOTER / Hero Dominante ---------- */
.final { position: relative; background: var(--paper-2); overflow: hidden; }
.final__bg { position: absolute; top: 0; right: 0; bottom: 0; width: 52%; z-index: 0; }
.final__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.final__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, #F3EDE2 0%, #F3EDE2 28%, rgba(243,237,226,0) 72%);
}
.final__inner {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  min-height: 88svh; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(5rem,12vh,9rem) clamp(1.4rem,5vw,4rem);
}
.final__inner > * { max-width: 560px; }
.final__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.1rem,4.4vw,3.4rem); line-height: 1.08;
  letter-spacing: -.018em; color: var(--ink); text-wrap: balance;
  margin-bottom: 1.4rem;
}
.final__title em { font-style: italic; color: var(--sage-deep); }
.final__inner p { font-size: clamp(1rem,1.3vw,1.15rem); color: var(--ink-soft); }
.final__inner p + p { margin-top: 1rem; }
.final__offer { font-weight: 600; color: var(--ink) !important; }
.final__sign {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1.2rem,2vw,1.6rem); color: var(--sage-deep) !important;
  margin-top: 1.4rem !important;
}
.final__cta { display: flex; align-items: center; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 2.2rem; }

.foot { position: relative; z-index: 2; border-top: 1px solid var(--line); background: var(--paper); }
.foot__inner { max-width: var(--maxw); margin: 0 auto; padding: 2.5rem clamp(1.4rem,5vw,4rem); text-align: center; }
.foot__inner img { width: 36px; height: 35px; margin: 0 auto .9rem; border-radius: 50%; }
.foot__line { font-size: .82rem; color: var(--ink-soft); }
.foot__line b { font-weight: 600; color: var(--ink); }
.foot__links { margin-top: .5rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 1.2rem; }
.foot__links a { color: var(--sage-deep); text-decoration: none; font-size: .85rem; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.foot__links a:hover { border-color: var(--sage-deep); }
.foot__legal { margin-top: 1rem; font-size: .78rem; color: var(--ink-soft); }

/* ---------- Barra CTA fixa ---------- */
.stickycta {
  position: fixed; bottom: 20px; right: 20px; z-index: 50;
  display: flex; align-items: center; gap: 1.2rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: .55rem .55rem .55rem 1.4rem;
  box-shadow: 0 18px 34px -16px rgba(56,42,69,.5);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}
.stickycta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.stickycta__txt { font-size: .9rem; font-weight: 600; color: var(--ink); }
.stickycta .btn { --pad: .8rem 1.5rem; font-size: .95rem; }

/* ============================================================
   RESPONSIVO — SEÇÕES 3–10
   ============================================================ */
@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell, .bento__cell--anchor { grid-column: auto !important; grid-row: auto !important; transform: none; }
  .bento__cell--anchor, .bento__cell--brand { grid-column: 1 / -1 !important; }
  .bento__cell--anchor:hover { transform: translateY(-4px); }

  .autoridade__inner { grid-template-columns: 1fr; gap: clamp(2.2rem,7vw,3rem); }
  .autoridade__media { order: -1; justify-self: start; width: min(72%, 320px); }

  .depo__grid { grid-template-columns: 1fr; }
  .depo__pull, .depo__card, .depo__card:last-child { grid-column: 1 / -1; transform: none; }

  .card { grid-template-columns: 1fr; }

  .final__bg { display: none; }
  .final__inner { min-height: auto; }
}

@media (max-width: 640px) {
  .garantia__frame { flex-direction: column; text-align: center; }
  .garantia__frame::before { inset: 10px; }
  .garantia__text h2 { max-width: none; }
  .stickycta {
    left: 0; right: 0; bottom: 0; border-radius: 0;
    justify-content: center; padding: .7rem 1rem;
  }
  .stickycta__txt { display: none; }
  .stickycta .btn { flex: 1; max-width: 360px; }
}

@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
  .praquem__list li { flex-direction: column; gap: .3rem; }
  .praquem__list li span { font-size: 1.4rem; }
  .depo__quote { font-size: 2.6rem; }
  .ticket__price { font-size: clamp(2.6rem,12vw,3.4rem); }
}
