/* Sentinela / Suagarota — landing comercial
   Independente do tema dark do painel (style.css).
   Foco: confiança jurídica + tom moderno do nicho. */

:root {
  --pink: #ff0fcb;
  --pink-dark: #c30099;
  --ink: #15101e;
  --ink-2: #1f1830;
  --paper: #ffffff;
  --paper-2: #f7f4fb;
  --line: #2a213d;
  --line-light: #e6dff0;
  --text: #e9e7f0;
  --text-soft: #b6b0c8;
  --text-ink: #15101e;
  --text-ink-soft: #4c4566;
  --success: #3ec88a;
  --radius: 14px;
  --radius-lg: 22px;
  --font: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--ink);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Topbar ---------- */
.lp-topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(21,16,30,.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.lp-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.lp-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; text-decoration: none; color: var(--text);
  letter-spacing: -.01em;
}
.lp-brand img { width: 30px; height: 30px; }
.lp-brand strong { color: var(--pink); }
.lp-nav { display: flex; align-items: center; gap: 6px; }
.lp-nav a {
  padding: 8px 14px; font-size: 14px; color: var(--text-soft);
  text-decoration: none; border-radius: 8px;
}
.lp-nav a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.lp-nav .lp-btn { margin-left: 8px; }
@media (max-width: 720px) { .lp-nav a:not(.lp-btn) { display: none; } }

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  border: 1px solid transparent; cursor: pointer;
  white-space: nowrap;
}
.lp-btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white;
  box-shadow: 0 8px 22px rgba(255,15,203,.28);
}
.lp-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(255,15,203,.4); }
.lp-btn--ghost {
  background: transparent; color: var(--text);
  border-color: rgba(255,255,255,.18);
}
.lp-btn--ghost:hover { border-color: var(--pink); color: var(--pink); }
.lp-btn--lg { padding: 16px 32px; font-size: 16px; }

/* ---------- Hero ---------- */
.lp-hero {
  position: relative; overflow: hidden;
  padding: 80px 0 96px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,15,203,.18), transparent 50%),
    radial-gradient(circle at 90% 30%, rgba(123,40,255,.22), transparent 55%);
}
.lp-hero__grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 920px) { .lp-hero__grid { grid-template-columns: 1fr; gap: 36px; } }

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,15,203,.12); color: var(--pink);
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
}
.lp-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 12px var(--pink);
}
.lp-h1 {
  font-size: clamp(36px, 5.6vw, 60px);
  line-height: 1.04; letter-spacing: -.025em;
  margin: 18px 0 18px; font-weight: 800;
}
.lp-h1 em { font-style: normal; color: var(--pink); }
.lp-sub {
  font-size: 18px; color: var(--text-soft); max-width: 540px;
  margin-bottom: 30px;
}
.lp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.lp-trust-row {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-soft);
}
.lp-trust-row svg { width: 18px; height: 18px; color: var(--success); }
.lp-trust-row > span { display: inline-flex; align-items: center; gap: 6px; }

/* Hero card / mock */
.lp-hero__card {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
  position: relative;
}
.lp-hero__card-title {
  font-size: 13px; font-weight: 600; color: var(--text-soft);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 14px;
}
.lp-hero__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05);
  margin-bottom: 8px;
  font-size: 14px;
}
.lp-hero__row strong { color: var(--text); font-weight: 600; }
.lp-hero__row small { color: var(--text-soft); font-size: 12px; }
.lp-tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.lp-tag--ok { background: rgba(62,200,138,.16); color: var(--success); }
.lp-tag--wait { background: rgba(255,178,67,.16); color: #ffb243; }
.lp-tag--fire { background: rgba(255,15,203,.16); color: var(--pink); }

/* ---------- Sections gerais ---------- */
.lp-section { padding: 90px 0; }
.lp-section--paper { background: var(--paper); color: var(--text-ink); }
.lp-section--paper-2 { background: var(--paper-2); color: var(--text-ink); }

.lp-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -.02em; line-height: 1.1;
  margin: 0 0 14px; font-weight: 800;
}
.lp-section__intro {
  max-width: 640px; margin: 0 auto 56px; text-align: center;
}
.lp-section--paper .lp-section__intro p,
.lp-section--paper-2 .lp-section__intro p { color: var(--text-ink-soft); }
.lp-section__intro p { color: var(--text-soft); font-size: 17px; }

/* Stats bar */
.lp-stats { padding: 36px 0; background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lp-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 720px) { .lp-stats__grid { grid-template-columns: repeat(2, 1fr); } }
.lp-stat__num { font-size: 32px; font-weight: 800; letter-spacing: -.02em; color: var(--pink); }
.lp-stat__label { font-size: 13px; color: var(--text-soft); margin-top: 2px; }

/* ---------- Steps ---------- */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 820px) { .lp-steps { grid-template-columns: 1fr; } }
.lp-step {
  background: var(--paper); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 30px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.lp-step:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.06); }
.lp-step__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white; font-weight: 800; margin-bottom: 16px;
}
.lp-step h3 { font-size: 20px; margin: 0 0 8px; font-weight: 700; color: var(--text-ink); }
.lp-step p { color: var(--text-ink-soft); font-size: 15px; margin: 0; }

/* ---------- Diferenciais comparativos ---------- */
.lp-compare {
  background: white;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.lp-compare table { width: 100%; border-collapse: collapse; font-size: 15px; }
.lp-compare th, .lp-compare td {
  padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-light);
  color: var(--text-ink);
}
.lp-compare thead th {
  font-size: 13px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-ink-soft); background: var(--paper-2); font-weight: 700;
}
.lp-compare td.col-us {
  background: rgba(255,15,203,.04);
  font-weight: 600;
}
.lp-compare td svg.ok { color: var(--success); }
.lp-compare td svg.no { color: #c75151; }
.lp-compare td svg { width: 18px; height: 18px; vertical-align: -3px; margin-right: 6px; }
.lp-compare tr:last-child td { border-bottom: none; }

/* ---------- Pricing ---------- */
.lp-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 920px) { .lp-pricing { grid-template-columns: 1fr; } }
.lp-plan {
  background: var(--paper); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 32px; position: relative;
}
.lp-plan--best {
  border-color: transparent;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(135deg, var(--pink), var(--pink-dark)) border-box;
  border: 2px solid transparent;
  transform: scale(1.03);
}
.lp-plan__tag {
  position: absolute; top: -12px; right: 24px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white; padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.lp-plan__name { font-size: 14px; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: .08em; }
.lp-plan__price { font-size: 40px; font-weight: 800; margin: 12px 0 4px; color: var(--text-ink); letter-spacing: -.02em; }
.lp-plan__price small { font-size: 15px; color: var(--text-ink-soft); font-weight: 500; }
.lp-plan__desc { color: var(--text-ink-soft); font-size: 14px; margin-bottom: 22px; min-height: 38px; }
.lp-plan ul { list-style: none; padding: 0; margin: 0 0 26px; }
.lp-plan li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-ink); }
.lp-plan li svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.lp-plan .lp-btn { width: 100%; justify-content: center; }
.lp-plan--best .lp-btn--ghost { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: white; border-color: transparent; }
.lp-pricing__foot { text-align: center; margin-top: 28px; color: var(--text-ink-soft); font-size: 14px; }

/* ---------- FAQ ---------- */
.lp-faq { max-width: 760px; margin: 0 auto; }
.lp-faq details {
  background: var(--paper); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 12px;
  transition: border-color .12s;
}
.lp-faq details[open] { border-color: var(--pink); }
.lp-faq summary {
  cursor: pointer; font-weight: 700; font-size: 16px; color: var(--text-ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+"; font-size: 24px; color: var(--pink); font-weight: 400;
  transition: transform .15s;
}
.lp-faq details[open] summary::after { content: "−"; }
.lp-faq p { margin: 12px 0 0; color: var(--text-ink-soft); font-size: 15px; }

/* ---------- CTA final ---------- */
.lp-cta {
  margin: 0 auto; max-width: 920px; padding: 56px;
  border-radius: var(--radius-lg); text-align: center;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,15,203,.45), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(123,40,255,.4), transparent 55%),
    var(--ink-2);
  border: 1px solid var(--line);
}
.lp-cta h2 { margin: 0 0 12px; color: white; }
.lp-cta p { margin: 0 0 24px; color: var(--text-soft); font-size: 17px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.lp-footer { padding: 48px 0 32px; border-top: 1px solid var(--line); }
.lp-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 720px) { .lp-footer__grid { grid-template-columns: 1fr 1fr; } }
.lp-footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft); margin: 0 0 14px; font-weight: 700; }
.lp-footer ul { list-style: none; margin: 0; padding: 0; }
.lp-footer ul a { display: block; padding: 4px 0; color: var(--text-soft); text-decoration: none; font-size: 14px; }
.lp-footer ul a:hover { color: var(--pink); }
.lp-footer__bot {
  border-top: 1px solid var(--line); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--text-soft);
}

/* Form de contato simples */
.lp-form {
  display: flex; gap: 8px; flex-wrap: wrap; max-width: 520px;
}
.lp-form input {
  flex: 1; min-width: 200px; padding: 12px 14px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06); color: var(--text);
  font-size: 14px; font-family: inherit;
}
.lp-form input:focus { outline: 2px solid var(--pink); outline-offset: -1px; }
.lp-form button { flex-shrink: 0; }
