/* Reset básico e fontes */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #0f0f1a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Hero Section */
header.hero2 {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #0f0f1a, #1f1f2e);
}

header.hero2 h1 {
  font-size: 1.6rem;
  color: #0ff0fc;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #0ff0fc;
}

header.hero2 p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.btn-cta {
  background: #ff007f;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  box-shadow: 0 0 10px #ff007f, 0 0 20px #ff4da6;
  display: inline-block;
  margin-top: 20px;
}

.btn-cta:hover {
  background: #ff4da6;
}

/* Seções gerais */
section {
  padding: 50px 20px;
  text-align: center;
}

section h2 {
  color: #00ffe7;
  margin-bottom: 10px;
  font-size: 2rem;
}

ul {
  list-style: none;
  max-width: 800px;
  margin: auto;
  text-align: left;
}

ul li {
  padding-left: 1.5em;
  margin-bottom: 15px;
  position: relative;
  color: #ccc;
}

ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #39ff14;
}

/* Vídeo */
.video-container {
  position: relative;
  padding: 28% 50%;
  height: 0;
  overflow: hidden;
  max-width: 90%;
  margin: 40px auto;
  border-radius: 16px;
  border: 2px solid #00ffe7;
  box-shadow: 0 0 12px #00ffe7;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

#unmute-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(15, 240, 252, 0.4), rgba(15, 240, 252, 0.2));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0.75rem;
  z-index: 10;
  box-shadow: 0 0 20px rgba(15, 240, 252, 0.3), inset 0 0 10px rgba(15, 240, 252, 0.2);
  animation: pulseFuturistic 1.8s ease-in-out infinite;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Orbitron', sans-serif;
  opacity: 0.9;
}

#unmute-btn.hidden {
  display: none;
}

#unmute-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

@keyframes pulseFuturistic {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 15px rgba(15, 240, 252, 0.3), inset 0 0 5px rgba(15, 240, 252, 0.15);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 30px rgba(15, 240, 252, 0.5), inset 0 0 10px rgba(15, 240, 252, 0.3);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 15px rgba(15, 240, 252, 0.3), inset 0 0 5px rgba(15, 240, 252, 0.15);
  }
}

/* Mentor Section */
section.mentor {
  background: linear-gradient(to right, #1c002b, #2a003f);
  padding: 50px 20px;
  border-radius: 16px;
  box-shadow: 0 0 20px #9400d3;
  text-align: center;
}

.mentor-conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mentor-foto {
  border-radius: 50%;
  border: 2px solid #00ffe7;
  box-shadow: 0 0 20px #00ffe7;
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.mentor p {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
  text-shadow: 0 0 6px #00ffe7;
}

/* Oferta */
.oferta .box-oferta {
  background: #1a1a2e;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 15px #ff007f;
  color: #fff;
  max-width: 600px;
  margin: auto;
}

.oferta .preco-antigo {
  color: #999;
}

.oferta .preco-destaque {
  font-size: 2rem;
  color: #39ff14;
  margin: 10px 0;
}

/* Urgência */
section.urgencia {
  background: #1a1a1a;
  border: 2px solid #ff007f;
  border-radius: 14px;
  padding: 30px 20px;
  margin: 30px 0;
  color: #ff99cc;
  box-shadow: 0 0 15px #ff007f;
  animation: pulseBox 2s infinite;
}

section.urgencia h2 {
  color: #ff007f;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ff007f;
}

#contador-tempo {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 50px 0;
}

.contador-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #33001a;
  color: #ff66a3;
  font-weight: bold;
  border: 2px solid #ff007f;
  border-radius: 10px;
  box-shadow: 0 0 12px #ff007f;
  font-size: 1.2rem;
  padding: 10px 12px;
  min-width: 70px;
  animation: pulse 1.5s infinite;
}

.contador-box span {
  font-size: 1.6rem;
  line-height: 1.2;
}

.contador-box small {
  font-size: 0.75rem;
  color: #ff99cc;
  margin-top: 4px;
}

#vagas-restantes {
  display: inline-block;
  padding: 12px 20px;
  background: #33001a;
  color: #ff66a3;
  font-weight: bold;
  border: 2px solid #ff007f;
  border-radius: 10px;
  box-shadow: 0 0 12px #ff007f;
  font-size: 1.3rem;
  margin-left: 8px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 5px #ff007f; }
  50% { box-shadow: 0 0 15px #ff007f; }
  100% { box-shadow: 0 0 5px #ff007f; }
}

@keyframes pulseBox {
  0% { box-shadow: 0 0 10px #ff007f; }
  50% { box-shadow: 0 0 25px #ff007f; }
  100% { box-shadow: 0 0 10px #ff007f; }
}

/* Footer */
footer.footer {
  text-align: center;
  padding: 20px;
  background-color: #0d0d17;
  color: #888;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
  header.hero2 h1 {
    font-size: 1.6rem;
  }
  section h2 {
    font-size: 1.5rem;
  }
  .btn-cta {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  header.hero2 p,
  ul li {
    font-size: 0.95rem;
  }
  .oferta .preco-destaque {
    font-size: 1.5rem;
  }
}

/* Carrossel */
.carrossel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}

.depoimento {
  display: none;
  font-size: 1.3rem;
  color: #ccc;
  transition: opacity 0.5s ease-in-out;
  margin-bottom: 15px;
}

.depoimento.ativo {
  display: block;
  color: #00ffe7;
  font-weight: bold;
  text-align: center;
}

.depoimento img {
  display: block;
  margin: 10px auto 0;
  border-radius: 8px;
  width: 250px;
  height: 400px;
  object-fit: cover;
  border: 2px solid #00ffe7;
  box-shadow: 0 0 10px #00ffe7;
}

/* Notificação de compra */
.notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 15, 25, 0.9);
  color: #fff;
  padding: 12px 20px;
  border: 2px solid #00ffe7;
  border-radius: 8px;
  box-shadow: 0 0 12px #00ffe7;
  font-size: 0.95rem;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

#whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 255, 140, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseWhats 1.8s ease-in-out infinite;
  transition: transform 0.2s;
}
#whatsapp-float img {
  width: 30px;
  height: 30px;
}
#whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulseWhats {
  0% {
    box-shadow: 0 0 10px rgba(0, 255, 140, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 255, 140, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 255, 140, 0.4);
  }
}
