/* ============================================================
   LANDING PAGE EM FORTALEZA — "Poente Editorial"
   Sistema: o dia passa conforme o scroll (dia → tarde → poente
   → crepúsculo → noite). Verde #25D366 é EXCLUSIVO do WhatsApp.
   ============================================================ */

:root {
  /* paleta poente */
  --areia: #F3EADA;
  --tarde: #F5E3C4;
  --poente: #F2D8AE;
  --crepusculo: #2E1C38;
  --noite: #191024;
  --tinta: #1F1610;
  --tinta-60: rgba(31, 22, 16, .64);
  --tinta-25: rgba(31, 22, 16, .22);
  --papel: #FBF5E8;
  --laranja: #FF4D00;
  --laranja-texto: #993800; /* laranja legível: AA 4,5:1 em todos os fundos claros */
  --rosa: #FF3D68;
  --amarelo: #FFB300;
  --atlantico: #0E7C7B;
  --zap: #25D366;        /* SÓ no botão de WhatsApp */
  --zap-tinta: #06341A;

  --bg: var(--areia);
  --vidro-topo: rgba(243, 234, 218, .86); /* fallback iOS 15: sem color-mix */
  --fonte-display: "Fraunces", Georgia, serif;
  --fonte-corpo: "Archivo", -apple-system, sans-serif;
  --fonte-mono: "IBM Plex Mono", ui-monospace, monospace;

  --pad-x: clamp(20px, 5vw, 64px);
  --sec-y: clamp(72px, 12vh, 140px);
}

body[data-theme="tarde"]  { --bg: var(--tarde); --vidro-topo: rgba(245, 227, 196, .86); }
body[data-theme="poente"] { --bg: var(--poente); --vidro-topo: rgba(242, 216, 174, .86); }

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--tinta);
  font-family: var(--fonte-corpo);
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
  line-height: 1.65;
  transition: background-color 1.1s ease;
  overflow-x: hidden; /* fallback iOS 15 / navegadores sem clip */
  overflow-x: clip;
}

/* revisita (classe posta por script inline): preloader nem aparece */
.revisita .preloader { display: none; }

::selection { background: var(--laranja); color: var(--areia); }

.mono {
  font-family: var(--fonte-mono);
  font-feature-settings: "tnum";
  letter-spacing: .08em;
}

.container { max-width: 1280px; margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--sec-y); position: relative; }

h1, h2, h3 { font-weight: 600; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--laranja-texto);
  outline-offset: 3px;
  border-radius: 2px;
}
.section--escura :focus-visible,
.section--noite :focus-visible,
.rodape :focus-visible { outline-color: var(--amarelo); }

/* ---------- grain de impresso ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='128' height='128' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0;
  background: var(--areia);
  z-index: 200;
  display: grid; place-items: end start;
}
.preloader-inner {
  padding: clamp(20px, 5vw, 64px);
  display: flex; flex-direction: column; gap: .4rem;
}
.pre-temp { font-size: clamp(3rem, 10vw, 7rem); font-weight: 500; line-height: 1; }
.pre-label { font-size: .75rem; color: var(--tinta-60); }
.preloader.off { display: none; }

/* ---------- tipografia editorial ---------- */
.kicker {
  font-size: .72rem;
  text-transform: uppercase;
  color: var(--tinta-60);
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.kicker::after {
  content: "";
  width: clamp(48px, 8vw, 120px); height: 1px;
  background: var(--tinta-25);
  display: inline-block;
}

.h2 {
  font-family: var(--fonte-display);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-variation-settings: "opsz" 144;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
  max-width: 18ch;
}
.sec-sub {
  color: var(--tinta-60);
  max-width: 52ch;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

/* vozes de destaque nos títulos */
em.wonk {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--laranja);
}
em.grifo {
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
em.grifo::after {
  content: "";
  position: absolute;
  left: -.08em; right: -.08em; bottom: .06em;
  height: .34em;
  background: var(--amarelo);
  z-index: -1;
  transform: skewX(-8deg) scaleX(var(--grifo-x, 1));
  transform-origin: left center;
}

/* ---------- botão WhatsApp (única coisa verde da página) ---------- */
.btn-zap {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--zap);
  color: var(--zap-tinta);
  font-family: var(--fonte-corpo);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
  line-height: 1.2;
  border: 2px solid var(--zap-tinta);
  box-shadow: 4px 4px 0 var(--zap-tinta);
  transition: box-shadow .18s ease, translate .18s ease, background-color .18s ease;
  will-change: transform;
}
.btn-zap:hover { background: #2EE274; box-shadow: 6px 6px 0 var(--zap-tinta); translate: -2px -2px; }
.btn-zap:active { box-shadow: 1px 1px 0 var(--zap-tinta); translate: 2px 2px; }
.ico-zap { width: 1.25em; height: 1.25em; fill: currentColor; flex: none; }

.btn-zap--mini { padding: .55rem 1.1rem; font-size: .85rem; box-shadow: 3px 3px 0 var(--zap-tinta); }
.btn-zap--hero { font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem); padding: 1.15rem 2.1rem; }
@media (max-width: 430px) {
  .btn-zap--hero { padding: 1.05rem 1.4rem; font-size: 1rem; }
}
.btn-zap--plano { width: 100%; justify-content: center; margin-top: auto; }
.btn-zap--fim {
  font-size: clamp(1.15rem, 1rem + 1vw, 1.5rem);
  padding: 1.3rem 2.6rem;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .45);
  animation: zap-pulso 2.6s ease-in-out infinite;
}
@keyframes zap-pulso {
  0%, 100% { box-shadow: 4px 4px 0 var(--zap-tinta), 0 0 24px 2px rgba(37, 211, 102, .35); }
  50%      { box-shadow: 4px 4px 0 var(--zap-tinta), 0 0 56px 10px rgba(37, 211, 102, .55); }
}

/* ---------- header ---------- */
.topo {
  position: fixed; inset-inline: 0; top: 0;
  z-index: 100;
  transition: background-color .4s ease, box-shadow .4s ease;
}
.topo.rolou {
  background: var(--vidro-topo);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--tinta-25);
}
.topo-in {
  max-width: 1280px; margin-inline: auto;
  padding: .9rem var(--pad-x);
  display: flex; align-items: center; gap: 2rem;
}
.marca {
  font-family: var(--fonte-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.marca em { font-style: italic; color: var(--laranja); }
.marca-dot { color: var(--laranja); }
.topo-meta { font-size: .68rem; color: var(--tinta-60); display: none; }
.topo-nav { margin-left: auto; display: none; gap: 1.6rem; }
.topo-nav a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  position: relative;
}
.topo-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--laranja);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}
.topo-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.topo .btn-zap--mini { margin-left: auto; }
@media (min-width: 760px) {
  .topo-meta { display: block; }
  .topo .btn-zap--mini { margin-left: 0; }
}
@media (min-width: 1020px) {
  .topo-nav { display: flex; margin-left: auto; }
}
/* celulares estreitos: marca menor e botão do topo vira só ícone */
@media (max-width: 480px) {
  .marca { font-size: .95rem; }
  .topo-in { gap: .75rem; }
  .topo .btn-zap--mini span { display: none; }
  .topo .btn-zap--mini { padding: .55rem .7rem; }
}

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  overflow: clip;
  padding-block: clamp(96px, 14vh, 150px) clamp(56px, 9vh, 110px);
}
.sol-holder { position: absolute; inset: 0; z-index: 0; }
.sol-holder canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* sol em CSS: visível DESDE O PRIMEIRO PAINT; o canvas 3D assume por cima
   com crossfade quando (e se) renderizar o primeiro frame */
.sol-css {
  position: absolute; inset: 0;
  transition: opacity 1.2s ease;
}
.sol-holder.tem3d .sol-css { opacity: 0; }
/* amanhecer: o sol nasce subindo no primeiro carregamento */
.sol-css-disco, .sol-css-pontos { animation: sol-nasce 1.7s cubic-bezier(.22, .7, .3, 1) both; }
@keyframes sol-nasce {
  from { transform: translate(-50%, -34%); opacity: 0; }
  to   { transform: translate(-50%, -50%); opacity: 1; }
}
.sol-css-disco {
  position: absolute;
  left: 66%; top: 28%;
  width: clamp(300px, 52vmin, 640px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(180deg, var(--amarelo) 0%, var(--laranja) 52%, var(--rosa) 100%);
}
.sol-css-pontos {
  position: absolute;
  left: 66%; top: 28%;
  width: clamp(340px, 60vmin, 730px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-image: radial-gradient(circle, var(--laranja) 1.3px, transparent 1.6px);
  background-size: 9px 9px;
  -webkit-mask-image: radial-gradient(circle, transparent 42%, #000 46%, transparent 68%);
  mask-image: radial-gradient(circle, transparent 42%, #000 46%, transparent 68%);
}
/* celular: sol espiando do canto, longe do headline */
@media (max-width: 760px) {
  .sol-css-disco, .sol-css-pontos { left: 82%; top: 15%; }
  .sol-css-disco { width: clamp(230px, 68vw, 330px); }
  .sol-css-pontos { width: clamp(270px, 80vw, 390px); }
}

/* gaivotas cruzando o céu */
.gaivotas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.gaivota {
  position: absolute;
  left: -80px;
  color: var(--tinta);
  opacity: .5;
  will-change: transform;
}
.g1 { top: 14%; width: 34px; }
.g2 { top: 24%; width: 22px; opacity: .38; }
.g3 { top: 9%; width: 27px; opacity: .44; }

.hero-in { position: relative; z-index: 1; width: 100%; }
.hero-badge {
  font-size: .72rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid var(--tinta-25);
  background: rgba(243, 234, 218, .72);
  border-radius: 999px;
  padding: .45rem .95rem;
  margin-bottom: clamp(1.2rem, 3vh, 2rem);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--laranja);
  animation: dot-pulso 1.8s ease-in-out infinite;
}
@keyframes dot-pulso { 0%,100% { opacity: 1 } 50% { opacity: .3 } }

.hero-h1 {
  /* grotesca expandida estilo pôster: leitura instantânea em corpo gigante */
  font-family: var(--fonte-corpo);
  font-stretch: 125%;
  font-weight: 800;
  font-size: clamp(2rem, 8.4vw, 7.2rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: clamp(1.4rem, 3.5vh, 2.4rem);
}
/* a palavra-assinatura continua serifada itálica — contraste editorial.
   O halo cor-de-papel recorta a palavra do sol (e é invisível sobre a areia) */
.hero-h1 em.wonk {
  font-family: var(--fonte-display);
  font-variation-settings: "opsz" 144;
  font-weight: 620;
  font-size: 1.03em;
  line-height: 1;
  filter:
    drop-shadow(0 0 2px rgba(243, 234, 218, .95))
    drop-shadow(0 0 10px rgba(243, 234, 218, .9))
    drop-shadow(0 0 26px rgba(243, 234, 218, .8));
}
.hero-h1 em.grifo::after { height: .3em; bottom: .04em; }
/* letras do reveal (split feito pelo JS) */
.ch { display: inline-block; will-change: transform; }
/* brilho ocasional varrendo a palavra-assinatura */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-h1 em.wonk {
    background: linear-gradient(105deg, #FF4D00 0%, #FF4D00 40%, #FFB300 50%, #FF3D68 58%, #FF4D00 68%, #FF4D00 100%);
    background-size: 320% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: brilho-wonk 6.5s ease-in-out infinite;
  }
}
@keyframes brilho-wonk {
  0%, 55% { background-position: 100% 0; }
  85%, 100% { background-position: 0% 0; }
}
/* telas baixas (notebook 720p etc): o CTA tem que caber na primeira dobra */
@media (max-height: 820px) and (min-width: 760px) {
  .hero { padding-top: clamp(80px, 11vh, 110px); }
  .hero-h1 { font-size: clamp(2.2rem, 6vw, 5rem); margin-bottom: 1.2rem; }
  .hero-sub { margin-bottom: 1.4rem; }
  .hero-badge { margin-bottom: 1rem; }
}
/* máscara de linha com folga pros descendentes (g, p, ç) e itálico */
.ln {
  display: block;
  overflow: hidden;
  padding: .06em .08em .18em;
  margin: -.06em -.08em -.18em;
}
.ln-i { display: block; will-change: transform; }

.hero-sub {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem);
  color: var(--tinta-60);
  margin-bottom: clamp(1.6rem, 4vh, 2.6rem);
}
.hero-sub strong { color: var(--tinta); }

.hero-cta {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-bottom: clamp(1.4rem, 3vh, 2rem);
}
.link-precos {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--laranja);
  padding-bottom: 2px;
}
.link-precos:hover { color: var(--laranja); }
.hero-meta { font-size: .7rem; color: var(--tinta-60); }

.hero-scroll {
  position: absolute;
  bottom: 1.2rem; right: var(--pad-x);
  z-index: 1;
  font-size: .68rem;
  color: var(--tinta-60);
  display: none;
}
.hero-scroll-sol { display: inline-block; animation: gira 14s linear infinite; }
@keyframes gira { to { transform: rotate(360deg) } }
@media (min-width: 760px) { .hero-scroll { display: block; } }

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--tinta);
  overflow: hidden;
  overflow: clip;
  padding-block: 1.1rem;
  background: var(--bg);
  transition: background-color 1.1s ease;
}
.marquee-track { display: flex; white-space: nowrap; width: max-content; }
.marquee-chunk {
  font-family: var(--fonte-corpo);
  font-stretch: 125%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  letter-spacing: .02em;
}
.marquee-chunk i {
  font-style: normal;
  color: var(--laranja);
  padding-inline: .5em;
}

/* ---------- dor ---------- */
.pull-quote {
  font-family: var(--fonte-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  max-width: 14ch;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.dor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  border-top: 1px solid var(--tinta-25);
}
.dor-item {
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid var(--tinta-25);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-content: start;
}
@media (min-width: 860px) {
  .dor-grid { gap: 0 clamp(2rem, 5vw, 5rem); }
}
.dor-num {
  font-size: .8rem;
  color: var(--laranja-texto);
  border: 1px solid var(--laranja-texto);
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  display: grid; place-items: center;
}
.dor-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.dor-item p { color: var(--tinta-60); grid-column: 2; }
.dor-item h3 { grid-column: 2; grid-row: 1; }
.dor-item .dor-num { grid-row: 1 / span 2; margin-top: .2rem; }

/* ---------- provas / entregas ---------- */
.entregas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(.9rem, 2vw, 1.4rem);
  margin-bottom: clamp(3rem, 7vw, 5rem);
  perspective: 1400px;
}
.entrega {
  position: relative;
  background: var(--papel);
  border: 1px solid var(--tinta-25);
  padding: clamp(1.5rem, 2.6vw, 2rem) clamp(1.5rem, 2.6vw, 2rem) 3.2rem;
  transition: border-color .3s ease, box-shadow .3s ease;
  will-change: transform;
}
.entrega:hover {
  border-color: var(--laranja);
  box-shadow: 8px 8px 0 rgba(255, 77, 0, .14);
}
.entrega-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.entrega-ico {
  width: 30px; height: 30px;
  fill: none;
  stroke: var(--laranja-texto);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .3s ease, transform .3s ease;
}
.entrega:hover .entrega-ico { stroke: var(--laranja); transform: scale(1.12) rotate(-4deg); }
.entrega-fig {
  font-size: .66rem;
  color: var(--tinta-60);
}
.entrega h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .55rem; letter-spacing: -.01em; }
.entrega p { color: var(--tinta-60); font-size: 1rem; }
.entrega-seta {
  position: absolute;
  left: clamp(1.5rem, 2.6vw, 2rem);
  bottom: 1.1rem;
  font-weight: 700;
  color: var(--laranja);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s ease, transform .3s ease;
}
.entrega:hover .entrega-seta { opacity: 1; transform: translateX(0); }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--tinta);
  padding-top: clamp(1.8rem, 4vw, 2.6rem);
}
.stat { display: flex; flex-direction: column; gap: .3rem; }
.stat-n {
  font-family: var(--fonte-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-n small { font-size: .4em; }
.stat-n .count { font-feature-settings: "tnum"; }
.stat-l { font-size: .68rem; color: var(--tinta-60); }

/* ---------- comparador antes/depois ---------- */
.cmp {
  position: relative;
  border: 1px solid var(--tinta);
  background: var(--papel);
  aspect-ratio: 16 / 10;
  max-height: 620px;
  overflow: hidden;
  overflow: clip;
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
@media (max-width: 700px) { .cmp { aspect-ratio: 4 / 5; } }
.cmp-pane { position: absolute; inset: 0; }
.cmp-clip {
  position: absolute; inset: 0;
  overflow: hidden;
  overflow: clip;
  will-change: transform;
}
.cmp-clip .cmp-pane { will-change: transform; }
.cmp-antes { background: #E8E4DC; }
.cmp-depois { background: var(--areia); }

.cmp-tag {
  position: absolute; top: 1rem;
  font-size: .65rem;
  padding: .35rem .7rem;
  border: 1px solid currentColor;
}
.cmp-tag--antes { left: 1rem; color: #6B675E; background: #F2EFE9; }
.cmp-tag--depois { right: 1rem; color: var(--laranja); background: var(--areia); }

.cmp-handle {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 2px;
  z-index: 3;
  will-change: transform;
  cursor: ew-resize;
}
/* divisor líquido: uma onda que serpenteia no lugar da linha reta */
.cmp-onda {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 100%;
  overflow: visible;
}
.cmp-onda path {
  fill: none;
  stroke: var(--tinta);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.cmp-handle-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--tinta);
  color: var(--areia);
  font-size: .7rem;
  white-space: nowrap;
  padding: .55rem .8rem;
  border-radius: 999px;
  animation: knob-pulso 2.8s ease-in-out infinite;
}
@keyframes knob-pulso {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.1); }
}

/* mocks abstratos dentro do comparador */
.mock {
  position: absolute;
  inset: clamp(1.5rem, 4vw, 3.5rem);
  top: clamp(2.8rem, 6vw, 4.5rem);
  display: flex; flex-direction: column;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(31, 22, 16, .18);
}
.mock-bar {
  display: flex; align-items: center; gap: .45rem;
  padding: .6rem .9rem;
  font-size: .62rem;
}
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: currentColor; opacity: .35; }
.mock-bar span { margin-left: .6rem; opacity: .6; }
.mock-body { flex: 1; padding: 1.2rem 1.4rem; position: relative; overflow: hidden; }

/* ===== ANTES: o site de 2014 da Clínica Maré ===== */
.mock-antes { background: #EFEDE6; color: #4A473F; font-family: "Times New Roman", Times, serif; }
.mock-antes .mock-bar { background: #D6D2C8; font-family: var(--fonte-mono); }
.ma-body { padding: 0; display: flex; flex-direction: column; background: #FDFCF8; font-size: clamp(9px, 1.15vw, 13px); }
.ma-topo {
  display: flex; align-items: baseline; gap: 1em; flex-wrap: wrap;
  padding: .8em 1.2em .5em;
}
.ma-logo { font-size: 1.9em; font-weight: 700; color: #1F4F8B; letter-spacing: .01em; }
.ma-slogan { font-style: italic; color: #7A766C; font-size: .95em; }
.ma-menu {
  display: flex; flex-wrap: wrap;
  background: linear-gradient(180deg, #5B87C5, #2C5794);
  border-block: 2px outset #7FA3D4;
}
.ma-menu span {
  color: #fff; font-size: .9em; font-weight: 700;
  padding: .45em .9em;
  border-right: 1px solid rgba(255,255,255,.35);
  text-shadow: 1px 1px 0 rgba(0,0,0,.4);
}
.ma-banner {
  margin: .9em 1.2em 0;
  padding: 1.6em 1em;
  text-align: center;
  font-style: italic;
  font-size: 1.5em;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0,0,0,.5);
  background: linear-gradient(180deg, #8FC0E8, #2E6DA8);
  border: 2px ridge #B9CFE4;
}
.ma-promo {
  margin: .6em 1.2em 0;
  padding: .35em .6em;
  background: #FFF9A8;
  color: #C0261D;
  font-weight: 700;
  font-size: .95em;
  text-align: center;
  border: 1px dashed #C0261D;
}
.ma-cols { display: flex; gap: 1em; padding: .9em 1.2em; align-items: flex-start; }
.ma-texto { flex: 1.6; }
.ma-texto p { font-size: 1em; line-height: 1.5; color: #55524A; text-align: justify; }
.ma-link { display: inline-block; margin-top: .6em; color: #1A0DAB; text-decoration: underline; font-size: .95em; }
.ma-lateral {
  flex: 1;
  border: 1px solid #B9B4A9;
  background: #F3F1E9;
  padding: .7em .8em;
  font-size: .92em;
  display: flex; flex-direction: column; gap: .35em;
}
.ma-contador {
  margin-top: .5em;
  background: #111;
  color: #6CF06C;
  font-family: var(--fonte-mono);
  font-size: .85em;
  text-align: center;
  padding: .35em .4em;
}
.ma-rodape {
  margin-top: auto;
  padding: .5em 1.2em .8em;
  font-size: .85em;
  color: #8B877D;
  border-top: 1px solid #D6D2C8;
  text-align: center;
}
@media (max-width: 560px) {
  .ma-lateral { display: none; }
  .ma-banner { font-size: 1.25em; }
}

/* ===== DEPOIS: a landing atual da Clínica Maré (id visual própria) ===== */
.mock-depois { background: #F2FAF7; color: #0B3238; font-family: var(--fonte-corpo); }
.mock-depois .mock-bar { background: #0B3238; color: #CFEFE7; font-family: var(--fonte-mono); }
.md-body { padding: 0; display: flex; flex-direction: column; font-size: clamp(9px, 1.15vw, 13px); }
.md-onda {
  position: absolute;
  top: -34%; right: -16%;
  width: 62%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 70%, #17A2A2, #0E6B74 62%, #0A4E56);
  opacity: .16;
}
.md-nav {
  position: relative;
  display: flex; align-items: center; gap: 1.4em;
  padding: 1em 1.4em;
}
.md-logo { font-weight: 800; font-size: 1.25em; letter-spacing: -.02em; }
.md-logo b { color: #0E6B74; }
.md-links { display: flex; gap: 1.1em; margin-left: auto; }
.md-links i { font-style: normal; font-size: .95em; color: rgba(11, 50, 56, .7); }
.md-agendar {
  font-size: .9em; font-weight: 700;
  color: #F2FAF7; background: #0E6B74;
  padding: .45em 1em; border-radius: 999px;
}
.md-hero {
  position: relative;
  flex: 1; /* preenche o quadro: nada de área vazia embaixo */
  display: flex; gap: 1.5em; align-items: center;
  padding: 1.2em 1.4em .6em;
}
.md-copy { flex: 1.7; display: flex; flex-direction: column; align-items: flex-start; gap: .7em; }
.md-badge {
  font-family: var(--fonte-mono);
  font-size: .68em; letter-spacing: .1em;
  color: #0E6B74;
  border: 1px solid rgba(14, 107, 116, .4);
  border-radius: 999px;
  padding: .35em .8em;
}
.md-h1 {
  font-size: 2.15em;
  font-weight: 800;
  font-stretch: 108%;
  line-height: 1.06;
  letter-spacing: -.02em;
}
.md-sub { font-size: 1em; color: rgba(11, 50, 56, .68); line-height: 1.45; }
.md-zap {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--zap); color: var(--zap-tinta);
  border: 1.5px solid var(--zap-tinta);
  box-shadow: 2.5px 2.5px 0 var(--zap-tinta);
  font-size: .95em; font-weight: 700;
  padding: .6em 1.1em; border-radius: 999px;
}
.md-zap svg { width: 1.2em; height: 1.2em; fill: currentColor; }
.md-rating { font-size: .85em; color: #C99118; }
.md-rating b { color: #0B3238; }
.md-card {
  flex: 1;
  position: relative;
  background: #fff;
  border: 1px solid rgba(14, 107, 116, .25);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(10, 78, 86, .14);
  padding: 1em 1.1em;
  display: flex; flex-direction: column; gap: .35em;
  font-size: .95em;
}
.md-card-tag {
  font-family: var(--fonte-mono);
  font-size: .68em; letter-spacing: .1em;
  color: #0E6B74;
}
.md-card b { font-size: 1.15em; }
.md-card > span:not(.md-card-tag):not(.md-avatars) { color: rgba(11, 50, 56, .6); font-size: .9em; }
.md-avatars { display: flex; margin-top: .4em; }
.md-avatars i {
  width: 2em; height: 2em;
  border-radius: 50%;
  background: #D7F0EC;
  color: #0E6B74;
  border: 2px solid #fff;
  font-style: normal; font-size: .8em; font-weight: 700;
  display: grid; place-items: center;
  margin-left: -.5em;
}
.md-avatars i:first-child { margin-left: 0; }
.md-chips { display: flex; flex-wrap: wrap; gap: .5em; padding: .7em 1.4em 1.2em; position: relative; }
.md-chips span {
  font-size: .85em; font-weight: 600;
  color: #0E6B74;
  background: #DFF2ED;
  border-radius: 999px;
  padding: .4em .95em;
}
@media (max-width: 560px) {
  .md-card, .md-links { display: none; }
  .md-h1 { font-size: 1.8em; }
}

/* ---------- processo ---------- */
.passos-wrap { position: relative; padding-bottom: 3.4rem; }
.rota {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
  color: var(--laranja-texto);
  z-index: 0;
}
.rota path { fill: none; }
.rota-dot {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  pointer-events: none;
  display: none;
}
.rota-dot::before {
  content: "";
  display: block;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--laranja);
  box-shadow: 0 0 0 4px rgba(255, 77, 0, .18);
}
.rota-dot span {
  position: absolute;
  top: -24px; left: 0;
  transform: translateX(-50%);
  font-family: var(--fonte-mono);
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--laranja-texto);
  white-space: nowrap;
}
.passos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(1.6rem, 3vw, 2.4rem);
  counter-reset: passo;
  margin-top: clamp(2.6rem, 6vw, 4.2rem);
  position: relative;
  z-index: 1;
}
.passo {
  border-top: 2px solid var(--tinta);
  padding-top: 1.4rem;
  display: flex; flex-direction: column;
}
.passo-num {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--laranja-texto);
  margin-bottom: 1.1rem;
}
.passo h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.passo p { color: var(--tinta-60); font-size: 1rem; flex: 1; }
.passo-tempo {
  margin-top: 1.2rem;
  font-size: .65rem;
  color: var(--tinta);
  border: 1px solid var(--tinta-25);
  border-radius: 999px;
  padding: .35rem .8rem;
  align-self: flex-start;
}

/* ---------- preços ---------- */
.planos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.4rem, 3vw, 2rem);
  align-items: stretch;
}
.plano {
  background: var(--papel);
  border: 1px solid var(--tinta);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: 6px 6px 0 rgba(31, 22, 16, .12);
}
.plano--destaque {
  border-width: 2px;
  box-shadow: 10px 10px 0 var(--laranja);
}
@media (min-width: 1024px) {
  .plano--destaque { transform: translateY(-14px); }
}
.plano-badge {
  font-size: .62rem;
  color: var(--tinta-60);
  border: 1px solid var(--tinta-25);
  align-self: flex-start;
  padding: .35rem .7rem;
  margin-bottom: 1.4rem;
}
.plano-badge--stamp {
  color: var(--tinta);
  background: var(--laranja);
  border-color: var(--laranja);
  transform: rotate(-4deg);
  position: absolute;
  top: -1rem; right: 1.2rem;
  font-size: .68rem;
  padding: .5rem .9rem;
  box-shadow: 3px 3px 0 var(--tinta);
}
.plano-nome {
  font-family: var(--fonte-display);
  font-variation-settings: "opsz" 144;
  font-size: 2rem;
  margin-bottom: .3rem;
}
.plano-preco {
  font-family: var(--fonte-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(3.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: .4rem;
}
.plano-preco small { font-size: .38em; vertical-align: .9em; letter-spacing: 0; }
.plano-nota { font-size: .62rem; color: var(--tinta-60); margin-bottom: 1.2rem; }
.plano-desc { color: var(--tinta-60); font-size: .98rem; margin-bottom: 1.4rem; }
.plano-lista {
  list-style: none;
  margin-bottom: 1.8rem;
  border-top: 1px solid var(--tinta-25);
}
.plano-lista li {
  padding: .65rem 0 .65rem 1.6rem;
  border-bottom: 1px solid var(--tinta-25);
  font-size: .95rem;
  position: relative;
}
.plano-lista li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--laranja);
  font-weight: 700;
}

/* ---------- versus ---------- */
.vs-tabela {
  border: 1px solid var(--tinta);
  background: var(--papel);
  margin-top: clamp(2rem, 5vw, 3rem);
}
.vs-head, .vs-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.6fr;
  border-bottom: 1px solid var(--tinta-25);
}
.vs-head { border-bottom: 1px solid var(--tinta); }
.vs-row:last-child { border-bottom: none; }
.vs-head span, .vs-row span {
  padding: clamp(.9rem, 2vw, 1.3rem) clamp(.8rem, 2vw, 1.6rem);
}
.vs-head span { font-size: .65rem; color: var(--tinta-60); }
.vs-row span:first-child { font-weight: 700; font-size: .95rem; }
.vs-row span:nth-child(2) { color: var(--tinta-60); font-size: .95rem; }
.vs-row .vs-eu, .vs-head .vs-eu {
  background: var(--areia);
  border-left: 2px solid var(--laranja);
  font-weight: 600;
  font-size: .95rem;
}
.vs-head .vs-eu { color: var(--laranja-texto); font-weight: 500; }
@media (max-width: 700px) {
  /* sr-only: some do layout mas os columnheaders seguem na árvore de acessibilidade */
  .vs-head {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
  .vs-row { grid-template-columns: 1fr; border-bottom: 1px solid var(--tinta); }
  .vs-row span:first-child {
    font-family: var(--fonte-mono);
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--tinta-60);
    padding-bottom: 0;
  }
  .vs-row span:nth-child(2) { text-decoration: line-through; text-decoration-color: var(--tinta-25); padding-block: .3rem; }
  .vs-row .vs-eu { border-left: 2px solid var(--laranja); }
}

/* ---------- FAQ (crepúsculo) ---------- */
.section--escura {
  background: var(--crepusculo);
  color: #F6EFE3;
  --tinta-60: rgba(246, 239, 227, .62);
  --tinta-25: rgba(246, 239, 227, .2);
}
.section--escura em.wonk { color: var(--amarelo); }
.faq-lista { max-width: 860px; margin-top: clamp(2rem, 5vw, 3rem); border-top: 1px solid var(--tinta-25); }
.faq-item { border-bottom: 1px solid var(--tinta-25); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.2rem, 2.5vw, 1.6rem) 0;
  font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem);
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--amarelo); }
.faq-mais {
  position: relative;
  width: 18px; height: 18px; flex: none;
}
.faq-mais::before, .faq-mais::after {
  content: "";
  position: absolute;
  background: var(--amarelo);
  transition: transform .3s ease;
}
.faq-mais::before { inset: 8px 0; }
.faq-mais::after { inset: 0 8px; }
.faq-item[open] .faq-mais::after { transform: scaleY(0); }
.faq-corpo { overflow: hidden; }
.faq-corpo p {
  padding-bottom: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--tinta-60);
  max-width: 62ch;
}

/* ---------- CTA final (noite) ---------- */
.section--noite {
  background: var(--noite);
  color: #F6EFE3;
  --tinta-60: rgba(246, 239, 227, .62);
  --tinta-25: rgba(246, 239, 227, .2);
  overflow: hidden;
  overflow: clip;
}
.fim { min-height: 92vh; min-height: 92svh; display: grid; align-items: center; text-align: center; }
.fim-ceu { position: absolute; inset: 0; pointer-events: none; }
.lua {
  position: absolute;
  top: 12%; right: 14%;
  width: clamp(60px, 9vmin, 110px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #FDF6E4, #E8D9B8 68%, #C9B896);
  opacity: .85;
  box-shadow: 0 0 60px 8px rgba(253, 246, 228, .18);
}
.estrela {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #F6EFE3;
  opacity: .7;
  animation: pisca 3.2s ease-in-out infinite;
}
.e1 { top: 18%; left: 12%; } .e2 { top: 30%; left: 28%; animation-delay: .6s; }
.e3 { top: 12%; left: 46%; animation-delay: 1.2s; } .e4 { top: 26%; left: 64%; animation-delay: .3s; }
.e5 { top: 42%; left: 8%; animation-delay: 1.7s; } .e6 { top: 48%; left: 88%; animation-delay: .9s; }
.e7 { top: 8%; left: 78%; animation-delay: 2.1s; } .e8 { top: 56%; left: 22%; animation-delay: 1.4s; }
.e9 { top: 38%; left: 42%; animation-delay: 2.6s; }
@keyframes pisca { 0%,100% { opacity: .75 } 50% { opacity: .15 } }

.fim-in { position: relative; display: flex; flex-direction: column; align-items: center; }
.fim .kicker { color: var(--tinta-60); }
.fim .kicker::after { background: var(--tinta-25); }
.fim-h2 {
  font-family: var(--fonte-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.6rem, 7.5vw, 6.5rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}
.fim-h2 em.wonk { color: var(--amarelo); }
.fim-sub { max-width: 52ch; color: var(--tinta-60); margin-bottom: clamp(2rem, 5vw, 3rem); }
.fim-meta { margin-top: 1.6rem; font-size: .68rem; color: var(--tinta-60); }

/* ---------- footer ---------- */
.rodape {
  background: #140D1E;
  color: rgba(246, 239, 227, .82);
  padding-block: clamp(3rem, 7vw, 5rem) 1.6rem;
  font-size: .95rem;
}
.rodape .marca--rodape { color: #F6EFE3; display: inline-block; margin-bottom: 1.2rem; }
.rodape-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid rgba(246, 239, 227, .14);
}
@media (min-width: 900px) {
  .rodape-grid { grid-template-columns: 1.6fr .8fr 1fr; }
}
.rodape-seo { font-size: .88rem; color: rgba(246, 239, 227, .55); line-height: 1.7; max-width: 60ch; }
.rodape-nav { display: flex; flex-direction: column; gap: .6rem; }
.rodape-nav a { text-decoration: none; width: fit-content; }
.rodape-nav a:hover { color: var(--amarelo); }
.rodape-medidas { display: flex; flex-direction: column; gap: .7rem; font-size: .68rem; color: rgba(246, 239, 227, .55); }
.rodape-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.4rem;
  font-size: .62rem;
  color: rgba(246, 239, 227, .4);
}
.voltar-topo { text-decoration: none; }
.voltar-topo:hover { color: var(--amarelo); }

/* ---------- barra sticky / FAB ---------- */
.zap-bar {
  position: fixed;
  z-index: 90;
  transition: transform .45s cubic-bezier(.32, .72, 0, 1), opacity .45s ease;
}
@media (max-width: 759px) {
  .zap-bar {
    inset-inline: 0; bottom: 0;
    padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
    background: rgba(25, 16, 36, .88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translateY(110%);
  }
  .zap-bar .btn-zap--bar { width: 100%; justify-content: center; padding: .95rem 1.4rem; }
}
@media (min-width: 760px) {
  .zap-bar {
    right: 1.6rem; bottom: 1.6rem;
    transform: translateY(140%) ;
    opacity: 0;
  }
  .zap-bar .btn-zap--bar { box-shadow: 5px 5px 0 var(--zap-tinta), 0 0 32px 4px rgba(37, 211, 102, .3); }
}
body.bar-on .zap-bar { transform: translateY(0); opacity: 1; }
body.bar-off .zap-bar { transform: translateY(140%); opacity: 0; pointer-events: none; }
@media (max-width: 759px) {
  body.bar-off .zap-bar { transform: translateY(110%); }
}

/* ---------- estados iniciais de animação (JS liga) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(36px); }
.js [data-hero] { opacity: 0; transform: translateY(24px); }
.js .ln-i { transform: translateY(125%); }

/* palavras mascaradas dos títulos grandes (split feito pelo JS) */
.w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding: .04em .06em .16em;
  margin: -.04em -.06em -.16em;
}
.wi { display: inline-block; will-change: transform; }
.js .preloader ~ * .hero-h1 { visibility: visible; }

/* reduced motion: tudo visível, nada se move
   (:not(.forcar-anim) permite o preview completo via ?sol=1) */
@media (prefers-reduced-motion: reduce) {
  :root:not(.forcar-anim) .js [data-reveal],
  :root:not(.forcar-anim) .js [data-hero] { opacity: 1; transform: none; }
  :root:not(.forcar-anim) .js .ln-i { transform: none; }
  :root:not(.forcar-anim) .btn-zap--fim,
  :root:not(.forcar-anim) .estrela,
  :root:not(.forcar-anim) .pulse-dot,
  :root:not(.forcar-anim) .hero-scroll-sol,
  :root:not(.forcar-anim) .hero-h1 em.wonk,
  :root:not(.forcar-anim) .sol-css-disco,
  :root:not(.forcar-anim) .sol-css-pontos,
  :root:not(.forcar-anim) .cmp-handle-knob { animation: none; }
  :root:not(.forcar-anim) .marquee-track { transform: none !important; }
  :root:not(.forcar-anim) .gaivotas { display: none; }
}

/* ---------- impressão / salvar em PDF ---------- */
@media print {
  .js [data-reveal], .js [data-hero], .js .ln-i,
  [data-reveal], [data-hero], .ln-i {
    opacity: 1 !important;
    transform: none !important;
  }
  .grain, .zap-bar, .preloader, .sol-holder, .hero-scroll,
  .marquee, .lua, .estrela, .fim-ceu { display: none !important; }
  .topo { position: static !important; background: none !important; box-shadow: none !important; }
  .hero, .fim { min-height: 0; }
  .section--escura, .section--noite, .rodape {
    background: #fff !important;
    color: #1F1610 !important;
    --tinta-60: rgba(31, 22, 16, .64);
    --tinta-25: rgba(31, 22, 16, .22);
  }
  .rodape-seo, .rodape-medidas, .rodape-base, .rodape .marca--rodape,
  .rodape-nav a, .fim-h2, .fim-sub, .fim-meta, .fim .kicker {
    color: #1F1610 !important;
  }
  .faq-item { break-inside: avoid; }
}
