:root {
  --primary: #9a2167;
  --primary-dark: #5c225c;
  --emerald: #d7a6f4;
  --emerald-dark: #a86ad6;
  --ink: #140f2e;
  --bg: #f8f3fa;
  --card: #ffffff;
  --text: #2a2b58;
  --muted: #646997;
  --border: #e2d6ee;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { text-decoration: none; }

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
}

.lp-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(154, 33, 103, 0.28);
}

.lp-btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.lp-btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.lp-btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.lp-btn-lg { padding: 14px 26px; font-size: 15px; }
.lp-btn-block { display: flex; width: 100%; margin-top: 20px; }

/* ---------- Topbar ---------- */
.lp-topbar {
  background: var(--ink);
  color: var(--emerald);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
}

.lp-topbar i { margin-right: 6px; }

/* ---------- Nav ---------- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.lp-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 16px;
  color: var(--primary-dark);
}

.lp-nav-links { display: flex; align-items: center; gap: 28px; }
.lp-nav-links > a { color: var(--muted); font-weight: 500; font-size: 14px; }
.lp-nav-links > a:hover { color: var(--primary-dark); }

.lp-nav-item { position: relative; }
.lp-nav-item > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
.lp-nav-item:hover > span { color: var(--primary-dark); }

.lp-mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.lp-nav-item:hover .lp-mega,
.lp-nav-item:focus-within .lp-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lp-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  text-align: left;
}

.lp-mega-item:hover { background: #f4f6fb; }
.lp-mega-item i { color: var(--primary); font-size: 16px; margin-top: 2px; }
.lp-mega-item strong { display: block; font-size: 13px; color: var(--text); }
.lp-mega-item span { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }

.lp-nav-cta { display: flex; gap: 16px; align-items: center; }

.lp-login-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

.lp-login-link:hover { color: var(--primary-dark); }

.lp-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text);
  cursor: pointer;
}

.lp-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}

.lp-nav-mobile a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 0;
}

.lp-nav-mobile hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }
.lp-nav-mobile.open { display: flex; }

/* ---------- Hero ---------- */
.lp-hero {
  background: radial-gradient(circle at 20% 20%, #5c225c 0%, var(--ink) 58%, #0b081b 100%);
  color: #e5e7eb;
  padding: 90px 24px;
  text-align: center;
}

.lp-hero-inner { max-width: 720px; margin: 0 auto; }

.lp-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.lp-jumbo {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: #fff;
}

.lp-jumbo .lp-accent { color: var(--emerald); }

.lp-lead {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 560px;
}

.lp-hero-callout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 28px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(215, 166, 244, 0.13);
  border: 1px solid rgba(215, 166, 244, 0.42);
  color: var(--emerald);
  font-size: 14px;
  font-weight: 600;
}

.lp-hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.lp-hero .lp-btn-ghost { color: #e5e7eb; border-color: rgba(255,255,255,0.25); }
.lp-hero .lp-btn-ghost:hover { border-color: var(--emerald); color: var(--emerald); }

.lp-trust {
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.lp-trust i { color: var(--emerald); margin-right: 4px; }
.lp-trust .dot { margin: 0 6px; color: #646997; }

.lp-fineprint-hero {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}

/* ---------- Strip de destaques ---------- */
.lp-strip {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.lp-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.lp-strip-inner span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-strip-inner i { color: var(--primary); }

/* ---------- Stats ---------- */
.lp-stats { background: #f1ebf8; padding: 56px 24px; }

.lp-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.lp-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.lp-stat p { margin: 0; font-size: 13px; color: var(--muted); }

/* ---------- Tabs por persona ---------- */
.lp-tabs { margin-bottom: 56px; }

.lp-tabs-nav {
  display: inline-flex;
  gap: 4px;
  background: #efe6f8;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 32px;
}

.lp-tab-btn {
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lp-tab-btn.active { background: var(--card); color: var(--primary-dark); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.lp-tab-panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.lp-tab-panel.active { display: grid; }

.lp-tab-item {
  display: flex;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.lp-tab-item i { color: var(--primary); font-size: 18px; margin-top: 2px; }
.lp-tab-item strong { display: block; font-size: 14px; margin-bottom: 4px; }
.lp-tab-item p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---------- Sections ---------- */
.lp-section { padding: 88px 24px; }
.lp-section-alt { background: #f1ebf8; }
.lp-section-inner { max-width: 1120px; margin: 0 auto; text-align: center; }

.lp-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.lp-h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 48px;
  color: var(--text);
}

.lp-section-ad {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #f7f0fb;
}

.lp-h2-ad { margin-bottom: 28px; }

.lp-ad-consent {
  max-width: 960px;
  margin: 0 auto 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.lp-ad-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lp-ad-consent-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-ad-consent-status {
  margin-top: 10px !important;
  min-height: 1.2rem;
}

.lp-ad-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lp-ad-slot-wrap {
  min-height: 110px;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}

.lp-ad-slot {
  min-height: 94px;
}

.lp-ad-placeholder {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  padding: 8px 6px 6px;
}

.lp-section-ad.lp-ads-enabled .lp-ad-placeholder {
  display: none;
}

.lp-cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 32, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 40;
}

.lp-cookie-modal.hidden {
  display: none;
}

.lp-cookie-modal-card {
  width: min(560px, 100%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
}

.lp-cookie-modal-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--text);
}

.lp-cookie-modal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.lp-cookie-modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Feature grid ---------- */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.lp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.lp-card i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}

.lp-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.lp-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ---------- Steps ---------- */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}

.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.lp-step h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.lp-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ---------- Plans ---------- */
.lp-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.lp-plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
}

.lp-plan-featured {
  border-color: var(--primary);
  box-shadow: 0 20px 45px rgba(92, 34, 92, 0.2);
}

.lp-plan-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #374151;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.lp-plan-badge-featured { background: var(--primary); color: #fff; }

.lp-plan-price {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
}

.lp-plan-price span { font-size: 14px; font-weight: 400; color: var(--muted); }

.lp-plan ul { list-style: none; margin: 0; padding: 0; }
.lp-plan li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
}

.lp-plan li i { color: var(--primary); margin-top: 3px; }

/* ---------- Mapa completo de funcionalidades ---------- */
.lp-system-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.lp-system-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.lp-system-card h3 {
  margin: 0 0 14px;
  font-size: 17px;
}

.lp-system-card h3 i {
  color: var(--primary);
  margin-right: 8px;
}

.lp-system-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.lp-system-card li {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- Feeds ---------- */
.lp-feeds-lead {
  max-width: 760px;
  margin: -22px auto 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.lp-feeds-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
  margin-bottom: 28px;
}

.lp-feed-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.lp-feed-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.lp-feed-card-head strong {
  font-size: 15px;
  color: var(--text);
}

.lp-feed-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: #efe6f8;
  color: #4c3b73;
}

.lp-feed-badge-ok {
  background: #f3dff6;
  color: #7f2b7f;
}

.lp-feed-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-feed-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.lp-feed-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.lp-feed-list b {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.lp-feed-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.lp-feed-list time {
  color: #64748b;
  font-size: 12px;
  white-space: nowrap;
}

/* ---------- Security ---------- */
.lp-security {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  text-align: left;
}

.lp-security-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}

.lp-security-item i { font-size: 20px; color: var(--primary); margin-bottom: 10px; display: block; }
.lp-security-item p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.6; }

.lp-fineprint {
  max-width: 720px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- FAQ ---------- */
.lp-faq {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.lp-faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.lp-faq summary {
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-faq summary::-webkit-details-marker { display: none; }

.lp-faq summary::after {
  content: "+";
  font-size: 18px;
  color: var(--primary);
  margin-left: 12px;
}

.lp-faq details[open] summary::after { content: "\2212"; }

.lp-faq p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- Final CTA ---------- */
.lp-cta {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 72px 24px;
}

.lp-cta h2 { font-size: 28px; font-weight: 800; margin: 0 0 10px; }
.lp-cta p { margin: 0 0 28px; color: rgba(255,255,255,0.85); }
.lp-cta .lp-btn-primary { background: #fff; color: var(--primary-dark); box-shadow: none; }
.lp-cta .lp-btn-primary:hover { background: #f8f1fc; }

/* ---------- Footer ---------- */
.lp-footer {
  background: var(--ink);
  color: #9ca3af;
  padding: 56px 24px 32px;
}

.lp-footer-inner { max-width: 1120px; margin: 0 auto; }

.lp-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.lp-footer .lp-logo { color: var(--emerald); margin-bottom: 10px; }
.lp-footer-brand p { margin: 0; font-size: 13px; line-height: 1.6; color: #9ca3af; max-width: 280px; }

.lp-footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin: 0 0 14px;
}

.lp-footer-col { display: flex; flex-direction: column; }
.lp-footer-col a {
  color: #d1d5db;
  font-size: 13px;
  margin-bottom: 10px;
}
.lp-footer-col a:hover { color: var(--emerald); }

.lp-footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 24px 0; }

.lp-footer-legal, .lp-footer-copy { margin: 0 0 6px; font-size: 12px; color: #6b7280; line-height: 1.6; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .lp-nav-links { display: none; }
  .lp-nav-toggle { display: block; }
  .lp-jumbo { font-size: 34px; }
  .lp-grid, .lp-steps, .lp-security, .lp-tab-panel, .lp-stats-inner, .lp-system-map, .lp-feeds-grid { grid-template-columns: 1fr; }
  .lp-plans { grid-template-columns: 1fr; }
  .lp-ad-grid { grid-template-columns: 1fr; }
  .lp-strip-inner { gap: 16px; }
  .lp-footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .lp-nav-inner { padding: 14px 16px; gap: 12px; }
  .lp-topbar { font-size: 12px; }
  .lp-hero { padding: 68px 16px; }
  .lp-jumbo { font-size: 30px; }
  .lp-section { padding: 64px 16px; }
  .lp-h2 { font-size: 26px; margin-bottom: 30px; }
  .lp-card, .lp-plan, .lp-security-item, .lp-tab-item, .lp-system-card { padding: 18px 16px; }
  .lp-tabs-nav { width: 100%; display: grid; grid-template-columns: 1fr; border-radius: 14px; }
  .lp-tab-btn { width: 100%; border-radius: 10px; }
}
