:root {
  --navy: #071221;
  --navy-2: #0b1c33;
  --navy-3: #102744;
  --navy-4: #16355a;
  --gold: #ffd100;
  --gold-2: #ffe14a;
  --gold-3: #f5b800;
  --white: #f7f8fb;
  --muted: #b8c3d6;
  --line: rgba(255, 209, 0, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --wa: https://wa.me/5519992229778;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 209, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 209, 0, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  z-index: 0;
}

.glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.glow-a {
  top: -160px;
  right: -80px;
  background: #1d4e8f;
}

.glow-b {
  bottom: 10%;
  left: -180px;
  background: #ffd100;
  opacity: 0.08;
}

header,
section,
footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 18, 33, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: 0.22s ease;
  white-space: nowrap;
}

.btn-gold {
  background: #ffd100;
  color: #081018;
  box-shadow: 0 0 0 4px rgba(255, 209, 0, 0.18), 0 12px 32px rgba(255, 209, 0, 0.45);
  padding: 16px 28px;
  font-size: 15px;
  animation: pulse-gold 2.2s ease-in-out infinite;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.03);
  background: #ffe14a;
  box-shadow: 0 0 0 6px rgba(255, 209, 0, 0.22), 0 18px 40px rgba(255, 209, 0, 0.55);
  animation: none;
}

.btn-lg {
  padding: 20px 36px;
  font-size: 16px;
}

.cta-center {
  justify-content: center;
  margin-top: 36px;
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 209, 0, 0.18), 0 12px 32px rgba(255, 209, 0, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(255, 209, 0, 0.08), 0 16px 36px rgba(255, 209, 0, 0.55); }
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.kicker span {
  width: 28px;
  height: 2px;
  background: var(--gold);
}

h1, h2, h3 {
  font-family: "Oswald", sans-serif;
  line-height: 1.08;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 18px;
}

h1 em {
  font-style: normal;
  color: var(--gold);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  border: 1px solid var(--line);
  background: rgba(16, 39, 68, 0.55);
  padding: 16px;
  border-radius: 16px;
}

.stat strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  color: var(--gold);
}

.stat span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel {
  background: linear-gradient(180deg, rgba(22, 53, 90, 0.7), rgba(7, 18, 33, 0.9));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.badge {
  background: rgba(255, 209, 0, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 209, 0, 0.3);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bars {
  display: grid;
  gap: 10px;
}

.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 42px;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

.track {
  height: 8px;
  background: #102744;
  border-radius: 99px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2));
  width: 0;
  animation: grow 1.6s ease forwards;
}

.fill.a { --w: 92%; animation-delay: 0.2s; }
.fill.b { --w: 78%; animation-delay: 0.4s; }
.fill.c { --w: 64%; animation-delay: 0.6s; }
.fill.d { --w: 86%; animation-delay: 0.8s; }

@keyframes grow {
  to { width: var(--w); }
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.mini {
  background: rgba(7, 18, 33, 0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}

.mini b {
  display: block;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  color: var(--gold);
}

.section {
  padding: 84px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head p {
  color: var(--muted);
  margin-top: 12px;
}

h2 {
  font-size: clamp(32px, 4.4vw, 48px);
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 18px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: rgba(11, 28, 51, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 100%;
  transition: 0.22s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 209, 0, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 209, 0, 0.1);
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 20px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.step {
  counter-increment: step;
  position: relative;
}

.step .num {
  font-family: "Oswald", sans-serif;
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 8px;
}

.audience {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.list {
  display: grid;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(11, 28, 51, 0.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.list-item strong {
  display: block;
  margin-bottom: 4px;
}

.list-item p {
  color: var(--muted);
  font-size: 14px;
}

.check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #081018;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-top: 2px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote {
  background: linear-gradient(180deg, rgba(22, 53, 90, 0.55), rgba(7, 18, 33, 0.9));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.quote p {
  color: #e7edf7;
  margin-bottom: 18px;
}

.who {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #16355a;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--gold);
}

.who small {
  display: block;
  color: var(--muted);
}

.cta-final {
  padding: 20px 0 90px;
}

.cta-box {
  background:
    radial-gradient(circle at top right, rgba(255, 209, 0, 0.16), transparent 32%),
    linear-gradient(180deg, #16355a, #071221);
  border: 1px solid rgba(255, 209, 0, 0.35);
  border-radius: 32px;
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 10px 0 14px;
}

.cta-box p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 24px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 20px;
}

.mobile-menu {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .audience,
  .cards-3,
  .cards-4,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-menu.open {
    display: grid;
    gap: 12px;
    padding: 0 0 18px;
  }

  .mobile-menu a {
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 28px 18px;
  }

  .hero {
    padding-top: 36px;
  }
}
