*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI', sans-serif;
}

body{
  background:#0d0f15;
  color:#fff;
  overflow-x:hidden;
}

.container{
  width:90%;
  max-width:1100px;
  margin:auto;
  padding:100px 0;
  text-align:center;
}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background: radial-gradient(circle at top left,#4f46e522,transparent),
              radial-gradient(circle at bottom right,#00ffd522,transparent),
              #0d0f15;
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(135deg,#4f46e533,#00ffd533);
  filter:blur(120px);
  z-index:0;
}

.hero .container{
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:42px;
  margin-bottom:20px;
}

.neon{
  color:#00ffd5;
  text-shadow:
    0 0 5px #4f46e5,
    0 0 15px #00ffd5,
    0 0 30px #00ffd5;
}

.hero p{
  font-size:18px;
  margin-bottom:30px;
  color:#9ca3af;
}

/* BOTÕES */
.btn-glow{
  display:inline-block;
  padding:14px 30px;
  border-radius:30px;
  background:#4f46e5;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  box-shadow:0 0 15px #4f46e5;
  transition:0.3s;
}

.btn-glow:hover{
  box-shadow:0 0 30px #4f46e5,0 0 60px #4f46e5;
  transform:scale(1.05);
}

.btn-outline{
  display:inline-block;
  padding:14px 30px;
  border-radius:30px;
  border:2px solid #4f46e5;
  color:#4f46e5;
  text-decoration:none;
  transition:0.3s;
}

.btn-outline:hover{
  background:#4f46e5;
  color:#fff;
}

/* ============================= */
/* VÍDEO */
/* ============================= */
.video-section{ 
  padding:120px 0;
  background:#111119;
}

.video-subtitle{
  color:#9ca3af;
  margin-bottom:50px;
}

.video-wrapper{
  position:relative;
  max-width:750px;
  margin:auto;
}

.video-frame{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(15px);
  border-radius:20px;
  padding:18px;
  position:relative;
  z-index:2;
  opacity:0;
  transform:translateY(40px);
  transition:0.6s ease;
}

.video-frame.show{
  opacity:1;
  transform:translateY(0);
}

/* 🎬 TAMANHO PERFEITO PARA VÍDEO E CAPA */
.video-frame video,
.video-frame img{
  width:100%;
  height:auto;
  max-height:420px; /* ligeiramente maior para melhor visual */
  aspect-ratio:16/9;
  object-fit:contain; /* NÃO corta nada */
  background:#0b0f1a;
  border-radius:15px;
  display:block;
}

/* ✨ GLOW */
.video-glow{
  position:absolute;
  top:-15px;
  left:-15px;
  right:-15px;
  bottom:-15px;
  background:linear-gradient(45deg,#4f46e5,#00ffd5,#4f46e5);
  filter:blur(70px);
  opacity:0.35;
  z-index:1;
  animation:glowMove 6s linear infinite;
  border-radius:30px;
}

@keyframes glowMove{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}

/* 📱 MOBILE */
@media (max-width:768px){

  .video-section{
    padding:80px 0;
  }

  .video-wrapper{
    max-width:95%;
  }

  .video-frame video{
    max-height:450px;
  }

}

/* BENEFÍCIOS */
.section-title{
  font-size:32px;
  margin-bottom:60px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.card, .plano{
  background:#151823;
  padding:40px;
  border-radius:15px;
  transition:0.5s;
  opacity:0;
  transform:translateY(40px);
}

.card.show, .plano.show{
  opacity:1;
  transform:translateY(0);
}

.card:hover, .plano:hover{
  box-shadow:0 0 25px #4f46e555;
  transform:translateY(-10px);
}

/* PLANO ÚNICO */

.planos-subtitle{
  color:#9ca3af;
  margin-bottom:50px;
  font-size:16px;
  text-align:center;
}

.single-plan-wrapper{
  display:flex;
  justify-content:center;
}

.plano.unico{
  max-width:500px;
  width:100%;
  position:relative;
  padding:60px 40px;
  border-radius:20px;
  border:2px solid #00ffd5;
  background:#151823;
  box-shadow:
    0 0 25px rgba(0,255,213,0.4),
    0 0 60px rgba(0,255,213,0.15);
  transition: all 0.4s ease;
}

.plano.unico:hover{
  transform: translateY(-8px);
  box-shadow:
    0 0 35px rgba(0,255,213,0.7),
    0 0 90px rgba(0,255,213,0.25);
}

.badge-popular{
  position:absolute;
  top:-18px;
  right:25px;
  background:linear-gradient(90deg,#4f46e5,#6366f1);
  padding:8px 18px;
  border-radius:30px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  color:#fff;
  box-shadow:0 0 20px rgba(79,70,229,0.7);
}

.preco{
  font-size:38px;
  margin:25px 0;
  font-weight:800;
  color:#00ffd5;
}

.preco span{
  font-size:15px;
  color:#9ca3af;
  margin-left:4px;
}

ul{
  list-style:none;
  margin:25px 0;
  padding:0;
}

ul li{
  margin:12px 0;
  color:#e5e7eb;
  font-size:15px;
  display:flex;
  align-items:center;
  gap:8px;
}

.btn-big{
  padding:18px 45px;
  font-size:16px;
  font-weight:700;
  border-radius:10px;
  margin-top:25px;
  background:linear-gradient(90deg,#4f46e5,#6366f1);
  box-shadow:0 0 25px rgba(79,70,229,0.6);
  transition:all 0.3s ease;
}

.btn-big:hover{
  transform:scale(1.05);
  box-shadow:0 0 40px rgba(79,70,229,0.9);
}

.cta-subtext{
  font-size: 13px;
  color: #9ca3af;
  margin-top: 8px;
}

.cta-subtext{
  font-size: 12px;
  color: #a1a1aa;
  margin-top: 6px;
  opacity: 0.9;
}

/* PLAN IMAGE (mantido) */

.plan-image{
  display:flex;
  justify-content:center;
  margin:30px 0;
}

.plan-image img{
  max-width:260px;
  border-radius:16px;
  padding:8px;
  background:#151823;
  border:1px solid #4f46e555;
  box-shadow:0 0 30px rgba(79,70,229,0.25);
}

/* FAQ PREMIUM */

.premium-faq {
  padding: 100px 0;
  background: linear-gradient(180deg, #111119, #0d0f15);
}

.neon-title {
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px #4f46e5,
               0 0 20px #4f46e5,
               0 0 40px #4f46e5;
}

.faq-subtitle {
  text-align: center;
  color: #9ca3af;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #151823;
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(79,70,229,0.2);
  transition: 0.4s ease;
}

.faq-item.active {
  box-shadow: 0 0 15px rgba(79,70,229,0.4);
  border: 1px solid #4f46e5;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  font-size: 22px;
  transition: 0.4s ease;
  color: #4f46e5;
}

.faq-item.active .icon {
  transform: rotate(45deg);
  text-shadow: 0 0 10px #4f46e5;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

/* GARANTIA */

.garantia {
  padding: 80px 0;
  background: #0d0f15;
  text-align: center;
}

.garantia-box {
  background: #151823;
  padding: 50px 30px;
  border-radius: 18px;
  border: 1px solid rgba(79,70,229,0.2);
  box-shadow: 0 0 20px rgba(79,70,229,0.15);
  max-width: 700px;
  margin: 0 auto;
}

.garantia-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.garantia-box h2 {
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #4f46e5;
}

.garantia-box p {
  color: #9ca3af;
  margin-bottom: 30px;
  font-size: 15px;
}

/* BOX DE COMISSÃO */
.comissao-box {
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid #00c853;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #00c853;
    text-align: center;
}

/* BOTÃO AFILIADO */
.btn-afiliado-produto {
    display: block;
    margin-top: 10px;
    background: linear-gradient(135deg, #ff9800, #ffb300);
    color: #fff;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    letter-spacing: 0.5px;
}

.btn-afiliado-produto:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.5);
}

footer{
  padding:40px;
  background:#111119;
  text-align:center;
  color:#777;
}

/* ANIMAÇÕES */

.fade-in{
  opacity:0;
  animation:fade 1s forwards;
}

.delay{ animation-delay:0.5s; }
.delay2{ animation-delay:1s; }

@keyframes fade{
  to{opacity:1;}
}

@media(max-width:768px){
  .hero h1{
    font-size:28px;
  }
}