/* =========================================================
   HJ ARQUITETURA — Landing "Antes da Obra"
   Estética Stripe adaptada: weight 300 editorial,
   letterspacing negativo em displays, sombras tonais,
   radius conservador 4-8px. Paleta HJ.
   ========================================================= */

:root {
  /* Paleta HJ — carvalho + verde + terracota */
  --bg: #FBF3E8;                 /* creme quente (tom da cozinha Laira) */
  --bg-soft: #F5ECDE;            /* creme mais presente pra seções alt */
  --bg-dark: #2C3318;            /* verde escuro carvalho (da marcenaria) */

  --heading: #2C2A1F;            /* marrom escuro quente */
  --label: #3D3828;
  --body: #4F4639;               /* marrom corrigido — 4.7:1 em #FBF3E8 */
  --muted: #756B5E;              /* corrigido — 4.6:1 em #FBF3E8 */

  --accent: #C2714E;             /* terracota quente, mais sutil */
  --accent-hover: #A45A3A;
  --accent-soft: #F8E8DF;
  --accent-border: #DEBB9E;

  --green: #3A4528;              /* verde musgo carvalho */
  --green-soft: #E8EDDF;

  --border: #DDD5C5;
  --border-soft: #EDE6D8;

  --text-on-dark: #F5ECDE;
  --text-on-dark-soft: #DED7C8;
  --border-on-dark: rgba(255,255,255,0.10);

  /* Sombras — tom carvalho quente */
  --shadow-elev-1: rgba(55, 40, 20, 0.08) 0px 3px 8px;
  --shadow-elev-2: rgba(55, 40, 20, 0.12) 0px 15px 35px;
  --shadow-elev-3:
    rgba(55, 40, 20, 0.22) 0px 30px 50px -30px,
    rgba(0, 0, 0, 0.08) 0px 18px 36px -18px;
  --shadow-elev-4:
    rgba(55, 40, 20, 0.25) 0px 14px 21px -14px,
    rgba(0, 0, 0, 0.08) 0px 8px 17px -8px;

  /* Tipografia */
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'Archivo Black', 'SF Mono', monospace;

  /* Espaço — escala Stripe-style, base 8 */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  --transition: 180ms cubic-bezier(0.2, 0, 0, 1);

  --container: 1080px;
  --container-narrow: 720px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;  /* signature Stripe */
  line-height: 1.4;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01' on;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 400;
}
a:hover { color: var(--accent-hover); }

a:focus-visible, button:focus-visible, summary:focus-visible, .cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 300;            /* signature weight */
  margin: 0;
  font-feature-settings: 'ss01' on;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

/* ---------- Tipografia (hierarquia Stripe) ---------- */
.t-display {
  font-size: clamp(36px, 5.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;       /* -1.4px em 56px */
  font-weight: 300;
}
.t-large {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.t-heading {
  font-size: clamp(26px, 2.8vw, 32px);
  line-height: 1.10;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.t-sub {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 300;
}
.t-lead {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 300;
  color: var(--body);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: var(--sp-9) 0;
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--text-on-dark);
}
.section--soft { background: var(--bg-soft); }

.section__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: var(--sp-4);
}
.section__kicker--on-dark { color: var(--accent); }

.section__header {
  max-width: 680px;
  margin: 0 0 var(--sp-7);
}
.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: var(--sp-7) 0;
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms cubic-bezier(0.2, 0, 0, 1), transform 600ms cubic-bezier(0.2, 0, 0, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- CTA (Stripe button) ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  min-height: 44px;
  letter-spacing: 0;
  font-feature-settings: 'ss01' on;
  box-shadow: 0 1px 2px rgba(40, 30, 15, 0.15);
}
.cta:hover {
  background: var(--accent-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(176, 132, 56, 0.25);
}
.cta:active { transform: translateY(0); }
.cta--large {
  padding: 14px 26px;
  font-size: 17px;
}
.cta--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  box-shadow: none;
}
.cta--ghost:hover {
  background: rgba(176, 132, 56, 0.05);
  color: var(--accent-hover);
  box-shadow: none;
  transform: none;
}

.cta__support {
  margin-top: var(--sp-3);
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* ==================== NAV ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 232, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.nav__brand img {
  height: 42px;
  width: auto;
}
/* ==================== HERO ==================== */
.hero {
  padding: var(--sp-9) 0 var(--sp-9);
  background:
    radial-gradient(ellipse at top right, rgba(194, 113, 78, 0.08), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(58, 69, 40, 0.06), transparent 50%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent-hover);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: var(--sp-4);
}
.hero__eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero__headline {
  font-size: clamp(40px, 6.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 300;
  color: var(--heading);
  margin-bottom: var(--sp-5);
}
.hero__headline em {
  font-style: italic;
  font-family: 'Playfair Display', 'Inter Tight', serif;
  color: var(--accent);
  font-weight: 400;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--body);
  font-weight: 300;
  max-width: 52ch;
  margin-bottom: var(--sp-6);
}
.hero__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: center;
}
.hero__trust {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__trust-item strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1;
  font-feature-settings: 'tnum' on, 'ss01' on;
}
.hero__trust-item span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Mockup do livro */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--sp-4);
}
/* Mockup 3D estilo Apple — livro flutuante */
/* ====== BOOK 3D — extrusão real, sombra pesada ====== */
.book3d {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1.3;
  perspective: 2000px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  margin: 0 auto;
}

/* Wrapper com rotação — "flutuando" */
.book3d__body {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(4deg) rotateY(-28deg);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: bookFloat 6s ease-in-out infinite;

  /* Sombra dupla: projetada + ambiental */
  filter:
    drop-shadow(40px 50px 35px rgba(20, 12, 6, 0.30))
    drop-shadow(10px 20px 15px rgba(20, 12, 6, 0.20));
}
@keyframes bookFloat {
  0%, 100% { transform: rotateX(4deg) rotateY(-28deg) translateY(0); }
  50%      { transform: rotateX(4deg) rotateY(-28deg) translateY(-12px); }
}
.book3d:hover .book3d__body {
  transform: rotateX(2deg) rotateY(-14deg);
  animation-play-state: paused;
}

/* Capa — frente do livro */
.book3d__cover {
  position: absolute;
  inset: 0;
  transform: translateZ(18px);
  border-radius: 2px 6px 6px 2px;
  overflow: hidden;
  box-shadow:
    inset 2px 0 4px rgba(255,255,255,0.15),
    inset -6px 0 12px rgba(0,0,0,0.5),
    0 0 0 1px rgba(0,0,0,0.12);
  z-index: 3;
}
.book3d__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contracapa — atrás do livro */
.book3d__back {
  position: absolute;
  inset: 0;
  transform: translateZ(-18px);
  background: #0F0F0F;
  border-radius: 2px 6px 6px 2px;
}

/* Lombada — lateral ESQUERDA do livro (onde vira as páginas) */
.book3d__spine {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 36px;
  background: linear-gradient(90deg,
    #0F0F0F 0%,
    #1A1A1A 40%,
    #0A0A0A 100%);
  transform: rotateY(-90deg) translateZ(18px);
  transform-origin: left center;
  border-radius: 2px 0 0 2px;
}
.book3d__spine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.08) 0%,
    transparent 15%,
    transparent 85%,
    rgba(0,0,0,0.3) 100%);
}

/* Páginas — bloco de papel empilhado à DIREITA (onde o livro abre) */
.book3d__pages {
  position: absolute;
  top: 4px; bottom: 4px;
  right: 0;
  width: 36px;
  transform: rotateY(90deg) translateZ(18px);
  transform-origin: right center;

  /* Efeito de páginas empilhadas */
  background:
    repeating-linear-gradient(180deg,
      #F4EDDE 0px,
      #F4EDDE 1.5px,
      #E0D6BF 1.5px,
      #E0D6BF 3px);
  box-shadow:
    inset -4px 0 6px rgba(0,0,0,0.25),
    inset 2px 0 3px rgba(255,255,255,0.3);
}

/* Topo e base do bloco de páginas — espessura visível */
.book3d__top,
.book3d__bottom {
  position: absolute;
  left: 0; right: 0;
  height: 36px;
  background:
    repeating-linear-gradient(90deg,
      #F4EDDE 0px,
      #F4EDDE 1.5px,
      #E0D6BF 1.5px,
      #E0D6BF 3px);
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.2);
}
.book3d__top {
  top: 0;
  transform: rotateX(90deg) translateZ(18px);
  transform-origin: center top;
}
.book3d__bottom {
  bottom: 0;
  transform: rotateX(-90deg) translateZ(18px);
  transform-origin: center bottom;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.35);
}

/* Sombra projetada no chão */
.book3d__shadow {
  position: absolute;
  left: 50%;
  bottom: -4%;
  transform: translateX(-45%);
  width: 85%;
  height: 40px;
  background: radial-gradient(ellipse at center,
    rgba(20, 12, 6, 0.55) 0%,
    rgba(20, 12, 6, 0.30) 35%,
    rgba(20, 12, 6, 0.10) 60%,
    transparent 80%);
  filter: blur(16px);
  animation: shadowFloat 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes shadowFloat {
  0%, 100% { transform: translateX(-45%) scale(1, 0.9);    opacity: 0.95; }
  50%      { transform: translateX(-45%) scale(1.12, 1);   opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
  .book3d__body, .book3d__shadow { animation: none; }
}

/* ==================== PROMISE ==================== */
.promise {
  padding: var(--sp-9) 0;
  text-align: center;
}
.promise__quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 300;
  color: var(--heading);
  max-width: 22ch;
  margin: 0 auto var(--sp-5);
}
.promise__quote em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-weight: 400;
}
.promise__body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
  max-width: 62ch;
  margin: 0 auto;
  font-weight: 300;
}

/* ==================== CHAPTERS GRID ==================== */
.chapters {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.chapter {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.chapter:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-elev-3);
  transform: translateY(-2px);
}
.chapter__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: block;
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
}
.chapter__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--heading);
  margin-bottom: var(--sp-2);
}
.chapter__body {
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
  font-weight: 300;
}
.chapter--featured {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-on-dark);
  grid-column: span 1;
}
.chapter--featured:hover { border-color: var(--accent); }
.chapter--featured .chapter__num { color: var(--accent); }
.chapter--featured .chapter__title { color: var(--text-on-dark); }
.chapter--featured .chapter__body { color: var(--text-on-dark-soft); }

/* ==================== SAMPLES (páginas internas) ==================== */
.samples {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}
.sample { margin: 0; }
.sample img {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elev-2);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: zoom-in;
  background: #fff;
}
.sample img:hover {
  box-shadow: var(--shadow-elev-3);
  transform: translateY(-2px);
}
.sample figcaption {
  margin-top: var(--sp-3);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==================== BEFORE/AFTER ==================== */
.ba-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
}
.ba-project__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  display: block;
}
.ba-project__pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
.ba-project__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-elev-3);
}
.ba-project__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
}
.ba-project__item:hover img { transform: scale(1.04); }
.ba-project__label {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  padding: 6px 12px;
  background: rgba(0,0,0,0.7);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}
.ba-project__label--after { background: var(--accent); }

/* ==================== AUTHOR (grande, editorial) ==================== */
.author {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.author__photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elev-3);
}
.author__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 500ms ease;
}
.author__photo:hover img {
  filter: grayscale(0%) contrast(1);
}
.author__photo::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(44, 51, 24, 0.3));
  pointer-events: none;
}
.author__text p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  margin-bottom: var(--sp-3);
  font-weight: 300;
}
.author__text strong {
  color: var(--heading);
  font-weight: 500;
}
.author__signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  margin-top: var(--sp-4);
  display: block;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}
.testimonial {
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-elev-1);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: zoom-in;
}
.testimonial:hover {
  box-shadow: var(--shadow-elev-3);
  transform: translateY(-2px);
}
.testimonial img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-3);
}
.testimonial figcaption {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 8, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--sp-5);
}
.lightbox.is-open { display: flex; animation: lbFade 200ms ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(6px);
  font-weight: 300;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__close { top: var(--sp-5); right: var(--sp-5); font-size: 32px; }
.lightbox__nav--prev { left: var(--sp-5); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: var(--sp-5); top: 50%; transform: translateY(-50%); }
.lightbox__caption {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  max-width: 80vw;
  text-align: center;
  margin: 0;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ==================== FAQ ==================== */
.faq {
  margin-top: var(--sp-5);
  border-top: 1px solid var(--border);
}
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: var(--sp-5) 0;
}
.faq__item summary {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition);
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  margin-top: var(--sp-3);
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  max-width: 68ch;
  font-weight: 300;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
  text-align: center;
  padding: var(--sp-9) 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.final-cta .section__kicker { color: var(--accent); }
.final-cta h2 { color: var(--text-on-dark); margin-bottom: var(--sp-5); }
.final-cta__sub {
  color: var(--text-on-dark-soft);
  font-size: 17px;
  max-width: 58ch;
  margin: 0 auto var(--sp-6);
  line-height: 1.55;
  font-weight: 300;
}
.final-cta__bump {
  max-width: 54ch;
  margin: var(--sp-5) auto 0;
  padding: var(--sp-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-on-dark-soft);
  text-align: left;
  line-height: 1.5;
}
.final-cta__bump strong {
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.final-cta__warranty {
  margin-top: var(--sp-4);
  font-size: 13px;
  color: var(--text-on-dark-soft);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.final-cta__consultoria {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-on-dark);
  font-size: 14px;
  color: var(--text-on-dark-soft);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.final-cta__consultoria a { color: var(--accent); font-weight: 400; }

/* ==================== FOOTER ==================== */
.footer {
  background: #1E2614;
  color: var(--text-on-dark-soft);
  padding: var(--sp-8) 0 var(--sp-5);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
.footer__brand img { height: 52px; width: auto; margin-bottom: var(--sp-4); }
.footer__brand p { font-size: 14px; line-height: 1.5; max-width: 30ch; }
.footer__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-3);
  font-weight: 500;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__list a { color: var(--text-on-dark-soft); font-size: 14px; }
.footer__list a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-on-dark);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ---------- Captura de e-mail ---------- */
.lead-form { display: grid; gap: var(--sp-4); max-width: 720px; margin: 0 auto; }
.lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.lead-form label { display: grid; gap: 7px; color: var(--label); font-size: 14px; font-weight: 600; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; min-height: 48px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fffdf9; color: var(--heading); padding: 12px; font: inherit; }
.lead-form textarea { min-height: 130px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 2px; border-color: var(--accent); }
.lead-form .lead-form__check { display: flex; align-items: flex-start; gap: 10px; color: var(--body); font-size: 13px; line-height: 1.5; font-weight: 400; }
.lead-form__check input { width: 16px; min-height: 16px; margin: 2px 0 0; accent-color: var(--accent); }
.lead-form__status { min-height: 22px; margin: 0; font-size: 14px; color: var(--body); }

@media (max-width: 640px) {
  .lead-form__grid { grid-template-columns: 1fr; }
}

/* ---------- Página de entrada Antes da Obra ---------- */
.hero__entry-visual figure { margin: 0; position: relative; }
.hero__entry-visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-elev-3); }
.hero__entry-visual figcaption { margin: 14px 0 0 auto; max-width: 28ch; font-size: 13px; line-height: 1.5; color: var(--muted); }
.decision-routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; background: transparent; border: 0; }
.decision-route { min-height: 440px; background: #fffaf3; padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; align-items: flex-start; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-elev-1); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.decision-route:hover { transform: translateY(-5px); box-shadow: var(--shadow-elev-2); border-color: var(--accent-border); }
.decision-route--featured { background: var(--green-soft); border: 2px solid var(--green); box-shadow: var(--shadow-elev-2); }
.decision-route__offer { display: inline-flex; align-items: center; min-height: 28px; margin: 0; padding: 5px 9px; border: 1px solid var(--accent-border); color: var(--accent-hover); background: var(--accent-soft); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.decision-route--featured .decision-route__offer { color: #f5ecde; background: var(--green); border-color: var(--green); }
.decision-route__number { color: var(--accent); font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; font-weight: 700; margin-top: 22px; }
.decision-route h3 { font-size: clamp(22px, 2.3vw, 30px); line-height: 1.12; margin: 24px 0 16px; letter-spacing: -.025em; }
.decision-route p { color: var(--body); font-size: 15px; line-height: 1.6; margin-bottom: 26px; }
.decision-route a { width: 100%; margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; background: var(--heading); color: #fffaf3; font-weight: 700; border: 1px solid var(--heading); border-radius: var(--radius-sm); }
.decision-route--featured a { background: var(--accent); border-color: var(--accent); }
.decision-route a span { color: inherit; margin-left: 5px; font-size: 20px; line-height: 1; }
.decision-route a:hover { color: #fffaf3; background: var(--accent-hover); border-color: var(--accent-hover); }
.section--dark .author__text p { color: var(--text-on-dark-soft); }
.section--dark .author__text strong { color: var(--text-on-dark); }
body:has(.hero--entry) .hero--entry + main > .section--dark:first-child .problems { max-width: 930px; margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { body:has(.hero--entry) .hero--entry + main > .section--dark:first-child .problems { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { body:has(.lead-form) .section--dark .problems { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 930px; margin-left: auto; margin-right: auto; } }
@media (max-width: 800px) { .decision-routes { grid-template-columns: 1fr; } .decision-route { min-height: auto; } .decision-route h3 { margin-top: 28px; } }

/* ==================== NOVAS CLASSES v17 ==================== */

/* Pill no hero */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  color: var(--accent-hover);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.hero__h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(34px, 5.8vw, 58px);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--heading); margin: var(--sp-4) 0 var(--sp-5);
}
.hero__h1 em {
  font-style: normal; color: var(--accent);
  text-decoration: underline; text-decoration-thickness: 3px;
  text-underline-offset: 4px; text-decoration-color: var(--accent);
}
.hero__text { max-width: 560px; }
.hero__sub { font-size: 17px; line-height: 1.55; color: var(--body); margin-bottom: var(--sp-6); font-weight: 400; }
.hero__cta-row { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.hero__tag {
  font-size: 13px; color: var(--accent); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.hero__badges {
  display: flex; gap: var(--sp-6); flex-wrap: wrap;
  margin-top: var(--sp-6); padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

.cta--sm { padding: 10px 16px; font-size: 14px; min-height: 44px; }
.cta--lg { padding: 14px 24px; font-size: 17px; }
.cta--xl { padding: 18px 32px; font-size: 19px; }
.cta__price-old {
  text-decoration: line-through; opacity: 0.6; margin-right: 6px; font-weight: 300;
}

.badge { display: flex; flex-direction: column; gap: 2px; }
.badge strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px; line-height: 1; color: var(--accent);
}
.badge span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* Kicker (novo nome de eyebrow) */
.kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: var(--sp-4);
}
.kicker--accent { color: var(--accent); }

.section__head { margin-bottom: var(--sp-6); }
.section__head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: var(--sp-7); }
.section__lede { font-size: 17px; line-height: 1.55; color: var(--body); margin-top: var(--sp-3); }
.section__lede--light { color: var(--text-on-dark-soft); }

/* Seção accent (garantia) */
.section--accent {
  background: #7A4430; color: #FFFFFF;  /* terracota escuro — 5.2:1 com branco */
  padding: var(--sp-7) 0;
}
.section--accent h2 { color: #FFFFFF; }
.section--accent p { color: rgba(255,255,255,0.92); }

/* Problemas */
.problems { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); margin-top: var(--sp-5); }
.problem-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: var(--sp-5);
}
.problem-card__num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px; color: var(--accent); letter-spacing: 0.06em;
  display: block; margin-bottom: var(--sp-3);
}
.problem-card h3 { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 700; color: #FFFFFF; margin-bottom: var(--sp-2); }
.problem-card p { font-size: 15px; color: var(--text-on-dark-soft); margin: 0; line-height: 1.55; }

/* Comparação sem/com guia */
.compare-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); margin-top: var(--sp-5); }
.compare-col { padding: var(--sp-5); border-radius: var(--radius-md); }
.compare-col--bad { background: #FFF5F5; border: 1px solid #FDD; }
.compare-col--good { background: #F0FAF0; border: 1px solid #BEB; }
.compare-col__title { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: var(--sp-4); }
.compare-col--bad .compare-col__title { color: #C0392B; }
.compare-col--good .compare-col__title { color: #27AE60; }
.compare-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.compare-col li { font-size: 15px; line-height: 1.5; padding-left: var(--sp-5); position: relative; color: var(--heading); }
.compare-col--bad li::before { content: "✗"; position: absolute; left: 0; color: #C0392B; font-weight: 700; }
.compare-col--good li::before { content: "✓"; position: absolute; left: 0; color: #27AE60; font-weight: 700; }

.cta-block { text-align: center; margin-top: var(--sp-7); }

/* Chapters (nova, substitui learn-grid) */
.ch {
  background: #FFFFFF; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--sp-5);
  transition: border-color 180ms, box-shadow 180ms, transform 180ms;
}
.ch:hover { border-color: var(--accent); box-shadow: var(--shadow-elev-3); transform: translateY(-2px); }
.ch__n { font-family: 'Archivo Black', sans-serif; font-size: 12px; color: var(--accent); letter-spacing: 0.1em; display: block; margin-bottom: var(--sp-3); }
.ch h3 { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: var(--sp-2); }
.ch p { font-size: 14px; line-height: 1.5; color: var(--body); margin: 0; }
.ch--feat { background: var(--bg-dark); border-color: var(--bg-dark); }
.ch--feat:hover { border-color: var(--accent); }
.ch--feat .ch__n { color: var(--accent); }
.ch--feat h3 { color: #FFFFFF; }
.ch--feat p { color: var(--text-on-dark-soft); }

/* Antes/depois (aliases) */
.ba { margin: 0; }
.ba__cap { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: var(--sp-3); display: block; }
.ba__pair { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
.ba__item { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-elev-3); }
.ba__item img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; cursor: zoom-in; transition: transform 500ms cubic-bezier(0.2,0,0,1); }
.ba__item:hover img { transform: scale(1.04); }
.ba__tag {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  padding: 6px 12px; background: rgba(0,0,0,0.7); color: #FFF;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; border-radius: var(--radius-sm); backdrop-filter: blur(4px);
}
.ba__tag--after { background: var(--accent); }

/* Benefícios */
.benefits { list-style: none; padding: 0; }
.benefits li {
  padding: var(--sp-4) 0 var(--sp-4) var(--sp-5); position: relative;
  border-bottom: 1px solid var(--border); font-size: 17px; line-height: 1.5; color: var(--heading);
}
.benefits li:first-child { border-top: 1px solid var(--border); }
.benefits li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* WhatsApp prints */
.wpp-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); margin-top: var(--sp-5); }
.wpp { margin: 0; background: #FFF; border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--sp-4); box-shadow: var(--shadow-elev-1); cursor: zoom-in; }
.wpp:hover { box-shadow: var(--shadow-elev-3); transform: translateY(-1px); }
.wpp img { width: 100%; border-radius: var(--radius-sm); margin-bottom: var(--sp-2); }
.wpp figcaption { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; text-align: center; }

/* Tabela comparativa de preço */
.price-compare { width: 100%; border-collapse: collapse; margin: var(--sp-5) 0; font-size: 15px; table-layout: fixed; word-break: break-word; }
.price-compare th, .price-compare td { text-align: left; padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5; }
.price-compare th { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.price-compare td:first-child { color: #C0392B; }
.price-compare td:last-child { color: #27AE60; font-weight: 500; }
.price-compare__total { font-weight: 700 !important; font-size: 16px !important; padding-top: var(--sp-4) !important; border-top: 2px solid var(--heading); }

/* Author alias */
.author__ig { margin-top: var(--sp-4); }
.author__ig a { font-weight: 600; font-size: 15px; }

/* Garantia */
.guarantee { text-align: center; }
.guarantee__days {
  display: inline-block; font-family: 'Archivo Black', sans-serif;
  font-size: 48px; line-height: 1; color: #FFFFFF;
  margin-bottom: var(--sp-3);
}
.guarantee h2 { color: #FFFFFF; }
.guarantee p { color: rgba(255,255,255,0.92); font-size: 17px; line-height: 1.55; max-width: 50ch; margin: 0 auto; }

/* Bumps */
.bumps { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); margin-top: var(--sp-5); }
.bump {
  background: var(--bg-soft); border: 1px dashed var(--accent-border);
  border-radius: var(--radius-md); padding: var(--sp-5);
  position: relative;
}
.bump__badge {
  position: absolute; top: calc(-1 * var(--sp-2)); right: var(--sp-4);
  background: var(--accent); color: #FFF;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-sm);
}
.bump__mockup {
  margin-bottom: var(--sp-4);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-elev-2);
}
.bump__mockup img { width: 100%; height: auto; display: block; }
.bump h3 { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--heading); margin-bottom: var(--sp-2); }
.bump p { font-size: 15px; color: var(--body); line-height: 1.5; margin-bottom: var(--sp-3); }
.bump__price { font-size: 16px; color: var(--heading); font-weight: 600; }
.bump__price s { color: var(--muted); font-weight: 300; }

/* Final CTA box */
.final-box {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: var(--sp-7) var(--sp-6);
  text-align: center; max-width: 520px; margin: var(--sp-6) auto 0;
}
.final-box__price { margin-bottom: var(--sp-5); }
.final-box__old { font-size: 20px; color: var(--text-on-dark-soft); text-decoration: line-through; display: block; margin-bottom: 4px; }
.final-box__current { font-family: 'Archivo Black', sans-serif; font-size: 52px; color: #FFFFFF; line-height: 1; display: block; }
.final-box__installment { font-size: 14px; color: var(--text-on-dark-soft); margin-top: 6px; display: block; }
.final-box__warranty { font-size: 14px; color: var(--text-on-dark-soft); margin-top: var(--sp-4); }
.final-box__bumps { font-size: 13px; color: var(--accent); margin-top: var(--sp-2); font-weight: 600; }

.final-consult {
  max-width: 56ch; margin: var(--sp-7) auto 0;
  padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.final-consult p { color: var(--text-on-dark-soft); font-size: 15px; line-height: 1.6; }
.final-consult a { color: var(--accent); font-weight: 600; }

/* Footer col */
.footer__col { min-width: 0; }

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

@media (min-width: 640px) {
  .ba__pair { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .chapters { grid-template-columns: 1fr 1fr; }
  .problems { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .bumps { grid-template-columns: 1fr 1fr; }
  .wpp-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .hero { padding: var(--sp-9) 0; }
  .samples { grid-template-columns: 1fr 1fr 1fr; }
  .author { grid-template-columns: 420px 1fr; gap: var(--sp-8); }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-7); }
  .testimonials { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.05fr 1fr; gap: var(--sp-9); }
  .chapters { grid-template-columns: repeat(5, 1fr); }
  .problems { grid-template-columns: repeat(4, 1fr); }
}

/* ========== MOBILE PENTE FINO (375px) ========== */
@media (max-width: 480px) {
  html { font-size: 16px; }

  .container { padding: 0 16px; }
  .section { padding: 48px 0; }

  /* Nav: logo menor, botão cabe */
  .nav__inner { height: 56px; }
  .nav__brand img { height: 34px; }
  .cta--sm { font-size: 13px; padding: 10px 12px; white-space: nowrap; }

  /* Hero: headline não estoura */
  .hero { padding: 48px 0 40px; }
  .hero__h1 { font-size: 32px; letter-spacing: -0.02em; }
  .hero__sub { font-size: 16px; }
  .hero__badges { gap: 20px; }
  .badge strong { font-size: 24px; }

  /* Pill */
  .pill { font-size: 11px; padding: 5px 10px; }

  /* Problemas: 1 coluna */
  .problems { gap: 12px; }
  .problem-card { padding: 20px; }
  .problem-card h3 { font-size: 16px; }
  .problem-card p { font-size: 14px; }

  /* Comparação sem/com */
  .compare-col { padding: 20px; }
  .compare-col__title { font-size: 16px; }
  .compare-col li { font-size: 14px; }

  /* Capítulos */
  .ch { padding: 16px; }
  .ch h3 { font-size: 15px; }
  .ch p { font-size: 13px; }

  /* Antes/depois */
  .ba__pair { gap: 8px; }
  .ba__tag { font-size: 10px; padding: 4px 8px; }

  /* Tabela de preço: stack vertical */
  .price-compare,
  .price-compare thead,
  .price-compare tbody,
  .price-compare tr,
  .price-compare th,
  .price-compare td {
    display: block;
    width: 100%;
  }
  .price-compare thead { display: none; }
  .price-compare tr {
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .price-compare td { padding: 4px 0; border: 0; font-size: 14px; }
  .price-compare td:first-child { color: #C0392B; margin-bottom: 4px; font-weight: 500; }
  .price-compare td:last-child { color: #27AE60; }

  /* Benefícios */
  .benefits li { font-size: 15px; padding: var(--sp-3) 0 var(--sp-3) var(--sp-5); }

  /* Depoimentos */
  .testimonials { gap: 12px; }

  /* Bumps */
  .bump { padding: 20px; }
  .bump h3 { font-size: 17px; }

  /* FAQ */
  .faq__item summary { font-size: 16px; padding-right: 32px; }
  .faq__item p { font-size: 15px; }

  /* Final CTA */
  .final-box { padding: 32px 20px; }
  .final-box__current { font-size: 40px; }
  .cta--xl { padding: 16px 24px; font-size: 17px; width: 100%; text-align: center; justify-content: center; }

  /* Author */
  .author__text p { font-size: 15px; }

  /* Garantia */
  .guarantee__days { font-size: 36px; }
  .guarantee p { font-size: 15px; }

  /* Lightbox */
  .lightbox { padding: 12px; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }

  /* Overscroll prevent */
  body { overscroll-behavior: contain; }

  /* Touch optimization */
  * { touch-action: manipulation; }

  /* Book 3D: menor no mobile */
  .book3d { max-width: 280px; }
}

/* Transformação do hero: o vazio e a casa revelada precisam ser entendidos antes do texto de venda. */
.cinematic-hero { height: 185vh; background: #171c12; --reveal: 0%; }
.cinematic-hero__sticky { position: sticky; top: 0; height: 100svh; min-height: 680px; overflow: hidden; color: #fffaf3; background: #343a29; }
.cinematic-hero__media, .cinematic-hero__media::after { position: absolute; inset: 0; }
.cinematic-hero__media { overflow: hidden; background: #d9d2c6; }
.cinematic-hero__media::after { content: ""; z-index: 2; pointer-events: none; background: linear-gradient(90deg, rgba(18,22,14,.82) 0%, rgba(18,22,14,.48) 28%, rgba(18,22,14,.07) 55%, rgba(18,22,14,.16) 100%); }
.cinematic-hero__image { position: absolute; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.035) translateX(calc(var(--reveal) * -.018)); will-change: transform; }
.cinematic-hero__image--revealed { z-index: 1; clip-path: inset(0 calc(100% - var(--reveal)) 0 0); transform: scale(1.035) translateX(calc((100% - var(--reveal)) * .018)); }
.cinematic-hero__edge { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--reveal); width: 2px; transform: translateX(-1px); opacity: clamp(0, calc(var(--reveal) * .08), .75); background: rgba(255,250,243,.8); box-shadow: 0 0 28px 8px rgba(255,236,193,.35); pointer-events: none; }
.cinematic-hero__content { position: relative; z-index: 5; height: 100%; padding-top: clamp(126px, 16vh, 180px); padding-bottom: 36px; display: flex; flex-direction: column; }
.cinematic-hero__copy { max-width: 610px; transition: opacity .34s ease, transform .5s cubic-bezier(.22,1,.36,1); }
.cinematic-hero__eyebrow { display: inline-flex; margin-bottom: 18px; color: #e48056; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.cinematic-hero h1, .cinematic-hero h2 { margin: 0; color: #fffaf3; font-size: clamp(43px, 5.2vw, 76px); line-height: .96; letter-spacing: -.07em; font-weight: 400; max-width: 10.5ch; }
.cinematic-hero h1 em { color: #f0d3bf; font-style: italic; }
.cinematic-hero__copy p { max-width: 43ch; margin: 22px 0 0; color: rgba(255,250,243,.9); font-size: clamp(16px, 1.45vw, 20px); line-height: 1.48; }
.cinematic-hero__copy--end { position: absolute; top: clamp(126px, 16vh, 180px); opacity: 0; transform: translateY(22px); pointer-events: none; }
.cinematic-hero.is-revealed .cinematic-hero__copy--start { opacity: 0; transform: translateY(-18px); pointer-events: none; }
.cinematic-hero.is-revealed .cinematic-hero__copy--end { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cinematic-hero__copy--end .cta { margin-top: 28px; }
.cinematic-hero__footer { display: flex; justify-content: space-between; gap: 24px; margin-top: auto; color: rgba(255,250,243,.78); font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.cinematic-hero__scroll { display: flex; align-items: center; gap: 10px; }
.cinematic-hero__scroll::before { content: ""; width: 42px; height: 1px; background: currentColor; }
.cinematic-hero__concept { max-width: 31ch; text-align: right; font-weight: 500; line-height: 1.45; }
@media (max-width: 760px) { .cinematic-hero { height: auto; min-height: 100svh; } .cinematic-hero__sticky { position: relative; min-height: 740px; } .cinematic-hero__image { object-position: 58% center; } .cinematic-hero__media::after { background: linear-gradient(0deg, rgba(18,22,14,.9) 0%, rgba(18,22,14,.42) 58%, rgba(18,22,14,.12) 100%); } .cinematic-hero__content { padding-top: 112px; } .cinematic-hero h1, .cinematic-hero h2 { font-size: clamp(40px, 12vw, 58px); max-width: 9.5ch; } .cinematic-hero__footer { align-items: flex-end; } .cinematic-hero__concept { display: none; } }
@media (prefers-reduced-motion: reduce) { .cinematic-hero { height: auto; } .cinematic-hero__sticky { position: relative; } .cinematic-hero__image--revealed { clip-path: inset(0 0 0 0); } .cinematic-hero__edge, .cinematic-hero__copy--start, .cinematic-hero__scroll { display: none; } .cinematic-hero__copy--end { position: static; opacity: 1; transform: none; pointer-events: auto; } }
