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

:root {
  --azul: #0066FF;
  --azul-escuro: #0044CC;
  --preto: #0a0a0a;
  --preto2: #111111;
  --preto3: #1a1a1a;
  --cinza: #888;
  --branco: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--preto);
  color: var(--branco);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,102,255,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--branco);
}

.logo span {
  color: var(--azul);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.btn-nav {
  background: var(--azul);
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-nav:hover {
  background: var(--azul-escuro);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #000 0%, #001433 50%, #000820 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,102,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,102,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}

.hero-sub {
  color: var(--azul);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 1;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--azul);
}

.hero-desc {
  font-size: 18px;
  color: #aaa;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--azul);
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--azul-escuro);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.2);
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: var(--azul);
  color: var(--azul);
}

/* SOBRE */
.sobre {
  padding: 100px 0;
  background: var(--preto2);
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.label {
  display: inline-block;
  color: var(--azul);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.label.center {
  display: block;
  text-align: center;
}

.sobre-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.sobre-text h2 span {
  color: var(--azul);
}

.sobre-text p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 16px;
}

.sobre-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-stat {
  background: var(--preto3);
  border: 1px solid rgba(0,102,255,0.15);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.2s;
}

.card-stat:hover {
  border-color: var(--azul);
}

.card-stat i {
  font-size: 28px;
  color: var(--azul);
}

.card-stat h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--branco);
}

.card-stat p {
  color: var(--cinza);
  font-size: 14px;
}

/* MODALIDADES */
.modalidades {
  padding: 100px 0;
  background: var(--preto);
}

.modalidades h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
}

.modalidades h2 span {
  color: var(--azul);
}

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

.modal-card {
  background: var(--preto3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.modal-card:hover {
  border-color: var(--azul);
  transform: translateY(-6px);
}

.modal-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,102,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.modal-icon i {
  font-size: 22px;
  color: var(--azul);
}

.modal-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-card p {
  color: #888;
  font-size: 15px;
  line-height: 1.7;
}

/* HORÁRIOS */
.horarios {
  padding: 100px 0;
  background: var(--preto2);
}

.horarios-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.horarios-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.horarios-text h2 span {
  color: var(--azul);
}

.horarios-text p {
  color: #aaa;
  font-size: 16px;
}

.horarios-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: var(--preto3);
  border-radius: 10px;
  border-left: 3px solid var(--azul);
}

.horario-row span {
  font-size: 15px;
  color: #ccc;
}

.hora {
  font-weight: 700;
  color: var(--branco) !important;
  font-size: 16px !important;
}

/* CONTATO */
.contato {
  padding: 100px 0;
  background: var(--preto);
}

.contato h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
}

.contato h2 span {
  color: var(--azul);
}

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

.contato-card {
  background: var(--preto3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.3s;
}

.contato-card:hover {
  border-color: var(--azul);
}

.contato-card i {
  font-size: 32px;
  color: var(--azul);
  margin-bottom: 16px;
}

.contato-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contato-card p {
  color: #888;
  font-size: 15px;
  line-height: 1.6;
}

.contato-card a {
  color: var(--azul);
  text-decoration: none;
}

.contato-card a:hover {
  text-decoration: underline;
}

/* FOOTER */
.footer {
  background: var(--preto2);
  border-top: 1px solid rgba(0,102,255,0.15);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer p {
  color: #555;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: #555;
  font-size: 20px;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--azul);
}

/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .sobre-inner, .horarios-inner { grid-template-columns: 1fr; gap: 40px; }
  .modal-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 64px; }
}
