:root {
  --navy: #0C2D52;
  --blue: #0C447C;
  --blue-mid: #185FA5;
  --blue-light: #378ADD;
  --blue-pale: #E6F1FB;
  --steel: #8DA4B8;
  --gray-dark: #1E2A35;
  --gray-mid: #4A5A6A;
  --gray-light: #F2F5F8;
  --white: #FFFFFF;
  --accent: #E8A020;
  --danger: #C0392B;
  --border: rgba(12,68,124,0.15);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--white); letter-spacing: 0.03em;
}
.nav-cta {
  background: var(--accent); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 24px; border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #f0b030; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0d3a6b 55%, #1a5a9a 100%);
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    repeating-linear-gradient(
      0deg, transparent, transparent 60px,
      rgba(255,255,255,0.025) 60px, rgba(255,255,255,0.025) 61px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 60px,
      rgba(255,255,255,0.025) 60px, rgba(255,255,255,0.025) 61px
    );
}
.hero::after {
  content: '';
  position: absolute; right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 80px solid rgba(55,138,221,0.08);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-block;
  background: var(--accent); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px; border-radius: 3px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800; color: var(--white);
  line-height: 1.05; margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 span { color: var(--blue-light); }
.hero-sub {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.6; margin-bottom: 36px;
  max-width: 520px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px;
}
.badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px; padding: 8px 14px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-light); flex-shrink: 0;
}
.badge-dot.green { background: #2ecc71; }
.btn-hero {
  display: inline-block;
  background: var(--accent); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none;
  padding: 16px 40px; border-radius: 4px;
  transition: all 0.2s;
}
.btn-hero:hover { background: #f0b030; transform: translateY(-2px); }

/* ── FORM CARD no hero ── */
.hero-form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
  text-transform: uppercase;
}
.form-sub {
  font-size: 13px; color: var(--gray-mid);
  margin-bottom: 20px; line-height: 1.4;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--gray-mid); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 4px; padding: 10px 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px; color: var(--gray-dark);
  background: #fafcff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-form {
  width: 100%; padding: 14px;
  background: var(--blue); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.btn-form:hover { background: var(--blue-mid); transform: translateY(-1px); }
.form-privacy {
  font-size: 11px; color: var(--steel);
  text-align: center; margin-top: 10px; line-height: 1.4;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--gray-dark);
  padding: 20px 5%;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--blue-light); line-height: 1;
}
.stat-label {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ── SECTIONS ── */
section { padding: 80px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--blue-mid); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 8px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px; color: var(--gray-mid);
  max-width: 580px; line-height: 1.6; margin-bottom: 48px;
}

/* ── TABELA ── */
.table-wrap { overflow-x: auto; border-radius: 6px; border: 1px solid var(--border); }
table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
thead tr { background: var(--navy); }
thead th {
  padding: 12px 14px; text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap;
}
tbody tr:nth-child(even) { background: var(--gray-light); }
tbody tr:hover { background: var(--blue-pale); }
tbody td {
  padding: 11px 14px; border-bottom: 1px solid var(--border);
  color: var(--gray-dark); font-weight: 400;
  font-family: 'Barlow', sans-serif;
}
tbody td:first-child { font-family: monospace; font-size: 13px; font-weight: 600; }
.pill {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}
.pill-blue { background: var(--blue-pale); color: var(--blue); }
.pill-gray { background: #eef0f2; color: var(--gray-mid); }
.pill-teal { background: #e0f4ee; color: #0f6e56; }
.table-note {
  font-size: 12px; color: var(--gray-mid);
  margin-top: 10px; line-height: 1.5;
}

/* ── SEGMENTOS ── */
.seg-bg { background: var(--gray-light); }
.seg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.seg-card {
  background: var(--white); border-radius: 6px;
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.seg-card:hover { box-shadow: 0 8px 32px rgba(12,44,124,0.1); transform: translateY(-3px); }
.seg-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.seg-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
  text-transform: uppercase;
}
.seg-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.5; }
.seg-card ul {
  list-style: none; margin-top: 10px;
}
.seg-card ul li {
  font-size: 13px; color: var(--gray-mid);
  padding: 3px 0; padding-left: 14px; position: relative;
}
.seg-card ul li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--blue-light); font-weight: 700;
}

/* ── DIFERENCIAIS ── */
.dif-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.dif-item { display: flex; gap: 16px; }
.dif-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px; font-weight: 800;
  color: var(--blue-pale); line-height: 1;
  flex-shrink: 0; width: 48px;
}
.dif-item h4 {
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
  text-transform: uppercase;
}
.dif-item p { font-size: 14px; color: var(--gray-mid); line-height: 1.5; }

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center; padding: 80px 5%;
}
.cta-final h2 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-final p {
  font-size: 18px; color: rgba(255,255,255,0.7);
  margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-wpp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700;
  text-transform: uppercase; text-decoration: none;
  padding: 15px 32px; border-radius: 4px;
  transition: all 0.2s;
}
.btn-wpp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700;
  text-transform: uppercase; text-decoration: none;
  padding: 13px 32px; border-radius: 4px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── FOOTER ── */
footer {
  background: #111820;
  padding: 32px 5%;
  text-align: center;
}
footer p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* ── ANIMAÇÕES ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 480px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
}
