/* ════════════════════════════════════════════════════════════
   DAVID ALMEIDA · ASSINATURAS — estilos artesanais
   Tinta sobre papel, com ouro de assinatura (acento ≤ ~10%).
   Tokens vivem no tailwind.config (index.html); aqui mora o que
   o Tailwind não cobre + o "taste pass" (curvas fortes, :active,
   clip-path, blur, reduced-motion gracioso).
   ════════════════════════════════════════════════════════════ */

:root {
  --paper: #F4EFE6;
  --paper-2: #EAE3D6;
  --ink: #1C1A17;
  --ink-soft: #4A453E;
  --gold: #B68A3E;
  --gold-deep: #8C6A2A;
  --gold-light: #D9B877;
  --line: #DCD3C4;

  /* Curvas fortes (taste): built-ins do CSS são fracos demais */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body { margin: 0; line-height: 1.65; -webkit-font-smoothing: antialiased; }

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

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

/* foco visível (a11y) */
:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Skip link ─────────────────────────────────────────────── */
.skip-link {
  position: fixed; top: 10px; left: 50%; transform: translateX(-50%) translateY(-150%);
  z-index: 200; background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  transition: transform 180ms var(--ease-out);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

/* ── Barra de progresso ────────────────────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120;
  background: transparent; pointer-events: none;
}
.progress-bar__fill {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light));
}

/* ════════════════ TIPOGRAFIA ════════════════ */
.eyebrow {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px;
}
.eyebrow--on-ink { color: var(--gold-light); }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(182,138,62,.18);
}

.section__title {
  font-family: 'Fraunces', Georgia, serif; font-weight: 400;
  font-size: clamp(28px, 4.4vw, 44px); line-height: 1.12; color: var(--ink);
  letter-spacing: -0.01em; margin: 0;
}
.section__title em,
.hero__title em,
.final-cta__title em {
  font-style: italic; font-weight: 400; color: var(--gold-deep);
  /* taste/bug: itálico Fraunces no fim de linha não corta */
  display: inline-block; padding-right: 0.08em; font-synthesis: none;
}
.section--ink .section__title { color: var(--paper); }
.section--ink .final-cta__title em,
.section--ink .section__title em { color: var(--gold-light); }

.section__sub {
  max-width: 42rem; margin: 16px auto 0; color: var(--ink-soft);
  font-size: clamp(15px, 1.6vw, 17px);
}
.section__head { text-align: center; margin-bottom: 56px; }
.section__head .eyebrow { justify-content: center; }

/* ════════════════ NAV ════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(244, 239, 230, 0.82);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px -16px rgba(28,26,23,.4);
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand__mark { color: var(--ink); display: inline-flex; }
.brand__dot { fill: var(--gold); }
.brand__name {
  font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: 19px;
  letter-spacing: -0.01em;
}
/* nav sobre o hero escuro, antes de rolar */
.site-nav:not(.is-scrolled) .brand,
.site-nav:not(.is-scrolled) .brand__mark { color: var(--paper); }
.site-nav:not(.is-scrolled) .site-nav__links a { color: rgba(244,239,230,.82); }

.site-nav__links { display: flex; gap: 30px; }
.site-nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft); text-decoration: none;
  position: relative; transition: color 180ms var(--ease-out);
}
.site-nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1.5px;
  background: var(--gold); transition: right 220ms var(--ease-out);
}
.site-nav__links a:hover { color: var(--ink); }
.site-nav:not(.is-scrolled) .site-nav__links a:hover { color: var(--paper); }
.site-nav__links a:hover::after { right: 0; }

@media (max-width: 880px) {
  .site-nav__links { display: none !important; }
  .site-nav__cta { display: none !important; }
}

/* ════════════════ BOTÕES ════════════════ */
.btn {
  --btn-bg: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 16px;
  text-decoration: none; cursor: pointer; border: 0; border-radius: 999px;
  padding: 15px 30px; position: relative; overflow: hidden;
  transition: transform 130ms var(--ease-out), background-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out), color 200ms var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.btn span { position: relative; z-index: 1; transition: transform 200ms var(--ease-out); }
.btn:active { transform: scale(0.97); }            /* feedback de toque (taste) */
.btn--sm { padding: 10px 20px; font-size: 14.5px; }
.btn--lg { padding: 17px 34px; font-size: 17px; }
.btn--block { width: 100%; }

/* primário — único elemento dourado saturado; o olho vai direto */
.btn--primary { background: var(--gold); color: #fff; box-shadow: 0 6px 18px rgba(182,138,62,.35); }
.btn--primary:hover { background: var(--gold-deep); box-shadow: 0 10px 26px rgba(182,138,62,.42); }
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover { transform: translateY(-2px); }
  .btn--primary:hover span:last-child { transform: translateX(3px); }
}
/* "sheen" — brilho que varre (disparado via .sheen-run no JS e no hover) */
.btn--primary::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 50%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); pointer-events: none; z-index: 0;
}
.btn--primary.sheen-run::before,
.btn--primary:hover::before { animation: sheen 750ms var(--ease-out); }
@keyframes sheen { from { left: -60%; } to { left: 130%; } }

/* secundário / ghost */
.btn--ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.section--ink .btn--ghost { color: var(--paper); border-color: rgba(244,239,230,.6); }
.section--ink .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ════════════════ SEÇÕES (ritmo de fundo) ════════════════ */
.section { padding: clamp(72px, 11vw, 116px) 0; position: relative; }
.section--paper { background: var(--paper); }
.section--paper-2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: rgba(244,239,230,.74); }
.section--ink p { color: rgba(244,239,230,.74); }

/* ════════════════ DIVISORES (traço ondulado, nunca reta) ════════════════ */
.ink-divider { line-height: 0; color: var(--gold); }
.ink-divider svg { width: 100%; height: 40px; }
.ink-divider .stroke-node { fill: var(--gold); }
.section--paper + .ink-divider { background: var(--paper); }
.ink-divider--on-ink { background: var(--ink); }
/* o fundo do divisor acompanha a seção anterior; o seguinte é pintado pela próxima seção */

/* ════════════════ HERO ════════════════ */
.hero {
  min-height: 100svh; display: flex; align-items: center; position: relative;
  /* padding equilibrado: o topo só compensa a nav fixa (70px) sem criar vão extra */
  padding-top: 84px; padding-bottom: 0; overflow: hidden;
  background: radial-gradient(120% 90% at 78% 18%, #26221d 0%, var(--ink) 55%);
}
.hero__glow {
  position: absolute; z-index: 0; top: -10%; right: -5%; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(182,138,62,.20), transparent 62%); pointer-events: none;
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(28px, 4vw, 56px); align-items: end;
}
/* a coluna de texto fica verticalmente centrada; só o retrato ancora no fundo */
.hero__copy { align-self: center; }
.hero__title {
  font-family: 'Fraunces', Georgia, serif; font-weight: 300;
  font-size: clamp(34px, 6.4vw, 66px); line-height: 1.06; letter-spacing: -0.015em;
  color: var(--paper); margin: 6px 0 22px;
}
.hero__lead {
  font-size: clamp(16px, 1.9vw, 19px); max-width: 30rem; color: rgba(244,239,230,.82); margin: 0 0 30px;
}
.hero__lead strong { color: var(--gold-light); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__proof { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; color: rgba(244,239,230,.7); margin: 0; }
.hero__proof strong { color: var(--paper); font-weight: 700; }
.hero__proof-star { color: var(--gold); }

/* retrato do David + assinatura-demo flutuando */
.hero__demo { position: relative; z-index: 2; align-self: stretch; }
.hero__portrait {
  position: relative; margin: -60px; display: flex; justify-content: flex-end; align-items: flex-end;
  /* o retrato preenche a altura do hero (menos a nav) e sobe até o topo, sem vão morto acima */
  height: 100%; min-height: clamp(560px, 92vh, 1000px);
}
/* halo dourado atrás do retrato (profundidade sem pesar) — segue o retrato para a direita */
.hero__portrait-halo {
  position: absolute; z-index: 0; right: 0; bottom: 2%;
  width: 90%; aspect-ratio: 1; max-width: 640px;
  background: radial-gradient(circle at 58% 42%, rgba(182,138,62,.30), transparent 62%);
  filter: blur(6px); pointer-events: none;
}
/* a foto é recortada (corpo cortado embaixo) → ancorar no fundo p/ parecer intencional;
   um leve scrim de baixo funde a borda cortada na seção tinta. */
.hero__portrait-img {
  position: relative; z-index: 1; width: auto; height: 100%; max-height: clamp(560px, 92vh, 1000px);
  max-width: 100%; object-fit: contain; object-position: bottom right;
  -webkit-mask-image: linear-gradient(to bottom, #000 90%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 90%, transparent 100%);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.45));
}

/* scroll hint */
.hero__scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; }
.hero__scroll-line { display: block; width: 1.5px; height: 46px; background: linear-gradient(var(--gold-light), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ''; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-light); animation: scrollDot 1.8s var(--ease-in-out) infinite; }
@keyframes scrollDot { 0% { top: -50%; } 60%,100% { top: 110%; } }

@media (max-width: 860px) {
  .hero { min-height: auto; text-align: center; padding-top: 78px; padding-bottom: 40px; }
  /* ordem no mobile: headline → foto → texto.
     achatamos copy/demo com display:contents e ordenamos cada peça. */
  .hero__grid { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
  .hero__copy, .hero__demo { display: contents; }
  .hero__title   { order: 1; width: 100%; margin: 0 0 4px; font-size: clamp(30px, 8.5vw, 44px); text-align: center; }
  .hero__portrait{ order: 2; }
  .hero__lead    { order: 3; width: 100%; margin: 6px auto 0; }
  .hero__actions { order: 4; }
  .hero__proof   { order: 5; }
  .hero__actions, .hero__proof, .eyebrow { justify-content: center; }
  /* SplitText: cada linha em bloco full-width e centrada (senão fica "torta") */
  .hero__title .split-line { display: block !important; width: 100%; text-align: center; }
  /* no mobile o retrato empilha centralizado, tamanho contido e sem bleed */
  .hero__portrait {
    margin: 0; flex-direction: column; align-items: center;
    height: auto; min-height: 0;
  }
  .hero__portrait-img { max-height: min(48vh, 400px); }
  /* botões full-width, texto+seta juntos numa linha só (sem seta órfã) */
  .hero__actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__actions .btn { width: 100%; }
  .btn--lg { padding: 16px 22px; font-size: 16px; }
  /* prova social numa linha só, sem quebra estranha */
  .hero__proof { flex-wrap: wrap; row-gap: 2px; }
}

/* ════════════════ CARDS GENÉRICOS ════════════════ */
.card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 26px; transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), border-color 260ms var(--ease-out);
}
.section--paper-2 .card { background: var(--paper); }
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px -20px rgba(28,26,23,.28); border-color: var(--gold-light); }
}

/* ════════════════ COMO FUNCIONA — passos ════════════════ */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 12px; background: var(--ink); color: var(--gold-light);
  font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 22px; margin-bottom: 18px;
}
.step__title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 18px; color: var(--ink); margin: 0 0 8px; }
.step p { margin: 0; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ════════════════ O ARTISTA ════════════════ */
.artist { overflow: hidden; }
.artist__glow { top: auto; bottom: -20%; left: -8%; right: auto; opacity: .8; }
.artist__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.artist__photo {
  position: relative; margin: 0; display: flex; justify-content: center; align-items: flex-end;
  min-height: clamp(300px, 34vw, 440px);
}
.artist__photo-ring {
  position: absolute; z-index: 0; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 86%; aspect-ratio: 1; max-width: 380px; border-radius: 50%;
  background: radial-gradient(circle at 50% 55%, rgba(182,138,62,.22), transparent 60%);
  filter: blur(4px);
}
.artist__photo img {
  position: relative; z-index: 1; width: auto; height: 100%; max-height: clamp(300px, 34vw, 440px);
  max-width: 100%; object-fit: contain; object-position: bottom center;
  -webkit-mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
  filter: drop-shadow(0 20px 36px rgba(0,0,0,.5));
}
.artist__lead { font-size: clamp(15px, 1.7vw, 17px); max-width: 34rem; color: rgba(244,239,230,.82); margin: 6px 0 28px; }
.artist__lead strong { color: var(--gold-light); font-weight: 600; }
.artist__stats { display: flex; flex-wrap: wrap; gap: 28px; margin-bottom: 30px; }
.artist__stat { display: flex; flex-direction: column; }
.artist__stat strong { font-family: 'Fraunces', Georgia, serif; font-size: clamp(24px, 3vw, 32px); color: var(--paper); line-height: 1; }
.artist__stat span { font-size: 12.5px; letter-spacing: .04em; color: rgba(244,239,230,.6); margin-top: 6px; }
@media (max-width: 820px) {
  .artist__grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .artist .eyebrow, .artist__stats { justify-content: center; }
  .artist__lead { margin-left: auto; margin-right: auto; }
  .artist__photo { min-height: 300px; }
  .artist__photo img { max-height: 300px; }
}

/* ════════════════ GALERIA ════════════════ */
.gallery { padding-bottom: clamp(120px, 16vw, 180px); } /* espaço p/ o card que invade */
.gallery__filter { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 40px; }
.gallery__chip {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; min-width: 44px; min-height: 44px; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--ink-soft); border: 1.5px solid var(--line);
  transition: transform 130ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.gallery__chip:active { transform: scale(0.96); }
.gallery__chip:hover { border-color: var(--gold); color: var(--ink); }
.gallery__chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.gallery__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery__item { transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out); }
.gallery__item.is-hidden { display: none; }

.sig-card {
  margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), border-color 240ms var(--ease-out);
  will-change: transform;
}
.sig-card__art {
  display: flex; align-items: center; justify-content: center; height: 200px; overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(182,138,62,.06), transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 27px, rgba(28,26,23,.05) 27px, rgba(28,26,23,.05) 28px);
}
.sig-card__art img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 500ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .sig-card:hover .sig-card__art img { transform: scale(1.05); }
}
.sig-card--feature { border-color: var(--gold); }
.sig-card--feature .sig-card__cap { background: rgba(182,138,62,.08); }
.sig-card__cap { padding: 14px 16px; font-size: 13.5px; color: var(--ink-soft); border-top: 1px solid var(--line); }
@media (hover: hover) and (pointer: fine) {
  .sig-card:hover { box-shadow: 0 18px 44px -20px rgba(28,26,23,.3); border-color: var(--gold-light); }
}

.gallery__note { text-align: center; margin: 34px auto 0; max-width: 40rem; font-size: 13px; color: var(--ink-soft); opacity: .85; }

.gallery__cta {
  margin: 56px auto -120px; max-width: 720px; position: relative; z-index: 5;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  background: var(--ink); color: var(--paper); border-radius: 18px; padding: 28px 34px;
  box-shadow: 0 30px 60px -30px rgba(28,26,23,.6);
}
.gallery__cta p { margin: 0; font-family: 'Fraunces', Georgia, serif; font-size: 21px; color: var(--paper); }
@media (max-width: 760px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__cta { flex-direction: column; text-align: center; margin-bottom: -90px; }
}
@media (max-width: 460px) { .gallery__grid { grid-template-columns: 1fr; } }

/* ════════════════ PARA QUE SERVE ════════════════ */
.uses { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.use__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px;
  border-radius: 12px; background: rgba(182,138,62,.12); color: var(--gold-deep); margin-bottom: 16px;
}
.use__title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink); margin: 0 0 8px; }
.use p { margin: 0; font-size: 15px; }
@media (max-width: 920px) { .uses { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .uses { grid-template-columns: 1fr; } }

/* ════════════════ DEPOIMENTOS (prints reais, masonry) ════════════════ */
.proofs { columns: 3; column-gap: 20px; }
.proof {
  margin: 0 0 20px; break-inside: avoid; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: var(--paper);
  box-shadow: 0 12px 34px -18px rgba(28,26,23,.28);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), border-color 260ms var(--ease-out);
}
.proof img { width: 100%; height: auto; display: block; }
@media (hover: hover) and (pointer: fine) {
  .proof:hover { transform: translateY(-4px); box-shadow: 0 20px 46px -20px rgba(28,26,23,.36); border-color: var(--gold-light); }
}
@media (max-width: 820px) { .proofs { columns: 2; } }
@media (max-width: 520px) { .proofs { columns: 1; max-width: 420px; margin: 0 auto; } }

/* ════════════════ MEDIA-SLOT (placeholder rico) ════════════════ */
.media-slot {
  position: relative; display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(182,138,62,.05), rgba(182,138,62,.05) 12px, transparent 12px, transparent 24px),
    var(--paper-2);
  border: 1.5px dashed var(--gold-light); border-radius: 10px; overflow: hidden;
}
.media-slot::after {
  content: ''; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  animation: shimmer 2.6s var(--ease-in-out) infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }
.media-slot__badge {
  position: relative; z-index: 1; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: .06em; color: var(--gold-deep); background: var(--paper);
  padding: 5px 11px; border-radius: 999px; border: 1px solid var(--gold-light);
}

/* ════════════════ O QUE VOCÊ RECEBE + PLANOS ════════════════ */
/* empilhado: entregáveis (linha) em cima, planos (linha larga) embaixo */
.recebe__grid { display: grid; gap: clamp(40px, 6vw, 64px); align-items: start; }
.deliverables {
  list-style: none; margin: 0 auto; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px);
  max-width: 920px;
}
.deliverable { display: flex; gap: 14px; align-items: flex-start; }
.deliverable__tick {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--gold);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}
.deliverable__title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 16px; color: var(--ink); margin: 0 0 4px; }
.deliverable p { margin: 0; font-size: 14.5px; }

/* planos: 3 cards largos, alinhados por linhas internas (nome / preço / lista / botão) */
.plans {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px);
  align-items: stretch; max-width: 960px; margin: 0 auto;
}
.plan {
  display: grid; grid-template-rows: auto auto 1fr auto;
  text-align: center; padding: clamp(30px, 3vw, 40px) clamp(26px, 2.6vw, 34px); position: relative;
}
.plan__name { font-family: 'Fraunces', Georgia, serif; font-size: 23px; color: var(--ink); margin: 0 0 12px; }
.plan__price {
  margin: 0 0 22px; color: var(--ink);
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.plan__currency { font-size: 17px; font-weight: 600; color: var(--ink-soft); }
.plan__value { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 40px; line-height: 1; font-variant-numeric: tabular-nums; }
.plan__list {
  list-style: none; margin: 0 0 26px; padding: 0;
  display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; color: var(--ink-soft);
}
.plan__list li { padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.plan__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.plan .btn { align-self: end; }
.plan--featured {
  border-color: var(--gold); box-shadow: 0 18px 50px -22px rgba(182,138,62,.5);
  transform: translateY(-10px); background: var(--paper);
}
.section--paper-2 .plan--featured { background: var(--paper); }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: .05em; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
@media (max-width: 760px) {
  .deliverables { grid-template-columns: 1fr; max-width: 460px; gap: 20px; }
}
@media (max-width: 640px) {
  .plans { grid-template-columns: 1fr; max-width: 380px; }
  .plan--featured { transform: none; }
}

/* ════════════════ FAQ (acordeão) ════════════════ */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: transparent; border: 0; cursor: pointer; text-align: left;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink);
  padding: 20px 22px; min-height: 44px;
}
.faq__icon { position: relative; flex: 0 0 auto; width: 16px; height: 16px; }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: var(--gold-deep); border-radius: 2px;
  transition: transform 240ms var(--ease-out), opacity 240ms var(--ease-out);
}
.faq__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms var(--ease-out); }
.faq__a > div { overflow: hidden; }
.faq__a p { margin: 0; padding: 0 22px 22px; color: var(--ink-soft); }
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__note { color: var(--gold-deep); font-weight: 600; font-size: 13px; }

/* ════════════════ CTA FINAL ════════════════ */
.final-cta { overflow: hidden; background: radial-gradient(120% 100% at 50% 0%, #26221d, var(--ink) 60%); }
.final-cta__title { font-family: 'Fraunces', Georgia, serif; font-weight: 300; font-size: clamp(30px, 5.2vw, 52px); line-height: 1.1; color: var(--paper); margin: 8px 0 18px; letter-spacing: -0.01em; }
.final-cta__lead { max-width: 36rem; margin: 0 auto 32px; font-size: clamp(16px, 1.8vw, 18px); color: rgba(244,239,230,.82); }
.final-cta__proof { display: inline-flex; align-items: center; gap: 9px; margin: 26px 0 0; font-size: 14.5px; color: rgba(244,239,230,.7); }
.final-cta__proof strong { color: var(--paper); font-weight: 700; }

/* ════════════════ RODAPÉ ════════════════ */
.site-footer { padding: 64px 0 40px; color: rgba(244,239,230,.66); }
.site-footer__top { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; padding-bottom: 32px; border-bottom: 1px solid rgba(244,239,230,.12); }
.brand--footer { flex-direction: column; align-items: flex-start; gap: 4px; }
.brand--footer .brand__name { color: var(--paper); font-size: 22px; }
.brand__tagline { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(244,239,230,.5); }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer__links a { color: rgba(244,239,230,.72); text-decoration: none; font-size: 14.5px; transition: color 160ms var(--ease-out); }
.site-footer__links a:hover { color: var(--gold-light); }
.site-footer__bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 24px; font-size: 13px; }
.site-footer__bottom p { margin: 0; color: rgba(244,239,230,.5); }
.site-footer__social a { color: var(--gold-light); text-decoration: none; font-weight: 600; }

/* ════════════════ CTA FIXO MOBILE ════════════════ */
.mobile-cta {
  position: fixed; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: #fff; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 16px;
  text-decoration: none; padding: 16px; border-radius: 999px; box-shadow: 0 10px 30px rgba(182,138,62,.45);
  transform: translateY(180%); transition: transform 320ms var(--ease-out); min-height: 44px;
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta:active { transform: scale(0.98); }
@media (max-width: 880px) { .mobile-cta { display: flex; } }
@media (min-width: 881px) { .mobile-cta { display: none !important; } }

/* ════════════════ REVEALS (estado inicial só sob .gsap-ready) ════════════════ */
/* Sem JS / sem gsap-ready → tudo visível (nunca preso invisível). */
.gsap-ready .reveal { visibility: hidden; }

/* ════════════════ REDUCED MOTION (mais suave, não zero) ════════════════ */
@media (prefers-reduced-motion: reduce) {
  .media-slot::after,
  .hero__scroll-line::after,
  .btn--primary::before { animation: none; }
  .btn--primary.sheen-run::before { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1ms !important;
  }
  .reveal { visibility: visible !important; }
}
