/* MEDICAL — Landing Page (Campanha)
   Estética: Apple/Stripe/Linear — navy premium, muito espaço em branco, luz suave.
   Paleta própria da campanha (não a paleta operacional do app em assets/css/app.css). */

:root {
  --navy-950: #050b16;
  --navy-900: #0a1628;
  --navy-800: #101f38;
  --navy-700: #16304f;
  --azul-acento: #4a9bc7;
  --azul-acento-claro: #7fc4ec;
  --branco: #ffffff;
  --gelo: #f6f8fb;
  --cinza-100: #eef1f6;
  --cinza-400: #8993a4;
  --cinza-600: #5b6572;
  --linha: rgba(255, 255, 255, 0.10);
  --linha-clara: #e4e8ef;
  --sombra-card: 0 20px 60px -20px rgba(10, 22, 40, 0.35);
  --raio: 12px;
  --raio-sm: 10px;
  --fonte: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--fonte);
  font-size: clamp(15px, .85vw + 13px, 17px);
  color: var(--navy-900);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; }

/* ---------- Navbar ---------- */
/* Achado: nav nascia 100% transparente (sem scrim) — sobre a área clara do
   topo do hero-bg.jpg (ou qualquer seção clara ao navegar por âncora), os
   links brancos ficavam ilegíveis até o primeiro scroll disparar .scrolled.
   Fix: scrim permanente (gradiente translúcido) sempre presente; .scrolled
   só reforça (fundo mais sólido + blur), nunca é a única fonte de contraste. */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(5,11,22,.62) 0%, rgba(5,11,22,.28) 70%, transparent 100%);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, backdrop-filter .3s ease;
}
.lp-nav.scrolled {
  background: rgba(5, 11, 22, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--linha), 0 12px 32px -18px rgba(0,0,0,.5);
  padding: 13px 0;
}
.lp-nav .container { display: flex; align-items: center; justify-content: space-between; }
.lp-brand { display: flex; align-items: center; gap: 10px; }
.lp-brand img { height: 40px; width: auto; transition: height .3s ease; }
.lp-nav.scrolled .lp-brand img { height: 34px; }
.lp-brand span {
  color: var(--branco);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .01em;
}
.lp-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.lp-nav-links a {
  position: relative;
  color: rgba(255,255,255,.88);
  font-size: .92rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
  transition: color .2s ease;
}
.lp-nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--azul-acento-claro);
  border-radius: 2px;
  transition: right .25s ease;
}
.lp-nav-links a:hover { color: var(--branco); }
.lp-nav-links a:hover::after { right: 0; }
.lp-brand img { filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--branco);
  color: var(--navy-950) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}
.lp-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(0,0,0,.35); }
.lp-nav-toggle {
  display: none;
  background: none; border: 0; padding: 8px; cursor: pointer;
}
.lp-nav-toggle svg { width: 24px; height: 24px; stroke: var(--branco); }

/* Achado real: .lp-mobile-menu só tinha display:none dentro do @media(max-width:860px)
   — em telas largas (sem esse media query aplicado) o navegador caía no display
   padrão de <div> (block), renderizando o menu mobile inteiro, sem estilo, empilhado
   logo abaixo da navbar (texto azul sublinhado default = duplicidade visível no
   desktop). Fix: display:none como estado-base, incondicional, fora do media query
   — só .aberto (dentro do media query) reabre, e só existe forma de abrir (o botão
   toggle) abaixo de 860px de qualquer forma. */
.lp-mobile-menu { display: none; }

/* ---------- Hero ---------- */
.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--branco);
  overflow: hidden;
  background: var(--navy-950);
}
.lp-hero-bg {
  position: absolute; inset: -6% -2%;
  background-image: url('../img/clinic-2.jpg');
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.08) translateY(var(--parallax-y, 0px));
  opacity: .55;
  will-change: transform;
}
.lp-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 600px at var(--mx, 15%) var(--my, 0%), rgba(74,155,199,.24), transparent 60%),
    linear-gradient(180deg, rgba(5,11,22,.55) 0%, rgba(5,11,22,.86) 55%, var(--navy-950) 100%);
  transition: background-position .4s ease;
}
/* Fundo interativo: partículas/linhas SVG sutis, reagem levemente ao mouse */
.lp-hero-fx {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  transform: translate3d(calc(var(--mx-px, 0) * -1), calc(var(--my-px, 0) * -1), 0);
  transition: transform .3s ease-out;
}
.lp-hero-fx svg { width: 100%; height: 100%; }
.lp-hero-fx .fx-linha {
  fill: none;
  stroke: url(#fxGrad);
  stroke-width: 1;
  stroke-dasharray: 6 10;
  opacity: .55;
  animation: fxFlow 18s linear infinite;
}
@keyframes fxFlow { to { stroke-dashoffset: -400; } }
.lp-hero-fx .fx-dot {
  fill: var(--azul-acento-claro);
  opacity: .5;
  animation: fxPulse 4s ease-in-out infinite;
}
@keyframes fxPulse { 0%,100% { opacity: .25; transform: scale(1); } 50% { opacity: .7; transform: scale(1.6); } }
.lp-hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 120px;
  max-width: 760px;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--azul-acento-claro);
  background: rgba(74,155,199,.12);
  border: 1px solid rgba(74,155,199,.28);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.lp-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--azul-acento-claro);
  box-shadow: 0 0 0 4px rgba(127,196,236,.18);
}
.lp-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.lp-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--azul-acento-claro), #b9e3fb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero p.lp-lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.76);
  max-width: 560px;
  margin: 0 0 40px;
}
.lp-hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .96rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
  min-height: 44px;
}
.lp-btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #eef3f8);
  color: var(--navy-950);
  box-shadow: 0 14px 30px -12px rgba(255,255,255,.25);
}
.lp-btn-primary::before {
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(74,155,199,.35), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.lp-btn-primary:hover::before { left: 130%; }
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(255,255,255,.35); }
.lp-btn-ghost {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.22);
  color: var(--branco);
}
.lp-btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }
.lp-btn-dark {
  background: var(--navy-950);
  color: var(--branco);
}
.lp-btn-dark:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(5,11,22,.5); }

.lp-hero-note {
  margin-top: 22px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ---------- Mockup real da interface — Agenda em tablet + smartphone ----------
   Achado: o elemento anterior aqui era uma FOTO de banco de imagens (pessoas
   olhando monitores) — não representava a interface real do produto, e ficava
   cortada/mal posicionada na borda do hero. Substituído por uma recriação
   fiel (HTML/CSS) da tela real de Agenda do MEDICAL — mesmos elementos e
   MESMA paleta de status já documentada em CLAUDE.md (Controller::corStatus-
   AtendimentoAtendimento(): #4A9BC7 Agendado / #f0ad4e Aguardando / #1f5f85
   Em atendimento / #2e7d32 Atendido) — é a interface de verdade, não uma
   ilustração genérica de dashboard. */
.lp-hero-mock {
  position: absolute;
  right: 4%; bottom: 8%;
  width: 560px;
  max-width: 42vw;
  z-index: 2;
  opacity: 0;
  animation: lpFadeUp 1s ease .3s forwards;
}
@media (max-width: 992px) { .lp-hero-mock { display: none; } }

.lp-device { border-radius: 14px; overflow: hidden; }
/* Bezel real de tablet (moldura escura + câmera frontal), não só uma foto emoldurada */
.lp-device-tablet {
  position: relative;
  padding: 14px 10px 10px;
  background: linear-gradient(155deg, #1a2230, var(--navy-950));
  box-shadow:
    0 40px 90px -30px rgba(0,0,0,.6),
    0 14px 34px -18px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.06);
  border-radius: 18px;
  transform-style: preserve-3d;
  transform: perspective(1400px) rotateX(var(--tilt-x, 4deg)) rotateY(var(--tilt-y, -8deg)) rotate(1.2deg);
  transition: transform .25s ease-out;
}
.lp-device-camera {
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #0a0e16;
  box-shadow: 0 0 0 2px rgba(255,255,255,.06);
}
.lp-device-tablet .lp-device-tela { background: #fff; padding: 18px 20px; border-radius: 8px; }
.lp-device-phone {
  position: absolute;
  left: -60px; bottom: -46px;
  width: 168px;
  padding: 8px 7px 16px;
  background: var(--navy-950);
  border-radius: 26px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
  transform: rotate(-4deg);
  z-index: 3;
}
.lp-device-phone .lp-device-tela { background: #fff; padding: 10px; border-radius: 10px; }
.lp-device-home {
  position: absolute;
  bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}
.lp-ui-topo { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.lp-ui-marca { font-size: .78rem; font-weight: 700; color: var(--navy-900); display: flex; align-items: center; gap: 6px; }
.lp-ui-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--azul-acento); display: inline-block; }
.lp-ui-data { font-size: .68rem; color: var(--cinza-400); font-weight: 600; }
.lp-ui-kpis { display: flex; gap: 8px; margin-bottom: 14px; }
.lp-ui-kpi {
  flex: 1;
  background: var(--gelo);
  border-radius: 10px;
  padding: 8px 10px;
  text-align: center;
}
.lp-ui-kpi b { display: block; font-size: 1.05rem; font-weight: 700; color: var(--navy-900); line-height: 1.1; }
.lp-ui-kpi span { font-size: .6rem; color: var(--cinza-600); font-weight: 600; }
.lp-ui-kpi-up b { color: var(--sucesso, #2e7d32); }

/* Painel de gráfico — mini dashboard (2 séries: Emagrecimento / Saúde hormonal) */
.lp-ui-painel { background: var(--gelo); border-radius: 10px; padding: 10px 12px 8px; margin-bottom: 10px; }
.lp-ui-painel-topo { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; font-size: .6rem; font-weight: 700; color: var(--navy-900); }
.lp-ui-legenda { display: flex; align-items: center; gap: 4px; font-weight: 600; color: var(--cinza-600); }
.lp-ui-legenda i { width: 6px; height: 6px; border-radius: 50%; display: inline-block; margin-right: 2px; }
.lp-ui-legenda i + i { margin-left: 6px; }
.lp-ui-grafico { display: flex; align-items: flex-end; gap: 6px; height: 54px; }
.lp-ui-barra { position: relative; flex: 1; height: 100%; display: flex; align-items: flex-end; }
.lp-ui-barra::before, .lp-ui-barra::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 40%;
  border-radius: 3px 3px 0 0;
}
.lp-ui-barra::before { left: 4%; height: var(--h1); background: #4A9BC7; opacity: .85; }
.lp-ui-barra::after { right: 4%; height: var(--h2); background: #7fc4ec; }

.lp-ui-lista { display: flex; flex-direction: column; gap: 7px; }
.lp-ui-lista-compacta { gap: 6px; }
.lp-ui-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  background: var(--gelo);
  transition: transform .2s ease;
}
.lp-ui-item-destaque { background: rgba(74,155,199,.12); box-shadow: 0 0 0 1.5px rgba(74,155,199,.35); }
.lp-ui-hora { font-size: .68rem; font-weight: 700; color: var(--navy-900); width: 34px; flex-shrink: 0; }
.lp-ui-nome { font-size: .72rem; font-weight: 600; color: var(--navy-900); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lp-ui-pill { font-size: .58rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; color: #fff; flex-shrink: 0; }
.lp-ui-agendado { background: #4A9BC7; }
.lp-ui-aguardando { background: #f0ad4e; }
.lp-ui-emAtendimento { background: #1f5f85; }
.lp-ui-atendido { background: #2e7d32; }
.lp-ui-topo-phone { margin-bottom: 8px; }
.lp-ui-item-phone { flex-wrap: wrap; }
@media (max-width: 1180px) { .lp-hero-mock { width: 480px; } .lp-device-phone { width: 140px; left: -46px; } }

@keyframes lpFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Logos / prova social ---------- */
.lp-social {
  background: var(--gelo);
  padding: 34px 0;
  border-bottom: 1px solid var(--linha-clara);
}
.lp-social p {
  text-align: center;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cinza-600);
  margin: 0 0 20px;
  font-weight: 600;
}
.lp-social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
  color: var(--cinza-400);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
}

/* ---------- Launch UI — blobs de gradiente, dot-grid, glow ---------- */
.lp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.lp-blob-acento { background: radial-gradient(circle, rgba(74,155,199,.35), transparent 70%); }
.lp-blob-navy { background: radial-gradient(circle, rgba(22,48,79,.5), transparent 70%); }

.lp-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(16,31,56,.10) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  z-index: 0;
}
.lp-section-dark .lp-bg-dots {
  background-image: radial-gradient(rgba(255,255,255,.10) 1.4px, transparent 1.4px);
}

/* Marca d'água — logo colorida em fundo claro, uso decorativo (Launch UI) */
.lp-marca-agua {
  position: absolute;
  opacity: .05;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* ---------- Section base ---------- */
.lp-section { padding: 120px 0; position: relative; overflow: hidden; }
.lp-section-tight { padding: 90px 0; position: relative; overflow: hidden; }
.lp-section-dark {
  background: var(--navy-950);
  color: var(--branco);
}
.lp-section-alt { background: var(--gelo); }
.lp-section > .container, .lp-section-tight > .container { position: relative; z-index: 2; }

.lp-kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--azul-acento);
  margin-bottom: 14px;
}
.lp-section-dark .lp-kicker { color: var(--azul-acento-claro); }

.lp-h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 18px;
  max-width: 640px;
}
.lp-lead-2 {
  font-size: 1.08rem;
  color: var(--cinza-600);
  max-width: 560px;
  margin: 0 0 0;
}
.lp-section-dark .lp-lead-2 { color: rgba(255,255,255,.66); }

.lp-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.lp-head-row > div { flex: 1 1 380px; }

/* Miniaturas de contexto — gestão eficiente/agenda, ao lado do título de seção */
.lp-head-thumb, .lp-seg-thumb {
  width: 190px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 24px 50px -20px rgba(10,22,40,.35), 0 0 0 1px rgba(10,22,40,.05);
}
.lp-seg-thumb {
  position: absolute;
  right: 0; top: 0;
  width: 220px; height: 100%;
  border-radius: 14px;
  display: none;
}
@media (max-width: 700px) { .lp-head-thumb { display: none; } }

/* ---------- Grid de recursos ---------- */
.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) { .lp-grid-3, .lp-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .lp-grid-3, .lp-grid-4 { grid-template-columns: 1fr; } }

.lp-card {
  background: var(--branco);
  border: 1px solid var(--linha-clara);
  border-radius: var(--raio);
  padding: 30px 26px;
  box-shadow: 0 1px 2px rgba(10,22,40,.04);
  transform-style: preserve-3d;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
  will-change: transform;
}
.lp-card:hover {
  transform: perspective(900px) rotateX(3deg) rotateY(-3deg) translateY(-6px) translateZ(6px);
  box-shadow:
    0 30px 60px -24px rgba(10,22,40,.28),
    0 10px 22px -12px rgba(10,22,40,.18);
  border-color: rgba(74,155,199,.35);
}
.lp-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(74,155,199,.15), rgba(31,95,133,.08));
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 6px 14px -8px rgba(74,155,199,.4);
  transition: transform .3s ease;
}
.lp-card:hover .lp-card-icon { transform: translateZ(14px) scale(1.06); }
.lp-card-icon svg { width: 22px; height: 22px; stroke: var(--navy-800); }
.lp-card h3 {
  font-size: 1.05rem;
  font-weight: 620;
  margin: 0 0 8px;
  color: var(--navy-900);
}
.lp-card p { font-size: .92rem; color: var(--cinza-600); margin: 0; }

/* Dark variant cards (segmentos) */
.lp-card-dark {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  border: 1px solid var(--linha);
}
.lp-card-dark:hover {
  box-shadow:
    0 30px 60px -22px rgba(0,0,0,.6),
    0 0 0 1px rgba(127,196,236,.18),
    0 0 40px -10px rgba(74,155,199,.25);
}
.lp-card-dark h3 { color: var(--branco); }
.lp-card-dark p { color: rgba(255,255,255,.62); }
.lp-card-dark .lp-card-icon { background: linear-gradient(135deg, rgba(127,196,236,.18), rgba(127,196,236,.06)); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 6px 16px -8px rgba(74,155,199,.5); }
.lp-card-dark .lp-card-icon svg { stroke: var(--azul-acento-claro); }

/* ---------- SVG line-draw ao entrar em viewport ---------- */
.lp-svg-draw path, .lp-svg-draw circle, .lp-svg-draw polyline {
  stroke-dasharray: var(--dash, 240);
  stroke-dashoffset: var(--dash, 240);
  transition: stroke-dashoffset 1.1s cubic-bezier(.2,.8,.2,1);
}
.lp-reveal.lp-visivel .lp-svg-draw path,
.lp-reveal.lp-visivel .lp-svg-draw circle,
.lp-reveal.lp-visivel .lp-svg-draw polyline { stroke-dashoffset: 0; }

/* ---------- Divisor decorativo entre seções (SVG animado) ---------- */
.lp-divisor { display: block; width: 100%; height: 64px; margin-top: -1px; }
.lp-divisor path { animation: lpDivisorFlow 10s ease-in-out infinite alternate; }
@keyframes lpDivisorFlow {
  0%   { d: path("M0,32 C 300,64 900,0 1440,32 L1440,64 L0,64 Z"); }
  100% { d: path("M0,32 C 300,0 900,64 1440,32 L1440,64 L0,64 Z"); }
}

/* ---------- Split (imagem + texto) ---------- */
.lp-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.lp-split.lp-split-rev { grid-template-columns: .95fr 1.05fr; }
.lp-split.lp-split-rev .lp-split-media { order: 2; }
@media (max-width: 900px) {
  .lp-split, .lp-split.lp-split-rev { grid-template-columns: 1fr; gap: 40px; }
  .lp-split.lp-split-rev .lp-split-media { order: 0; }
}
.lp-split-media {
  position: relative;
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow:
    0 30px 70px -28px rgba(10,22,40,.35),
    0 8px 20px -10px rgba(10,22,40,.2),
    0 0 0 1px rgba(10,22,40,.04);
  border: 1px solid var(--linha-clara);
  isolation: isolate;
}
.lp-split-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,11,22,.28) 100%);
  z-index: 1;
  pointer-events: none;
}
.lp-split-media img {
  width: 100%; height: 112%; object-fit: cover; aspect-ratio: 4/3;
  transform: translateY(var(--parallax-img, 0px));
  will-change: transform;
}

.lp-checklist { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.lp-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .98rem; color: var(--cinza-600);
}
.lp-checklist svg { flex-shrink: 0; width: 20px; height: 20px; stroke: var(--azul-acento); margin-top: 1px; }

/* ---------- Estatísticas ---------- */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 700px) { .lp-stats { grid-template-columns: repeat(2, 1fr); } }
.lp-stat b {
  display: block;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--branco), var(--azul-acento-claro));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-stat span { font-size: .86rem; color: rgba(255,255,255,.6); }

/* ---------- Textura de fundo (camada de profundidade, "fundos interativos") ---------- */
.lp-section-textura { position: relative; overflow: hidden; }
.lp-textura-bg {
  position: absolute; inset: -8% -4%;
  background-image: var(--textura-img);
  background-size: cover;
  background-position: center;
  opacity: .05;
  filter: grayscale(.3) contrast(1.1);
  transform: translateY(var(--parallax-textura, 0px)) scale(1.06);
  will-change: transform;
  z-index: 0;
}
.lp-section-textura > .container { position: relative; z-index: 1; }

/* ---------- Segmentos ---------- */
.lp-seg-header { text-align: center; margin-bottom: 56px; }
.lp-seg-header .lp-h2 { margin-left: auto; margin-right: auto; }
.lp-seg-header .lp-lead-2 { margin-left: auto; margin-right: auto; }
@media (min-width: 992px) {
  .lp-seg-header { position: relative; text-align: left; padding-right: 260px; min-height: 180px; display: flex; flex-direction: column; justify-content: center; }
  .lp-seg-header .lp-h2, .lp-seg-header .lp-lead-2 { margin-left: 0; margin-right: 0; }
  .lp-seg-thumb { display: block; box-shadow: 0 24px 50px -20px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08); }
}

/* ---------- Custo-benefício (fictício — gráfico + depoimentos, substitui a antiga seção "Planos") ---------- */
.lp-cb-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 56px;
}
@media (max-width: 860px) { .lp-cb-grid { grid-template-columns: 1fr; } }

.lp-cb-grafico-card {
  background: var(--branco);
  border: 1px solid var(--linha-clara);
  border-radius: var(--raio);
  padding: 28px 28px 22px;
  box-shadow: var(--sombra-card);
}
.lp-cb-grafico-legenda { display: block; font-size: .82rem; font-weight: 600; color: var(--navy-800); margin-bottom: 18px; }
.lp-cb-grafico { height: 150px; }
.lp-cb-grafico-eixo { display: flex; justify-content: space-between; font-size: .74rem; color: var(--cinza-400); margin-top: 8px; }
.lp-cb-grafico-nota { font-size: .74rem; color: var(--cinza-400); margin: 14px 0 0; }

.lp-cb-stats { grid-template-columns: 1fr; text-align: left; background: var(--navy-950); border-radius: var(--raio); padding: 28px; gap: 18px; }
.lp-stat-claro { text-align: left; }
.lp-stat-claro span { display: block; margin-top: 4px; }

.lp-cb-depoimentos-titulo { text-align: center; font-size: 1.05rem; font-weight: 700; color: var(--navy-900); margin: 0 0 28px; }

.lp-depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .lp-depo-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.lp-depo-card {
  background: var(--branco);
  border: 1px solid var(--linha-clara);
  border-radius: var(--raio);
  padding: 26px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.lp-depo-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-card); }
.lp-depo-topo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.lp-depo-avatar {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: var(--branco);
  background: var(--depo-cor, var(--azul-acento));
}
.lp-depo-nome { display: block; font-size: .92rem; color: var(--navy-900); }
.lp-depo-cargo { display: block; font-size: .76rem; color: var(--cinza-400); }
.lp-depo-texto { font-size: .88rem; color: var(--cinza-600); margin: 0; line-height: 1.55; }

.lp-cb-depo-nota {
  text-align: center;
  font-size: .78rem;
  color: var(--cinza-400);
  margin: 30px auto 0;
  max-width: 640px;
}

/* ---------- Depoimento ---------- */
.lp-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.lp-quote blockquote {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.lp-quote-author { font-size: .9rem; color: var(--cinza-600); }
.lp-quote-author b { color: var(--navy-900); }

/* ---------- CTA final ---------- */
.lp-cta-final {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--branco);
  border-radius: 18px;
  padding: 80px 56px;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 50px 100px -30px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.06);
}
.lp-cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 400px at 50% 0%, rgba(74,155,199,.25), transparent 65%);
}
.lp-cta-final > * { position: relative; z-index: 1; }
/* Achado: a regra acima (pra levantar o conteúdo real acima do glow ::before)
   também pegava os 2 <div class="lp-blob"> — decorativos, filhos diretos do
   card — virando-os de position:absolute pra relative. Um blob de 420px/320px
   "relative" vira bloco normal no fluxo, empurrando espaço vertical vazio
   enorme entre o conteúdo (exatamente o buraco reportado). Fix: especificidade
   maior (.lp-cta-final .lp-blob = 2 classes > .lp-cta-final > * = 1 classe)
   devolve position:absolute só pros blobs, sem tirá-los do seletor geral. */
.lp-cta-final .lp-blob { position: absolute; z-index: 0; }
.lp-cta-final h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin: 0 0 14px; letter-spacing: -0.02em; }
.lp-cta-final p { color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 34px; }
.lp-cta-final .lp-hero-actions { justify-content: center; }

/* ---------- Formulário (modal de demonstração) ---------- */
.lp-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5,11,22,.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 20px;
}
.lp-modal-overlay.aberto { display: flex; }
.lp-modal {
  background: var(--branco);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.5);
  position: relative;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.lp-modal-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--cinza-100); border: 0; border-radius: 999px;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lp-modal h3 { font-size: 1.3rem; margin: 0 0 6px; font-weight: 650; }
.lp-modal p.lp-modal-sub { color: var(--cinza-600); font-size: .92rem; margin: 0 0 26px; }
.lp-field { margin-bottom: 16px; }
.lp-field label { display: block; font-size: .84rem; font-weight: 600; color: var(--navy-900); margin-bottom: 6px; }
.lp-field input, .lp-field select, .lp-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--raio-sm);
  border: 1px solid var(--linha-clara);
  font-family: var(--fonte);
  font-size: .94rem;
  min-height: 44px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lp-field input:focus, .lp-field select:focus, .lp-field textarea:focus {
  outline: none;
  border-color: var(--azul-acento);
  box-shadow: 0 0 0 3px rgba(74,155,199,.18);
}
.lp-modal .lp-btn { width: 100%; margin-top: 6px; }
.lp-form-feedback { font-size: .86rem; margin-top: 12px; text-align: center; display: none; }
.lp-form-feedback.ok { color: #2e7d32; display: block; }
.lp-form-feedback.erro { color: #BA181E; display: block; }

/* ---------- Footer ---------- */
.lp-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.55);
  padding: 60px 0 32px;
}
.lp-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--linha);
}
.lp-footer-brand { display: flex; align-items: center; gap: 10px; }
.lp-footer-brand img { height: 24px; }
.lp-footer-brand span { color: var(--branco); font-weight: 600; }
.lp-footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.lp-footer-links h4 { color: var(--branco); font-size: .82rem; font-weight: 600; margin: 0 0 14px; }
.lp-footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.lp-footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color .2s ease; }
.lp-footer-links a:hover { color: var(--branco); }

/* Redes sociais do rodapé — sem link real ainda (perfis não criados), só reserva
   de espaço visual pra quando existirem; cursor "not-allowed" deixa isso explícito. */
.lp-footer-social { display: flex; gap: 10px; margin-top: 16px; }
.lp-social-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--linha);
  color: rgba(255,255,255,.55);
  cursor: not-allowed;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.lp-social-icon svg { width: 16px; height: 16px; }
.lp-social-icon:hover { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.lp-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  font-size: .8rem;
}
.lp-footer-bottom a { color: rgba(255,255,255,.55); }

/* Rodapé final discreto — propriedade da plataforma (crédito ZOE Sistemas) */
.lp-footer-propriedade {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.42) !important;
  font-size: .78rem;
  opacity: .85;
  transition: opacity .2s ease, color .2s ease;
}
.lp-footer-propriedade:hover { opacity: 1; color: rgba(255,255,255,.75) !important; }
.lp-footer-propriedade img { height: 16px; width: auto; filter: brightness(0) invert(1); opacity: .8; }
.lp-footer-propriedade:hover img { opacity: 1; }

/* ---------- Reveal on scroll ---------- */
.lp-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.lp-reveal.lp-visivel { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .lp-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .lp-hero-mock { animation: none !important; opacity: 1 !important; transform: none !important; }
  .lp-hero-bg, .lp-hero-fx, .lp-divisor path, .fx-linha, .fx-dot { animation: none !important; transform: none !important; }
  .lp-card:hover, .lp-card:hover .lp-card-icon { transform: translateY(-4px) !important; }
}
@media (max-width: 992px), (hover: none) {
  .lp-hero-mock { transform: rotate(1.2deg) !important; }
  .lp-hero-fx { transform: none !important; }
}

/* ---------- Botão flutuante do WhatsApp ---------- */
.lp-whatsapp-flutuante {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #25d366, #1fb355);
  box-shadow: 0 16px 34px -12px rgba(37,211,102,.55), 0 4px 12px -4px rgba(0,0,0,.3);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
  opacity: 0;
  transform: translateY(16px) scale(.9);
  animation: lpWhatsAparecer .5s ease 1.2s forwards;
}
.lp-whatsapp-flutuante::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: lpWhatsPulso 2.4s ease-out infinite;
}
.lp-whatsapp-flutuante svg { width: 30px; height: 30px; fill: #fff; position: relative; z-index: 1; }
.lp-whatsapp-flutuante:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 22px 44px -14px rgba(37,211,102,.65), 0 6px 16px -6px rgba(0,0,0,.35); }
@keyframes lpWhatsAparecer { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes lpWhatsPulso {
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.35); opacity: 0; }
}
.lp-whatsapp-tooltip {
  position: absolute;
  right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--navy-950);
  color: var(--branco);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.lp-whatsapp-tooltip::after {
  content: "";
  position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--navy-950);
}
.lp-whatsapp-flutuante:hover .lp-whatsapp-tooltip { opacity: 1; transform: translateY(-50%) translateX(-4px); }
@media (max-width: 575.98px) {
  .lp-whatsapp-flutuante { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .lp-whatsapp-flutuante svg { width: 26px; height: 26px; }
  .lp-whatsapp-tooltip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-whatsapp-flutuante { animation: none; opacity: 1; transform: none; }
  .lp-whatsapp-flutuante::before { animation: none; display: none; }
}

/* ---------- Destaque de seção ativa na navbar principal ----------
   Antes existiam 2 barras (navbar + "quicknav" pill flutuante) fazendo a
   mesma coisa ao rolar — redundante (ver print do usuário). Removida a
   2ª barra; o mesmo conceito (Semrush: destacar onde o usuário está)
   agora vive só como estado ativo dos links já existentes da navbar. */
.lp-nav-links a.ativo {
  color: var(--branco);
}
.lp-nav-links a.ativo::after { right: 0; background: var(--azul-acento-claro); }

/* ---------- Faixa "cuidado humano" (bem-estar) ---------- */
.lp-humano {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 56px;
  background: var(--navy-900);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}
.lp-humano-media { position: relative; height: 100%; min-height: 340px; }
.lp-humano-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.lp-humano-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--navy-900) 100%);
}
.lp-humano-texto { padding: 48px 48px 48px 0; color: var(--branco); }
@media (max-width: 860px) {
  .lp-humano { grid-template-columns: 1fr; border-radius: 14px; }
  .lp-humano-media { min-height: 240px; }
  .lp-humano-media::after { background: linear-gradient(180deg, transparent 50%, var(--navy-900) 100%); }
  .lp-humano-texto { padding: 8px 28px 40px; }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 860px) {
  .lp-nav-links { display: none; }
  .lp-nav-toggle { display: inline-flex; }
  .lp-nav-cta { display: none; }
  .lp-mobile-menu {
    position: fixed; inset: 0; z-index: 60;
    background: var(--navy-950);
    display: none;
    flex-direction: column;
    padding: 26px 24px;
  }
  .lp-mobile-menu.aberto { display: flex; }
  .lp-mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
  .lp-mobile-menu a {
    color: var(--branco); font-size: 1.3rem; font-weight: 600;
    padding: 14px 0; border-bottom: 1px solid var(--linha);
  }
  .lp-mobile-menu .lp-btn { margin-top: 24px; }
}

@media (max-width: 700px) {
  .lp-section { padding: 76px 0; }
  .lp-hero-content { padding: 130px 0 90px; }
  .lp-cta-final { padding: 56px 26px; border-radius: 14px; }
}
