/* ============================================================
   Gerencia Agora! — Landing Page
   Construída sobre tokens.css (design system)
   3 direções visuais via html[data-direction="a|b|c"]
   ============================================================ */

:root {
  /* defaults — Direção A "Claro clássico" */
  --lp-page-bg: var(--neutral-0);
  --lp-section-alt: var(--neutral-50);
  --lp-hero-bg: var(--neutral-0);
  --lp-hero-fg: var(--neutral-900);
  --lp-hero-muted: var(--neutral-500);
  --lp-heading: var(--brand-blue-700);
  --lp-card-radius: var(--radius-xl);
  --lp-display-weight: 800;
  --lp-display-tracking: -0.03em;
  --lp-hero-size: clamp(38px, 4.6vw, 60px);
  --lp-dark-band: var(--brand-blue-700);
}

html { scroll-behavior: smooth; }

body.lp {
  font-size: 16px;
  line-height: 1.6;
  background: var(--lp-page-bg);
  color: var(--neutral-800);
  overflow-x: hidden;
}

.lp .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Direção B — "Navy impacto" ============ */
html[data-direction="b"] {
  --lp-hero-bg: var(--brand-blue-800);
  --lp-hero-fg: #FFFFFF;
  --lp-hero-muted: var(--brand-blue-200);
  --lp-section-alt: var(--neutral-50);
  --lp-display-weight: 800;
  --lp-hero-size: clamp(40px, 4.9vw, 64px);
  --lp-dark-band: var(--brand-blue-800);
}

/* ============ Direção C — "Quente editorial" ============ */
html[data-direction="c"] {
  --lp-page-bg: #FFFBF7;
  --lp-section-alt: var(--brand-orange-50);
  --lp-hero-bg: #FFFBF7;
  --lp-heading: var(--neutral-900);
  --lp-card-radius: var(--radius-2xl);
  --lp-display-weight: 700;
  --lp-display-tracking: -0.035em;
  --lp-hero-size: clamp(40px, 5vw, 66px);
  --lp-dark-band: var(--neutral-900);
}

/* ============================================================
   Header
   ============================================================ */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  background: transparent;
}
.lp-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
html[data-direction="b"] .lp-header:not(.is-scrolled) .lp-nav-link { color: var(--brand-blue-100); }
html[data-direction="b"] .lp-header:not(.is-scrolled) .lp-nav-link:hover { color: #fff; }
html[data-direction="b"] .lp-header:not(.is-scrolled) .lp-logo .lp-logo-text { color: #fff; }

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}
.lp-logo { display: flex; align-items: center; gap: 10px; flex: none; }
.lp-logo img { height: 36px; width: auto; }

.lp-nav { display: flex; align-items: center; gap: 4px; }
.lp-nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--neutral-600);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.lp-nav-link:hover { color: var(--neutral-900); background: rgba(0,0,0,.04); }
.lp-header-cta { display: flex; align-items: center; gap: 10px; }

.lp-burger {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  border-radius: var(--radius-md);
  align-items: center; justify-content: center;
  color: var(--neutral-700);
}
html[data-direction="b"] .lp-header:not(.is-scrolled) .lp-burger { color: #fff; }

.lp-mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 99;
  background: var(--neutral-0);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.lp-mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.lp-mobile-menu a {
  padding: 12px 8px;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--neutral-700);
  border-radius: var(--radius-md);
}
.lp-mobile-menu a:hover { background: var(--neutral-50); }

/* ============================================================
   Buttons
   ============================================================ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all var(--dur) var(--ease-out);
}
html[data-direction="c"] .lp-btn { border-radius: var(--radius-pill); }
.lp-btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(237, 126, 54, .35);
}
.lp-btn--primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(237, 126, 54, .4); }
.lp-btn--outline {
  border-color: var(--border-strong);
  background: transparent;
  color: var(--neutral-800);
}
.lp-btn--outline:hover { background: var(--neutral-50); }
.lp-btn--ghost-light {
  border-color: rgba(255,255,255,.35);
  color: #fff;
  background: rgba(255,255,255,.06);
}
.lp-btn--ghost-light:hover { background: rgba(255,255,255,.14); }
.lp-btn--sm { padding: 9px 16px; font-size: 14px; }
.lp-btn--lg { padding: 16px 30px; font-size: 16px; }
.lp-btn--whatsapp { background: #1FAF38; color: #fff; }
.lp-btn--whatsapp:hover { background: #178A2C; }

/* ============================================================
   Section scaffolding
   ============================================================ */
.lp-section { padding: 96px 0; }
.lp-section--alt { background: var(--lp-section-alt); }
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.lp-eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--primary); border-radius: 2px; }
.lp-h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: var(--lp-display-weight);
  letter-spacing: var(--lp-display-tracking);
  line-height: 1.12;
  color: var(--lp-heading);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.lp-section-lede {
  font-size: 18px;
  color: var(--neutral-500);
  max-width: 60ch;
  margin: 0 0 56px;
  text-wrap: pretty;
}
.lp-center { text-align: center; }
.lp-center .lp-section-lede { margin-left: auto; margin-right: auto; }
.lp-center .lp-eyebrow::before { display: none; }

/* reveal on scroll — estado oculto só quando JS opta por animar (html.lp-anim) */
@media (prefers-reduced-motion: no-preference) {
  html.lp-anim .lp-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
  html.lp-anim .lp-reveal.is-visible { opacity: 1; transform: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.lp-hero {
  background: var(--lp-hero-bg);
  color: var(--lp-hero-fg);
  padding: 168px 0 96px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 420px at 12% -10%, var(--brand-orange-100), transparent 60%),
    radial-gradient(900px 500px at 95% 110%, var(--brand-blue-100), transparent 60%);
  opacity: .55;
  pointer-events: none;
}
html[data-direction="b"] .lp-hero::before {
  background:
    radial-gradient(820px 420px at 12% -10%, rgba(237,126,54,.22), transparent 60%),
    radial-gradient(900px 500px at 95% 110%, rgba(91,164,224,.18), transparent 60%);
  opacity: 1;
}
html[data-direction="c"] .lp-hero::before {
  background:
    radial-gradient(820px 460px at 8% -10%, var(--brand-orange-100), transparent 62%),
    radial-gradient(700px 400px at 100% 100%, #FCE9D8, transparent 60%);
  opacity: .8;
}
.lp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--primary-soft);
  color: var(--brand-orange-700);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  margin-bottom: 24px;
}
html[data-direction="b"] .lp-hero-badge { background: rgba(237,126,54,.18); color: var(--brand-orange-300); }
.lp-hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success-500); }

.lp-hero h1 {
  font-size: var(--lp-hero-size);
  font-weight: var(--lp-display-weight);
  letter-spacing: var(--lp-display-tracking);
  line-height: 1.06;
  margin: 0 0 22px;
  text-wrap: balance;
}
.lp-hero h1 .hl { color: var(--primary); }
.lp-hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--lp-hero-muted);
  max-width: 52ch;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.lp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.lp-hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--lp-hero-muted);
}
.lp-hero-proof .item { display: flex; align-items: center; gap: 8px; font-weight: var(--fw-medium); }
.lp-hero-proof svg { width: 17px; height: 17px; color: var(--success-500); flex: none; }
html[data-direction="b"] .lp-hero-proof svg { color: #4ADE80; }

.lp-hero-visual { position: relative; }
.lp-hero-frame {
  background: var(--neutral-0);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
html[data-direction="b"] .lp-hero-frame { border-color: rgba(255,255,255,.14); }
.lp-hero-frame .bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--neutral-50);
  border-bottom: 1px solid var(--border);
}
.lp-hero-frame .bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--neutral-200); display: block; }
.lp-hero-frame image-slot { width: 100%; height: 380px; display: block; }

.lp-float-card {
  position: absolute;
  background: var(--neutral-0);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--neutral-800);
}
.lp-float-card .ico {
  width: 34px; height: 34px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.lp-float-card small { display: block; font-weight: var(--fw-regular); color: var(--neutral-500); font-size: 12px; }
.lp-float-card--nf { top: -18px; right: -14px; }
.lp-float-card--nf .ico { background: var(--success-50); color: var(--success-700); }
.lp-float-card--wpp { bottom: -20px; left: -18px; }
.lp-float-card--wpp .ico { background: #E7F8EC; color: #178A2C; }
@media (prefers-reduced-motion: no-preference) {
  .lp-float-card { animation: lp-float 5s ease-in-out infinite; }
  .lp-float-card--wpp { animation-delay: 2.2s; }
  @keyframes lp-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
}

/* ============================================================
   Trust bar
   ============================================================ */
.lp-trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--lp-section-alt);
  padding: 36px 0;
}
html[data-direction="b"] .lp-trust { background: var(--brand-blue-900); border-color: rgba(255,255,255,.08); }
.lp-trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.lp-trust-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.lp-trust-stat .num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lp-heading);
  line-height: 1.1;
}
html[data-direction="b"] .lp-trust-stat .num { color: #fff; }
.lp-trust-stat .lbl { font-size: 13px; color: var(--neutral-500); margin-top: 2px; }
html[data-direction="b"] .lp-trust-stat .lbl { color: var(--brand-blue-200); }
.lp-trust-seals { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--neutral-0);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--neutral-600);
}
html[data-direction="b"] .lp-seal { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: var(--brand-blue-100); }
.lp-seal svg { width: 15px; height: 15px; color: var(--success-500); }

/* ============================================================
   Antes / Depois
   ============================================================ */
.lp-evolution {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.15fr;
  gap: 20px;
  align-items: stretch;
}
.lp-evo-card {
  border: 1px solid var(--border);
  border-radius: var(--lp-card-radius);
  background: var(--neutral-0);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-evo-card .ico {
  width: 44px; height: 44px;
  border-radius: var(--radius-lg);
  background: var(--neutral-100);
  color: var(--neutral-500);
  display: flex; align-items: center; justify-content: center;
}
.lp-evo-card h3 { margin: 0; font-size: 18px; font-weight: var(--fw-semibold); color: var(--neutral-900); }
.lp-evo-card ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lp-evo-card li { display: flex; gap: 8px; font-size: 14px; color: var(--neutral-500); align-items: baseline; }
.lp-evo-card li::before { content: "✕"; color: var(--danger-500); font-size: 11px; flex: none; }
.lp-evo-card--win { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft), var(--shadow-lg); position: relative; }
.lp-evo-card--win .ico { background: var(--primary-soft); color: var(--primary); }
.lp-evo-card--win li::before { content: "✓"; color: var(--success-500); }
.lp-evo-card--win .tag {
  position: absolute;
  top: -13px; left: 28px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.lp-evo-arrow {
  align-self: center;
  color: var(--neutral-300);
  display: flex;
}
.lp-evo-arrow svg { width: 28px; height: 28px; }

/* ============================================================
   Features showcase — lista lateral + preview
   ============================================================ */
.lp-features-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}
.lp-feat-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 96px;
}
.lp-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: transparent;
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--neutral-600);
  transition: all var(--dur-fast) var(--ease-out);
}
.lp-feat-item:hover { background: var(--neutral-0); color: var(--neutral-900); }
.lp-feat-item.is-active {
  background: var(--neutral-0);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--lp-heading);
  font-weight: var(--fw-semibold);
}
.lp-feat-item .ico {
  width: 32px; height: 32px;
  border-radius: var(--radius-md);
  background: var(--neutral-100);
  color: var(--neutral-500);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  transition: all var(--dur-fast);
}
.lp-feat-item.is-active .ico { background: var(--primary-soft); color: var(--primary); }
.lp-feat-item .count {
  margin-left: auto;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--neutral-400);
  background: var(--neutral-100);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.lp-feat-item.is-active .count { background: var(--primary-soft); color: var(--brand-orange-700); }

.lp-feat-panel {
  background: var(--neutral-0);
  border: 1px solid var(--border);
  border-radius: var(--lp-card-radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  min-height: 540px;
}
.lp-feat-panel h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.015em;
  color: var(--lp-heading);
}
.lp-feat-panel .desc { margin: 0 0 20px; color: var(--neutral-500); font-size: 15px; max-width: 58ch; }
.lp-feat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--neutral-50);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--neutral-700);
}
.lp-chip::before { content: "✓"; color: var(--success-500); font-size: 11px; font-weight: 700; }
.lp-feat-panel image-slot { width: 100%; height: 320px; display: block; }
.lp-feat-fade { animation: lp-fade .35s var(--ease-out); }
@keyframes lp-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ============================================================
   WhatsApp
   ============================================================ */
.lp-wpp { background: var(--lp-dark-band); color: #fff; position: relative; overflow: hidden; }
.lp-wpp::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 420px at 85% 20%, rgba(31,175,56,.16), transparent 60%);
  pointer-events: none;
}
.lp-wpp .lp-h2 { color: #fff; }
.lp-wpp .lp-section-lede { color: rgba(255,255,255,.72); }
.lp-wpp-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-wpp-points { display: flex; flex-direction: column; gap: 20px; margin: 0; padding: 0; list-style: none; }
.lp-wpp-points li { display: flex; gap: 14px; align-items: flex-start; }
.lp-wpp-points .ico {
  width: 38px; height: 38px;
  border-radius: var(--radius-lg);
  background: rgba(31,175,56,.18);
  color: #5EE07A;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.lp-wpp-points strong { display: block; font-size: 16px; margin-bottom: 2px; }
.lp-wpp-points span { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.55; }

.lp-chat {
  background: #EBE3DB;
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow-xl);
  max-width: 400px;
  justify-self: center;
  width: 100%;
}
.lp-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1FAF38;
  margin: -18px -18px 14px;
  padding: 14px 18px;
  border-radius: 24px 24px 0 0;
  color: #fff;
}
.lp-chat-head .av {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.lp-chat-head .av img { width: 22px; height: 22px; }
.lp-chat-head strong { font-size: 14px; display: block; line-height: 1.2; }
.lp-chat-head small { font-size: 11px; opacity: .85; }
.lp-bubble {
  background: #fff;
  border-radius: 12px;
  border-top-left-radius: 4px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--neutral-800);
  max-width: 85%;
  margin-bottom: 10px;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
  line-height: 1.5;
}
.lp-bubble--out {
  background: #DCF5C8;
  border-top-left-radius: 12px;
  border-top-right-radius: 4px;
  margin-left: auto;
}
.lp-bubble .time { display: block; text-align: right; font-size: 10px; color: var(--neutral-400); margin-top: 4px; }
.lp-bubble--doc { display: flex; gap: 10px; align-items: center; }
.lp-bubble--doc .doc-ico {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.lp-bubble--doc strong { display: block; font-size: 13px; }
.lp-bubble--doc small { color: var(--neutral-500); font-size: 11.5px; }
.lp-chat-auto {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 14px 0 10px;
}
.lp-chat-auto::before, .lp-chat-auto::after { content: ""; flex: 1; height: 1px; background: rgba(0,0,0,.12); }

/* ============================================================
   Tour / screenshots
   ============================================================ */
.lp-tour-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 20px;
  scrollbar-width: thin;
}
.lp-tour-card {
  scroll-snap-align: start;
  background: var(--neutral-0);
  border: 1px solid var(--border);
  border-radius: var(--lp-card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.lp-tour-card image-slot { width: 100%; height: 280px; display: block; }
.lp-tour-card figcaption { padding: 16px 20px; }
.lp-tour-card figcaption strong { display: block; font-size: 15px; color: var(--neutral-900); }
.lp-tour-card figcaption span { font-size: 13.5px; color: var(--neutral-500); }

/* ============================================================
   Depoimentos
   ============================================================ */
.lp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-testi {
  background: var(--neutral-0);
  border: 1px solid var(--border);
  border-radius: var(--lp-card-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.lp-testi:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lp-testi .stars { display: flex; gap: 3px; color: var(--warning-500); }
.lp-testi .stars svg { width: 16px; height: 16px; }
.lp-testi blockquote { margin: 0; font-size: 15px; line-height: 1.65; color: var(--neutral-700); flex: 1; }
.lp-testi footer { display: flex; align-items: center; gap: 12px; }
.lp-testi .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-blue-500);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: var(--fw-bold);
  flex: none;
}
.lp-testi .who strong { display: block; font-size: 14px; color: var(--neutral-900); }
.lp-testi .who span { font-size: 12.5px; color: var(--neutral-500); }

/* ============================================================
   Planos
   ============================================================ */
.lp-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.lp-plan {
  background: var(--neutral-0);
  border: 1px solid var(--border);
  border-radius: var(--lp-card-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.lp-plan--hot {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft), var(--shadow-lg);
}
.lp-plan .hot-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.lp-plan h3 { margin: 0 0 4px; font-size: 18px; font-weight: var(--fw-semibold); color: var(--neutral-900); }
.lp-plan .for { font-size: 13.5px; color: var(--neutral-500); margin: 0 0 20px; }
.lp-plan .price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.lp-plan .price .cur { font-size: 16px; font-weight: var(--fw-semibold); color: var(--neutral-500); }
.lp-plan .price .val {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--lp-heading);
  line-height: 1;
}
.lp-plan .price .per { font-size: 14px; color: var(--neutral-500); }
.lp-plan .trial {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: var(--fw-semibold);
  color: var(--success-700);
  background: var(--success-50);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin: 8px 0 24px;
}
.lp-plan ul { margin: 0 0 28px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lp-plan li { display: flex; gap: 10px; font-size: 14px; color: var(--neutral-700); align-items: baseline; }
.lp-plan li::before { content: "✓"; color: var(--success-500); font-weight: 700; font-size: 12px; flex: none; }
.lp-plan li.muted { color: var(--neutral-400); }
.lp-plan li.muted::before { content: "—"; color: var(--neutral-300); }
.lp-plans-note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--neutral-500); }
.lp-plans-note a { color: var(--brand-blue-600); font-weight: var(--fw-semibold); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lp-faq {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--neutral-0);
  overflow: hidden;
}
.lp-faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--neutral-900);
  cursor: pointer;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary .chev { flex: none; color: var(--neutral-400); transition: transform var(--dur) var(--ease-out); display: flex; }
.lp-faq[open] summary .chev { transform: rotate(180deg); color: var(--primary); }
.lp-faq .body {
  padding: 0 24px;
  color: var(--neutral-600);
  font-size: 15px;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out), padding .35s var(--ease-out);
}
.lp-faq[open] .body { padding: 0 24px 22px; max-height: 300px; }

/* ============================================================
   CTA final
   ============================================================ */
.lp-cta-final {
  background: var(--lp-dark-band);
  color: #fff;
  border-radius: var(--radius-2xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(237,126,54,.25), transparent 60%),
    radial-gradient(600px 300px at 85% 100%, rgba(91,164,224,.2), transparent 60%);
  pointer-events: none;
}
.lp-cta-final > * { position: relative; }
.lp-cta-final h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: var(--lp-display-weight);
  letter-spacing: var(--lp-display-tracking);
  line-height: 1.1;
  margin: 0 0 16px;
  text-wrap: balance;
}
.lp-cta-final p { font-size: 17px; color: rgba(255,255,255,.75); margin: 0 0 32px; }
.lp-cta-final .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.lp-guarantees { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 13.5px; color: rgba(255,255,255,.7); }
.lp-guarantees span { display: flex; align-items: center; gap: 7px; }
.lp-guarantees svg { width: 15px; height: 15px; color: #5EE07A; }

/* ============================================================
   Footer
   ============================================================ */
.lp-footer { background: var(--neutral-950); color: var(--neutral-400); padding: 64px 0 32px; margin-top: 96px; }
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.lp-footer .tagline { font-size: 14px; line-height: 1.6; margin: 16px 0 0; max-width: 30ch; }
.lp-footer h4 {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--neutral-200);
  margin: 0 0 16px;
}
.lp-footer-col { display: flex; flex-direction: column; gap: 10px; }
.lp-footer-col a { font-size: 14px; color: var(--neutral-400); transition: color var(--dur-fast); }
.lp-footer-col a:hover { color: #fff; }
.lp-footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.lp-footer-logo { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: .9; }

/* ============================================================
   Flutuantes
   ============================================================ */
.lp-fab-wpp {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1FAF38;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(31,175,56,.45);
  transition: transform var(--dur) var(--ease-out);
}
.lp-fab-wpp:hover { transform: scale(1.08); }
.lp-fab-wpp svg { width: 28px; height: 28px; }

.lp-totop {
  position: fixed;
  right: 24px; bottom: 94px;
  z-index: 90;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--neutral-0);
  color: var(--neutral-600);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transform: translateY(8px);
}
.lp-totop.is-visible { opacity: 1; pointer-events: auto; transform: none; }

.lp-sticky-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 95;
}
.lp-sticky-cta .lp-btn { width: 100%; box-shadow: var(--shadow-xl); }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1020px) {
  .lp-hero-grid, .lp-wpp-grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-features-layout { grid-template-columns: 1fr; }
  .lp-feat-list { position: static; flex-direction: row; overflow-x: auto; padding-bottom: 8px; }
  .lp-feat-item { flex: none; }
  .lp-feat-item .count { display: none; }
  .lp-evolution { grid-template-columns: 1fr; }
  .lp-evo-arrow { transform: rotate(90deg); justify-self: center; }
  .lp-testi-grid, .lp-plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .lp-plan--hot { order: -1; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .lp-nav, .lp-header-cta .lp-btn--outline { display: none; }
  .lp-burger { display: flex; }
  .lp-mobile-menu { display: flex; }
  .lp-section { padding: 64px 0; }
  .lp-hero { padding: 128px 0 64px; }
  .lp-float-card--nf { right: 0; }
  .lp-float-card--wpp { left: 0; }
  .lp-tour-track { grid-auto-columns: 85%; }
  .lp-sticky-cta.is-visible { display: block; }
  .lp-fab-wpp { bottom: 84px; }
  .lp-totop { bottom: 152px; }
  .lp-cta-final { padding: 56px 24px; }
}
