/* SisTravel — site de apresentação/cadastro (B2B, agências de viagem) */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0B1220;
  --bg-2: #111B2E;
  --ink: #E7ECF3;
  --ink-dim: #9FB0C6;
  --accent: #22D3B8;
  --accent-dark: #0EA694;
  --line: #22314A;
  --card: #16223A;
  --danger: #F87171;
  --success: #34D399;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
  text-wrap: balance;
}
p { margin: 0 0 16px; color: var(--ink-dim); }
a { color: var(--accent); text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Header / Nav ─────────────────────────────────────────── */
.st-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,18,32,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.st-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1120px; margin: 0 auto;
}
.st-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.st-logo span { color: var(--accent); }
.st-nav-actions { display: flex; align-items: center; gap: 12px; }

.st-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px; border-radius: 8px; font-weight: 700; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; transition: all .15s ease;
  font-family: var(--font-body);
}
.st-btn-primary { background: var(--accent); color: #06231F; }
.st-btn-primary:hover { background: var(--accent-dark); }
.st-btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.st-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.st-btn-block { width: 100%; }
.st-btn-lg { padding: 14px 28px; font-size: 15px; }

/* ── Hero ─────────────────────────────────────────────────── */
.st-hero {
  padding: 96px 0 72px;
  text-align: center;
  background:
    radial-gradient(60% 50% at 50% -10%, rgba(34,211,184,.14), transparent 70%),
    var(--bg);
}
.st-hero h1 { font-size: 48px; max-width: 780px; margin: 0 auto 20px; }
.st-hero .lead { font-size: 18px; max-width: 600px; margin: 0 auto 36px; }
.st-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.st-hero-tag {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line);
  color: var(--accent); font-size: 13px; font-weight: 600; margin-bottom: 20px;
}

/* ── Sections ─────────────────────────────────────────────── */
.st-section { padding: 72px 0; border-top: 1px solid var(--line); }
.st-section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.st-eyebrow {
  color: var(--accent); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; display: block;
}

.st-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.st-grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.st-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 28px;
}
.st-card .st-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(34,211,184,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.st-card h3 { font-size: 18px; margin-bottom: 8px; }
.st-card p { margin: 0; font-size: 14px; }

/* ── Antes/Depois ─────────────────────────────────────────── */
.st-compare-col {
  border-radius: 14px; padding: 28px; border: 1px solid var(--line);
}
.st-compare-col.bad { background: rgba(248,113,113,.06); }
.st-compare-col.good { background: rgba(52,211,153,.06); border-color: rgba(52,211,153,.35); }
.st-compare-col h4 { font-size: 15px; margin-bottom: 18px; }
.st-compare-col ul { list-style: none; margin: 0; padding: 0; }
.st-compare-col li { padding: 8px 0; font-size: 14px; color: var(--ink-dim); display: flex; gap: 10px; }
.st-compare-col.bad li::before { content: '✕'; color: var(--danger); font-weight: 700; }
.st-compare-col.good li::before { content: '✓'; color: var(--success); font-weight: 700; }

/* ── CTA final ────────────────────────────────────────────── */
.st-cta {
  text-align: center; padding: 64px 40px; border-radius: 20px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
}

/* ── Footer ───────────────────────────────────────────────── */
.st-footer {
  border-top: 1px solid var(--line); padding: 32px 0; text-align: center;
  color: var(--ink-dim); font-size: 13px;
}

/* ── Form (cadastro) ──────────────────────────────────────── */
.st-form-wrap {
  max-width: 480px; margin: 56px auto; background: var(--card);
  border: 1px solid var(--line); border-radius: 16px; padding: 36px;
}
.st-form-wrap h1 { font-size: 26px; text-align: center; }
.st-form-wrap > p { text-align: center; font-size: 14px; }
.st-field { margin-bottom: 18px; }
.st-field label {
  display: block; font-size: 13px; font-weight: 600; color: var(--ink);
  margin-bottom: 6px;
}
.st-field input {
  width: 100%; padding: 11px 14px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--bg);
  color: var(--ink); font-size: 14px; font-family: var(--font-body);
}
.st-field input:focus { outline: none; border-color: var(--accent); }
.st-field-row { display: flex; gap: 14px; }
.st-field-row .st-field { flex: 1; }
.st-erro {
  background: rgba(248,113,113,.1); border: 1px solid rgba(248,113,113,.4);
  color: #FCA5A5; padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 20px;
}
.st-form-foot { text-align: center; font-size: 13px; color: var(--ink-dim); margin-top: 20px; }

@media (max-width: 860px) {
  .st-grid3, .st-grid2 { grid-template-columns: 1fr; }
  .st-hero h1 { font-size: 34px; }
  .st-field-row { flex-direction: column; gap: 0; }
}
