/* ============================================================
   Educasi — Hotsite CSS
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #07091280;
  --bg-base:     #070912;
  --bg-1:        #0c1022;
  --bg-2:        #101628;
  --card:        #0f1829;
  --card-hover:  #131e34;
  --border:      rgba(59, 130, 246, 0.1);
  --border-bright: rgba(59, 130, 246, 0.25);

  --primary:       #3b82f6;
  --primary-dark:  #2563eb;
  --primary-light: #60a5fa;
  --cyan:          #22d3ee;
  --green:         #34d399;
  --red:           #f87171;
  --yellow:        #fbbf24;
  --orange:        #fb923c;

  --text:        #f1f5f9;
  --text-2:      #cbd5e1;
  --text-muted:  #94a3b8;
  --text-subtle: #64748b;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ────────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
p  { color: var(--text-2); }

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-2);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-bright);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover {
  border-color: var(--primary-light);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-lg { padding: 14px 28px; font-size: 16px; }

/* ── Badges / Tags ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 20px;
}

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

/* ── Section Header ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-lead {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Scroll Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  transform: translateY(0) translateX(40px);
}
.reveal-right.revealed {
  transform: translateY(0) translateX(0);
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo span { color: var(--text); }
.logo:hover { color: var(--primary-light); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-nav-ghost {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}
.btn-nav-ghost:hover { color: var(--text); }
.btn-nav-primary {
  padding: 8px 18px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.btn-nav-primary:hover { background: var(--primary-dark); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59,130,246,0.08) 0%, transparent 70%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
}
.hero-glow-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -50px;
  background: radial-gradient(circle, rgba(34,211,238,0.06) 0%, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { position: relative; }
.hero-lead {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-subtle);
}
.hero-note span { display: flex; align-items: center; gap: 4px; }

/* ── Hero photo wrap ─── */
.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-bright);
}
.hero-mock-floating {
  position: absolute;
  bottom: -16px;
  left: -20px;
  width: 280px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  z-index: 2;
}

/* ── Dashboard Mock ─── */
.mock-dashboard {
  background: var(--card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(59,130,246,0.05);
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.mock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mock-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 4px;
  font-weight: 500;
}
.mock-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.mock-stat {}
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.mock-label { font-size: 13px; color: var(--text-muted); }
.mock-value { font-size: 14px; font-weight: 700; color: var(--text); }
.mock-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}
.mock-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}
.mock-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border);
}
.mock-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.mock-badge.warn { background: rgba(251,146,60,0.12); color: #fb923c; border: 1px solid rgba(251,146,60,0.2); }
.mock-badge.good { background: rgba(52,211,153,0.12); color: #34d399; border: 1px solid rgba(52,211,153,0.2); }

/* ════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════ */
.stats {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-top {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-unit { font-size: 1.4rem; font-weight: 700; color: var(--primary-light); }
.stat-label { font-size: 13px; color: var(--text-subtle); margin-top: 6px; }

/* ════════════════════════════════════════════════════════════
   PERSONAS
   ════════════════════════════════════════════════════════════ */
.personas {
  padding: 96px 0;
  background: var(--bg-1);
}
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.persona-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.persona-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.persona-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
}
.persona-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%);
  transition: transform 0.4s ease, filter 0.3s;
}
.persona-card:hover .persona-photo {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.persona-body {
  padding: 24px;
}
.persona-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  display: block;
  margin-bottom: 8px;
}
.persona-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.persona-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .personas-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .personas-grid { max-width: 100%; }
}

/* ════════════════════════════════════════════════════════════
   DEPOIMENTOS
   ════════════════════════════════════════════════════════════ */
.depoimentos {
  padding: 96px 0;
  background: var(--bg-base);
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depoimento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.depoimento-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.depoimento-quote {
  flex: 1;
  position: relative;
  padding-top: 8px;
}
.depoimento-quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: -4px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.25;
  font-family: Georgia, serif;
}
.depoimento-quote p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
}
.depoimento-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.depoimento-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-bright);
  flex-shrink: 0;
}
.depoimento-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.depoimento-role {
  display: block;
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .depoimentos-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ════════════════════════════════════════════════════════════
   PROBLEMA
   ════════════════════════════════════════════════════════════ */
.problema {
  padding: 96px 0;
  background: var(--bg-base);
  overflow: hidden;
}
.problema-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problema-texto .section-lead {
  margin-bottom: 36px;
}
.problema-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.problema-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.problema-stat:hover { border-color: var(--border-bright); }
.problema-num {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  min-width: 88px;
}
.problema-stat p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.problema-foto {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.problema-foto img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.problema-foto:hover img { transform: scale(1.03); }

@media (max-width: 900px) {
  .problema-split { grid-template-columns: 1fr; gap: 40px; }
  .problema-foto { max-height: 320px; }
  .problema-foto img { max-height: 320px; }
}

/* ── Foto Banner ─── */
.foto-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.foto-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.foto-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 9, 18, 0.88) 0%,
    rgba(30, 58, 138, 0.55) 100%
  );
}
.foto-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.foto-banner-quote {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  max-width: 760px;
  font-style: italic;
  margin: 0 0 16px;
}
.foto-banner-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
}

@media (max-width: 768px) {
  .foto-banner { height: 300px; }
  .foto-banner-quote br { display: none; }
}

/* ════════════════════════════════════════════════════════════
   RECURSOS
   ════════════════════════════════════════════════════════════ */
.recursos {
  padding: 96px 0;
  background: var(--bg-1);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(59,130,246,0.1);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon { font-size: 1.4rem; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   SCREENSHOTS
   ════════════════════════════════════════════════════════════ */
.screenshots {
  padding: 96px 0;
  background: var(--bg-base);
}

/* Imagem real (substitui o placeholder quando pronto) */
.screenshot-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-bright);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Placeholder estilizado */
.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--card);
  border: 2px dashed var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  min-height: 240px;
  transition: border-color 0.2s;
}
.screenshot-placeholder--lg {
  min-height: 380px;
}
.screenshot-placeholder:hover {
  border-color: var(--primary);
}
.ss-icon { font-size: 2.5rem; }
.ss-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.ss-hint {
  font-size: 13px;
  color: var(--text-subtle);
  max-width: 260px;
  line-height: 1.5;
  margin: 0;
}
.ss-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border-bright);
  color: var(--primary-light);
  border-radius: 100px;
  margin-top: 4px;
}

.screenshot-main { margin-bottom: 20px; }

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.screenshot-card {}
.screenshot-caption {
  font-size: 13px;
  color: var(--text-subtle);
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .screenshots-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   CONTROLES DE ACESSO
   ════════════════════════════════════════════════════════════ */
.controles {
  padding: 80px 0;
  background: var(--bg-1);
}
.controles-inner {
  background: var(--card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.06);
}
.controles-header {
  max-width: 560px;
  margin-bottom: 40px;
}
.controles-header p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.controles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.controle-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.controle-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.controle-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.controle-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .controles-grid { grid-template-columns: 1fr; gap: 24px; }
  .controles-inner { padding: 32px 24px; }
}

/* ════════════════════════════════════════════════════════════
   COMO FUNCIONA
   ════════════════════════════════════════════════════════════ */
.como-funciona {
  padding: 96px 0;
  background: var(--bg-base);
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.2s;
}
.step:hover { border-color: var(--border-bright); }
.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.step-connector {
  font-size: 1.5rem;
  color: var(--border-bright);
  text-align: center;
  flex-shrink: 0;
}
.step-connector::after { content: '→'; }

/* ════════════════════════════════════════════════════════════
   PHISHING DETAIL
   ════════════════════════════════════════════════════════════ */
.phishing-detail {
  padding: 96px 0;
  background: var(--bg-1);
}
.phishing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.phishing-content {}
.phishing-content p {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.feature-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.feature-list svg { flex-shrink: 0; margin-top: 2px; }

/* ── Email Mock ─── */
.mock-email {
  background: var(--card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.email-header { padding: 16px 18px; border-bottom: 1px solid var(--border); }
.email-from-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.email-avatar {
  width: 36px; height: 36px;
  background: rgba(59,130,246,0.2);
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-light);
  flex-shrink: 0;
}
.email-from-info {}
.email-name { font-size: 13px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.email-warn-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.2);
  color: var(--yellow);
  border-radius: 100px;
}
.email-addr { font-size: 12px; color: var(--text-subtle); margin-top: 2px; }
.email-subject { font-size: 13px; font-weight: 600; color: var(--text-2); }
.email-body { padding: 18px; }
.email-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.6; }
.email-body strong { color: var(--text-2); }
.email-cta-btn {
  display: block;
  margin: 14px 0;
  padding: 10px 20px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  text-align: center;
  cursor: default;
}
.email-flags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.email-flag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: var(--red);
  border-radius: 100px;
}
.phishing-label {
  text-align: center;
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: 12px;
}

/* ════════════════════════════════════════════════════════════
   PREÇOS
   ════════════════════════════════════════════════════════════ */
.precos {
  padding: 96px 0;
  background: var(--bg-base);
}
.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(59,130,246,0.05);
}
.pricing-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.pricing-value {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-currency { font-size: 1.3rem; font-weight: 700; color: var(--text-muted); margin-top: 8px; }
.pricing-big {
  font-size: 5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
}
.pricing-cents { font-size: 2rem; font-weight: 700; color: var(--text); margin-top: 14px; }
.pricing-sub { font-size: 13px; color: var(--text-subtle); margin-bottom: 10px; }
.pricing-setup-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: var(--yellow);
  border-radius: 100px;
  margin-bottom: 16px;
}
.pricing-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.pricing-features svg { flex-shrink: 0; }
.pricing-disclaimer { text-align: center; font-size: 12px; color: var(--text-subtle); margin-top: 10px; }

/* ── Calculator ─── */
.pricing-calculator {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.pricing-calculator h3 { margin-bottom: 6px; }
.pricing-calculator > p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.calc-control { margin-bottom: 20px; }
.calc-slider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border-bright);
  border-radius: 2px;
  outline: none;
  margin-bottom: 12px;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 3px solid var(--bg-base);
  box-shadow: 0 0 0 2px var(--primary);
}
.calc-slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 3px solid var(--bg-base);
}
.calc-number-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.calc-number {
  width: 80px;
  padding: 6px 10px;
  background: var(--bg-2);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  outline: none;
}
.calc-number:focus { border-color: var(--primary); }
.calc-results {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.calc-row:last-child { border-bottom: none; }
.calc-row.calc-highlight { background: rgba(59,130,246,0.05); }
.calc-val { font-weight: 700; color: var(--text); font-size: 15px; }
.calc-note { font-size: 13px; color: var(--text-subtle); line-height: 1.55; }
.calc-note strong { color: var(--green); }

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq {
  padding: 96px 0;
  background: var(--bg-1);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--border-bright); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--primary-light); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(59,130,246,0.1);
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  color: var(--primary-light);
  transition: transform 0.2s, background 0.2s;
  line-height: 1;
  text-align: center;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(59,130,246,0.2);
}
.faq-answer {
  padding: 0 22px 18px;
  border-top: 1px solid var(--border);
}
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 14px; }

/* ════════════════════════════════════════════════════════════
   CTA FINAL / CONTATO
   ════════════════════════════════════════════════════════════ */
.cta-final {
  padding: 96px 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.cta-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  z-index: 0;
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 9, 18, 0.90) 0%,
    rgba(7, 9, 18, 0.82) 100%
  );
  z-index: 1;
}
.cta-glow {
  position: absolute;
  width: 600px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
.cta-final .container {
  position: relative;
  z-index: 3;
}
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; position: relative; }
.cta-inner h2 { margin: 8px 0 16px; }
.cta-inner .section-lead { margin-bottom: 40px; }

.contact-form { text-align: left; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-2); }
.form-group input,
.form-group select {
  padding: 11px 14px;
  background: var(--card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--primary); }
.form-group input::placeholder { color: var(--text-subtle); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-2); }

.form-actions { margin-top: 20px; display: flex; justify-content: center; }
.btn-submit {
  min-width: 260px;
  justify-content: center;
  font-size: 16px;
  padding: 14px 32px;
  border: none;
}
/* Garante que hidden sempre vence independente do display definido na classe */
[hidden] { display: none !important; }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
}
.form-success span { font-size: 1.2rem; }
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-sm);
  color: #fca5a5;
  font-size: 14px;
}
.form-error span { font-size: 1.2rem; flex-shrink: 0; line-height: 1.4; }
.form-error p { margin: 0; }
.form-error a { color: #fca5a5; text-decoration: underline; }
.form-note { text-align: center; font-size: 12px; color: var(--text-subtle); margin-top: 14px; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding: 56px 0 48px;
}
.footer-brand {}
.footer-brand .logo { margin-bottom: 14px; font-size: 1rem; }
.footer-brand p { font-size: 13px; color: var(--text-subtle); line-height: 1.6; }
.footer-lgpd { font-size: 12px; color: var(--text-subtle); margin-top: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; color: var(--text-subtle); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.footer-bottom p { font-size: 12px; color: var(--text-subtle); text-align: center; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 40px; }
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problema-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .phishing-inner { grid-template-columns: 1fr; }
  .pricing-wrapper { grid-template-columns: 1fr; max-width: 480px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(7, 9, 18, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
    backdrop-filter: blur(16px);
    z-index: 99;
  }
  .nav-links.open + .nav-actions {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(7, 9, 18, 0.97);
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    z-index: 99;
  }
  .menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 64px 0 56px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .problema-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-outline { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .pricing-card, .pricing-calculator { padding: 24px; }
}
