/* ============================================================
   LP INSÔNIA — Protocolo Restauração do Sono (Gravital + InMind)
   Estende ../style.css (design system da LP base).
   Escopo atual: Dobra 01 (hero centralizado) + Dobra 02 (protocolo).
   Sem cabeçalho, sem faixa superior, sem formulário, sem links externos.
============================================================ */

:root {
  --night-1: #02191e;
  --night-2: #042b33;
  --night-3: #063840;
  --inmind: #6f7bf7;
}

.text-gold { color: var(--gold); }

/* ============================================================
   NAV GRAVITAL — fixo no topo
============================================================ */
.grav-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0d2a31;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 64px;
  display: flex;
  align-items: center;
}
.grav-nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.grav-nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.grav-nav-logo img { height: 32px; width: auto; }

/* links principais */
.grav-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.gnl {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.gnl:hover { color: #fff; border-bottom-color: #17b8c4; }
.gnl-active { color: #17b8c4; border-bottom-color: #17b8c4; }

/* botão CTA */
.grav-nav-cta {
  flex-shrink: 0;
  background: #17b8c4;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.grav-nav-cta:hover { background: #13a3ae; }

/* hamburger */
.grav-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.grav-nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.grav-nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.grav-nav-burger.open span:nth-child(2) { opacity: 0; }
.grav-nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- DROPDOWNS ---- */
.gnd { position: relative; }
.gnd-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  padding-top: 6px;
  z-index: 200;
}
/* caixa visual separada do padding de bridge */
.gnd-menu > * { position: relative; z-index: 1; }
.gnd-menu::after {
  content: '';
  position: absolute;
  top: 6px; left: 0; right: 0; bottom: 0;
  background: #0d2a31;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 0;
}
.gnd:hover > .gnd-menu,
.gnd.open > .gnd-menu { display: block; }
.gnd-item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: rgba(255,255,255,0.82);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}
.gnd-item:hover { background: rgba(23,184,196,0.12); color: #fff; }

/* nested dropdown — abre para a direita, bridge horizontal */
.gnd-nested > .gnd-menu {
  top: 0;
  left: 100%;
  padding-top: 0;
  padding-left: 6px;
}
.gnd-nested > .gnd-menu::after {
  top: 0;
  left: 6px;
}
.gnd-arrow { font-size: 10px; opacity: 0.7; margin-left: 4px; }

/* hero: compensa o nav fixo */
.hero-centered .hero-content { padding-top: 88px; }

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  .grav-nav-inner { position: relative; flex-wrap: nowrap; gap: 12px; justify-content: flex-end; }
  .grav-nav-logo { display: none; }
  .grav-nav-burger { display: flex; }

  .grav-nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #0d2a31;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0 20px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .grav-nav-links.open { display: flex; }

  /* links de topo */
  .gnl { width: 100%; padding: 13px 24px; border-bottom: none; font-size: 15px; text-align: left; }
  .gnd { width: 100%; }

  /* sub-menus: reset completo do estilo desktop */
  .gnd-menu,
  .gnd-nested > .gnd-menu {
    position: static !important;
    top: auto !important; left: auto !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-width: 0 !important;
    display: none;
  }
  /* zera o ::after que cria a caixa visual no desktop */
  .gnd-menu::after,
  .gnd-nested > .gnd-menu::after { display: none !important; }

  .gnd.open > .gnd-menu { display: block; }
  .gnd-menu > * { position: static !important; z-index: auto !important; }

  /* todos alinhados à esquerda igual ao topo */
  .gnd-item { padding: 11px 24px; font-size: 14px; text-align: left; }
  .gnd-nested .gnd-item { padding-left: 24px; }
  .gnd-nested .gnd-nested .gnd-item { padding-left: 24px; }

  .hero-centered .hero-content { padding-top: 96px; }
}
@media (max-width: 768px) {
  .hero-centered .hero-content { padding-top: 80px; }
}
@media (max-width: 768px) {
  .hero-centered .hero-content { padding-top: 80px; }
}

/* ============================================================
   HERO — centralizado, clima noturno
============================================================ */
.hero-sleep {
  background: radial-gradient(130% 120% at 50% 0%, #0a4651 0%, #063840 40%, #042b33 72%, #02191e 100%);
  overflow: hidden;
}
/* Marca d'água do ícone — hero */
.hero-sleep::after {
  content: '';
  position: absolute;
  left: -60px;
  bottom: 4%;
  width: 320px;
  height: 320px;
  background: url('img/gravital-icone-logo-branco.png') no-repeat center / contain;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.hero-centered {
  min-height: 100vh;
  text-align: center;
}
.hero-centered .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  padding: 24px 24px 80px;
}
.hero-centered .hero-content > * {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sleep .hero-overlay {
  background: radial-gradient(circle at 50% 38%, rgba(2,25,30,0.15) 0%, rgba(2,25,30,0.55) 70%, rgba(2,25,30,0.78) 100%);
}

/* Logo da Gravital no topo do hero */
.hero-brand {
  height: 36px;
  width: auto;
  margin-bottom: 28px;
  opacity: .90;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .hero-title {
  font-size: clamp(30px, 5vw, 50px);
  margin-bottom: 10px;
}
.hero-kicker {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  letter-spacing: .3px;
  margin-bottom: 30px;
}
.hero-centered .hero-sub {
  font-size: 17px;
  margin-bottom: 36px;
}
/* Descrição completa (texto do documento), depois do botão */
.hero-desc {
  text-align: left;
  max-width: 680px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-desc p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
  margin-bottom: 14px;
}
.hero-desc p:last-child { margin-bottom: 0; }

/* céu noturno */
.hero-sky { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-wm-moon {
  position: absolute;
  top: 6%;
  right: 7%;
  width: 130px;
  height: 130px;
  object-fit: contain;
  opacity: 0.13;
  pointer-events: none;
}
.star {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #eafcff;
  box-shadow: 0 0 6px 1px rgba(234,252,255,0.8);
  animation: twinkle 4s infinite ease-in-out;
}
.star.s1 { top: 16%; left: 12%; }
.star.s2 { top: 26%; left: 22%; width: 2px; height: 2px; animation-delay: .6s; }
.star.s3 { top: 12%; left: 38%; animation-delay: 1.2s; }
.star.s4 { top: 38%; left: 8%; width: 2px; height: 2px; animation-delay: 1.8s; }
.star.s5 { top: 20%; left: 66%; animation-delay: .3s; }
.star.s6 { top: 54%; left: 14%; width: 2px; height: 2px; animation-delay: 2.4s; }
.star.s7 { top: 64%; left: 80%; animation-delay: 1.5s; }
.star.s8 { top: 30%; left: 86%; width: 2px; height: 2px; animation-delay: .9s; }
.star.s9 { top: 72%; left: 30%; animation-delay: 2.1s; }
@keyframes twinkle {
  0%, 100% { opacity: .2; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-video { width: 100%; margin: 4px auto 30px; }
/* wrapper interno que abraça o vídeo e clipa todos os overlays */
.vsl-inner {
  position: relative;
  max-width: 260px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
}
.vsl-inner video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
/* card central "Tirar do mudo" */
.vsl-unmute-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  border-radius: 40px;
  padding: 11px 20px 11px 14px;
  color: #fff;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  z-index: 10;
}
.vsl-unmute-card:hover { background: rgba(0,0,0,0.82); }
.vsl-unmute-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vsl-pulse 1.5s ease-in-out infinite;
}
.vsl-unmute-icon svg { width: 20px; height: 20px; }
@keyframes vsl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.18); }
}
/* feedback de som (aparece e desaparece) */
.vsl-sound-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
}
.vsl-sound-feedback svg { width: 26px; height: 26px; }
.vsl-sound-feedback.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: vsl-soundfx 1.2s ease forwards;
}
@keyframes vsl-soundfx {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  20%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  70%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}
/* barra de progresso (somente leitura) */
.vsl-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.25);
  pointer-events: none;
}
.vsl-progress-fill {
  height: 100%;
  width: 0%;
  background: #17b8c4;
  transition: width 0.25s linear;
}
/* botão fullscreen canto inferior direito */
.vsl-fullbtn {
  position: absolute;
  bottom: 10px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10;
}
.vsl-fullbtn:hover { background: rgba(0,0,0,0.8); }
.vsl-fullbtn svg { width: 16px; height: 16px; }
/* fullscreen: vídeo ocupa toda a tela */
#vslWrap:fullscreen,
#vslWrap:-webkit-full-screen {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#vslWrap:fullscreen video,
#vslWrap:-webkit-full-screen video {
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: 100vh;
  border-radius: 0;
  margin: 0;
}
#vslWrap:fullscreen .vsl-fullbtn,
#vslWrap:-webkit-full-screen .vsl-fullbtn {
  right: 16px;
  bottom: 16px;
}

/* botão flutuante WhatsApp */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(0,0,0,0.36);
}
.wa-float svg { width: 56px; height: 56px; }

/* ============================================================
   PLACEHOLDER DE VÍDEO (genérico)
============================================================ */
.video-ph {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #07171b;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* formato Instagram (vertical) usado no hero */
.video-ph.portrait {
  aspect-ratio: 9 / 16;
  max-width: 260px;
  margin: 0 auto;
}
.video-ph-play {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.video-ph-play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-ph-play:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.08); }

/* Dobra 02: o vídeo ocupa o slot do vídeo da LP base, sem card/sombra */
.conditions-video { background: transparent; box-shadow: none; }

/* ============================================================
   FOOTER MÍNIMO (sem links externos)
============================================================ */
.footer-min {
  background: #042d35;
  padding: 22px 0;
  text-align: center;
}
.footer-min-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   DOBRA 03 — O peso da insônia
============================================================ */
.problem { padding: 100px 0; background: var(--bg); }
.problem-head { max-width: 820px; margin: 0 auto 56px; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.problem-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px;
  transition: var(--transition);
}
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.problem-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.problem-icon svg { width: 26px; height: 26px; }
.problem-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--text); margin-bottom: 10px; }
.problem-card p { font-size: 14px; color: var(--text-light); }

/* ============================================================
   DOBRA 04 — Por que os tratamentos falham
============================================================ */
.fail { padding: 100px 0; background: #edf1f2; text-align: center; }
.fail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; text-align: left; }
.fail-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.fail-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #d8e0e3;
  overflow: hidden;
}
.fail-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.fail-card-body { padding: 28px 26px; }
.fail-card h3 { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--text); margin-bottom: 12px; }
.fail-card p { font-size: 14.5px; color: var(--text-light); }

/* ============================================================
   DOBRA 05 — Pilares (imagens reais, grid herdado do style.css)
============================================================ */
/* Foco das imagens: evita cortar o ponto de interesse em mobile */
img[src*="canabinoide"] { object-fit: cover; object-position: center 18%; }
img[src*="dormindo"]    { object-fit: cover; object-position: center 22%; }

/* ============================================================
   DOBRA 02 — Vídeos (dentro da seção etapas, lado a lado)
============================================================ */
.videos-stack { display: flex; flex-direction: column; gap: 40px; max-width: 900px; margin: 0 auto 64px; }
.videos-stack-row { flex-direction: row; gap: 24px; max-width: 100%; }
.videos-stack-row .video-item { flex: 1; min-width: 0; }

/* ============================================================
   DOBRA 07 — Etapas (timeline)
============================================================ */
.steps { padding: 100px 0; background: #edf1f2; text-align: center; }
.steps-timeline { max-width: 820px; margin: 56px auto 0; text-align: left; position: relative; }
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 33px; top: 30px; bottom: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(23,184,196,0.2));
}
.step { position: relative; display: grid; grid-template-columns: 68px 1fr; gap: 24px; padding-bottom: 36px; }
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: 0 6px 24px rgba(6,56,64,0.25);
}
.step:last-child .step-num { background: var(--gold); }
.step-num svg { width: 30px; height: 30px; }
.step-body { background: #fff; border-radius: 14px; padding: 26px 30px; box-shadow: var(--shadow); align-self: start; }
.step-body h3 { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--text); margin-bottom: 10px; }
.step-body p { font-size: 15px; color: var(--text-light); }
.step-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 5px 12px;
  border-radius: 20px;
}
.steps-cta { margin-top: 52px; text-align: center; }

/* ============================================================
   DOBRA 08 — A parceria
============================================================ */
.partner { padding: 100px 0; background: var(--bg); }
.partner-head { max-width: 760px; margin: 0 auto 56px; }
.partner-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; }
.partner-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 36px;
  border-top: 5px solid var(--gold);
  height: 100%;
}
.partner-card-inmind { border-top-color: var(--inmind); }
.partner-logo { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--burgundy); margin-bottom: 6px; }
.partner-logo-img { height: 34px; width: auto; display: block; }
.partner-card-inmind .partner-logo { color: #3b3f8f; }
.partner-role { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 18px; }
.partner-card-inmind .partner-role { color: var(--inmind); }
.partner-card > p { font-size: 14.5px; color: var(--text-light); margin-bottom: 18px; }
.partner-list { display: flex; flex-direction: column; gap: 8px; }
.partner-list li { font-size: 14px; color: var(--text); padding-left: 24px; position: relative; }
.partner-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.partner-card-inmind .partner-list li::before { color: var(--inmind); }
.partner-bridge {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.partner-bridge svg { width: 26px; height: 26px; }

/* ============================================================
   DOBRA 09 — Este protocolo é para você?
============================================================ */
.qualify { padding: 100px 0; background: #edf1f2; text-align: center; }

.qualify-head { max-width: 700px; margin: 0 auto 48px; }
.qualify-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700; line-height: 1.3;
  color: var(--text);
  margin-bottom: 18px;
}
.qualify-lead { font-size: 16px; color: var(--text-light); }

.qualify-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.qualify-list li {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  font-size: 15px; color: var(--text-light); line-height: 1.6;
}
.qualify-list li strong { color: var(--text); }
.qualify-check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.qualify-check svg { width: 17px; height: 17px; }
.qualify-cta { margin-top: 44px; }

/* ============================================================
   DOBRA 12 — Chamada final
============================================================ */
.final-cta { position: relative; padding: 100px 0; background: var(--burgundy); overflow: hidden; }
/* Marca d'água do ícone — chamada final */
.final-cta::before {
  content: '';
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
  height: 440px;
  background: url('img/gravital-icone-logo-branco.png') no-repeat center / contain;
  opacity: 0.05;
  pointer-events: none;
}
.final-cta-glow {
  position: absolute;
  bottom: -160px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(23,184,196,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 700px; margin: 0 auto; text-align: center; }
.final-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 700; color: #fff; line-height: 1.2;
  margin-bottom: 18px;
}
.final-cta-sub { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 36px; }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 768px) {
  .hero-centered { min-height: auto; padding: 0; }
  .hero-centered .hero-content { padding: 16px 18px 60px; }
  .hero-wm-moon { width: 80px; height: 80px; top: 4%; right: 5%; }
  .hero-video { margin-bottom: 26px; }
  .video-ph.portrait { max-width: 240px; }
  .hero-centered .hero-sub { font-size: 16px; }
}

/* Responsivo — dobras 03 a 12 */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .problem { padding: 64px 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .fail { padding: 64px 0; }
  .fail-grid { grid-template-columns: 1fr; gap: 18px; }
  .videos-stack-row { flex-direction: column; gap: 20px; }
  .steps { padding: 64px 0; }
  .steps-timeline::before { left: 21px; top: 22px; bottom: 22px; }
  .step { grid-template-columns: 44px 1fr; gap: 12px; }
  .step-num { width: 44px; height: 44px; font-size: 17px; }
  .step-num svg { width: 22px; height: 22px; }
  .step-body { padding: 16px 18px; }
  /* Imagens dos pilares: mais altura em mobile para não cortar */
  .treatments .treatment-visual { min-height: 300px; }
  .partner { padding: 64px 0; }
  .partner-grid { grid-template-columns: 1fr; gap: 18px; }
  .partner-bridge { transform: rotate(90deg); margin: 0 auto; }
  .qualify { padding: 64px 0; }
  .final-cta { padding: 64px 0; }
  .final-cta-actions { flex-direction: column; }
  .final-cta-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  /* Container — evita texto vazar nas bordas */
  .container { padding-left: 16px; padding-right: 16px; }

  /* Botões — padding lateral menor para não cortar */
  .btn { padding: 13px 20px; font-size: 13px; }

  /* Títulos de seção — evita overflow horizontal */
  .section-title { font-size: clamp(22px, 6vw, 28px); }
  .section-desc { font-size: 14px; }

  /* Hero */
  .hero-title { font-size: clamp(24px, 7vw, 34px); }
  .hero-desc p { font-size: 14px; }

  /* Steps */
  .steps-cta { text-align: center; }
  .steps-cta .btn { display: inline-block; width: auto; }

  /* Qualify */
  .qualify-list li { padding: 16px 18px; font-size: 14px; }

  /* Fail cards */
  .fail-card-body { padding: 20px 18px; }

  /* Partner */
  .partner-card { padding: 28px 22px; }

  /* Final CTA */
  .final-cta-actions .btn { width: 100%; text-align: center; }
}
