/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* FUNDO GERAL */
body {
  background: radial-gradient(circle at top, #0f2a4d, #050b18);
  color: #e0f2ff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* CANVAS PARTÍCULAS */
#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* MENU LATERAL (NÃO MEXER) */
.side-menu {
  position: fixed;
  left: -210px;
  top: 0;
  width: 260px;
  height: 100%;
  background: #06142e;
  transition: 0.4s ease;
  z-index: 10;
}
.side-menu:hover {
  left: 0;
}

.side-content {
  padding: 30px 20px;
}

.side-logo {
  font-size: 26px;
  margin-bottom: 30px;
  color: #6ecbff;
}

.side-content p {
  margin-bottom: 20px;
  font-size: 14px;
}

.side-content a {
  color: #8fd3ff;
  text-decoration: none;
}

.founders span {
  background: linear-gradient(90deg, #5fa9ff, #9fdcff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* CONTAINER */
.container {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
}

/* LOGO */
.logo {
  width: 1024px;
  height: 240px;
  max-width: 90%;
}

.main-logo {
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 50px rgba(100,180,255,0.8));
}

/* TEXTOS */
.subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: #9fdcff;
}

.headline {
  margin-top: 50px;
  font-size: 28px;
  color: #d9efff;
}

/* CARDS GERAIS */
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.card {
  background: rgba(20,40,80,0.65);
  border-radius: 16px;
  padding: 30px;
  width: 270px;
  transition: 0.3s ease;
  box-shadow: 0 0 25px rgba(100,180,255,0.2);
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(120,200,255,0.4);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  opacity: 0.9;
}

.card a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background: linear-gradient(90deg, #5fa9ff, #9fdcff);
  color: #021024;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* VIPs E KITS */
.vip ul,
.kit ul {
  list-style: none;
  margin-top: 15px;
  text-align: center;
}

.vip li,
.kit li {
  margin-bottom: 6px;
  font-size: 14px;
}

.price {
  display: block;
  margin: 10px 0;
  font-weight: bold;
  font-size: 16px;
  color: #9fdcff;
}

/* AVISO */
.warning {
  margin-top: 25px;
  font-size: 14px;
  color: #ffb3b3;
}

/* RODAPÉ */
footer {
  margin-top: 60px;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #7fa8d9;
}

/* ANIMAÇÃO LOGO */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}