* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0b0b0d; /* ATUALIZADO: fundo escuro sólido */
  color: #f5f5f5;
  overflow-x: hidden;
}

/* BACKGROUND (DESATIVADO) */
.bg-animado,
.overlay {
  display: none; /* ATUALIZADO */
}

/* ANIMAÇÃO */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 3px;
}

.hero h1 span {
  display: block;
  color: #39FF14;
}

.hero p {
  max-width: 600px;
  margin: 25px 0 40px;
  font-size: 1.1rem;
  color: #cfcfcf;
}

/* BOTÃO */
.btn {
  padding: 16px 45px;
  border-radius: 40px;
  background: linear-gradient(135deg, #39FF14, #0B0B0B);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 0 30px rgba(57, 255, 20,0.4);
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 60px rgba(11,11,11,0.8);
}

/* SEÇÕES */
.section {
  padding: 120px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  margin-bottom: 25px;
}

.section h2 span {
  color: #39FF14;
}

.section p {
  max-width: 750px;
  margin: auto;
  color: #bdbdbd;
  font-size: 1.1rem;
}

/* CARDS */
.cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.card {
  background: #141416; /* ATUALIZADO */
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-12px);
  border-color: #39FF14;
}

.card h3 {
  color: #39FF14;
  margin-bottom: 15px;
}

/* CTA */
.cta {
  padding-bottom: 160px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  font-size: 0.8rem;
  color: #666;
}

/* INFOBOX */
.infobox {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #141416; /* ATUALIZADO */
  border-left: 4px solid rgb(57, 255, 20);
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(11, 11, 11, 0.25);
  font-size: 14px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  z-index: 9999;
}

.infobox.show {
  opacity: 1;
  transform: translateY(0);
}

/* PREÇO */
.preco-box {
  margin: 20px 0 15px;
  text-align: center;
}

.preco-antigo {
  display: block;
  color: #ff4d4d;
  font-size: 26px;
  font-weight: 600;
  text-decoration: line-through;
  margin-bottom: 5px;
  opacity: 0.85;
}

.preco-oferta {
  display: block;
  color: #0B0B0B;
  font-size: 26px;
  font-weight: 800;
}

/* RESULTADOS */
.resultados-alunos {
  padding: 120px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.resultados-alunos h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 15px;
}

.resultados-alunos h2 span {
  color: #39FF14;
}

.resultados-alunos .sub {
  color: #bdbdbd;
  font-size: 1.05rem;
  margin-bottom: 60px;
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.resultado-card {
  background: #141416; /* ATUALIZADO */
  border-radius: 22px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  transition: 0.35s ease;
}

.resultado-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #39FF14;
  box-shadow: 0 0 45px rgba(11,11,11,0.45);
}

.resultado-card img {
  width: 100%;
  border-radius: 16px;
}

.resultado-card span {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #39FF14;
}

/* WELCOME SCREEN */
#welcome-screen {
  position: fixed;
  inset: 0;
  background: #0b0b0d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: fadeIn 0.6s ease;
}

.welcome-content {
  display: flex;
  align-items: center;
  gap: 25px;
  max-width: 90%;
}

.welcome-bot {
  width: 160px;
  animation: float 3s ease-in-out infinite;
}

.welcome-box {
  background: #141416;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 22px 24px;
  max-width: 320px;
  box-shadow: 0 0 30px rgba(212,175,55,0.15);
}

.welcome-box p {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.5;
  margin-bottom: 18px;
}

.welcome-box button {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #39FF14, #0B0B0B);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.welcome-box button:hover {
  transform: scale(1.05);
}

/* ANIMAÇÕES */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


