/* ================= STYLE.CSS PREMIUM ================= */

:root{
  --primary:#00ff88;
  --dark:#0b0f14;
  --card:#111827;
  --border:#1f2937;
  --text:#ffffff;
}

body{
  margin:0;
  font-family:'Inter', 'Segoe UI', sans-serif;
  background:var(--dark);
  color:var(--text);
}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  padding:80px 20px;
  background:url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.7);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:700px;
  animation:fadeUp 1s ease;
}

.logo{
  width:90px;
  margin-bottom:20px;
}

.hero h1{
  font-size:2.5rem;
  margin-bottom:15px;
}

.hero p{
  opacity:0.8;
}

.hero-buttons{
  margin-top:20px;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

/* BUTTONS */
.btn{
  padding:14px 20px;
  background:var(--primary);
  color:#000;
  text-decoration:none;
  border-radius:8px;
  font-weight:bold;
  transition:0.3s;
  display:inline-block;
}

.btn:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 10px 25px rgba(0,255,136,0.3);
}

.btn.secondary{
  background:#2563eb;
  color:#fff;
}

.input{
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border-radius:6px;
  border:1px solid #333;
  background:#020617;
  color:#fff;
}

/* CONTAINER */
.container{
  max-width:1100px;
  margin:auto;
  padding:40px 20px;
}

.section{
  margin-bottom:60px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

/* CARDS */
.card{
  background:var(--card);
  padding:25px;
  border-radius:14px;
  border:1px solid var(--border);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
  border-color:var(--primary);
  box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

.destaque-card{
  border:1px solid var(--primary);
}

/* LOGOS */
.logos-grid{
  display:flex;
  gap:15px;
  justify-content:center;
  margin-top:20px;
  flex-wrap:wrap;
}

.logo-box{
  padding:10px 20px;
  background:#020617;
  border:1px solid var(--border);
  border-radius:8px;
  opacity:0.7;
}

/* CTA */
.cta-final{
  text-align:center;
}

.cta-final .btn{
  font-size:1.2rem;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:25px;
  background:#020617;
  border-top:1px solid var(--border);
}

/* WHATSAPP FIXO */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  padding:15px 18px;
  border-radius:50px;
  color:#fff;
  font-weight:bold;
  text-decoration:none;
  box-shadow:0 5px 20px rgba(0,0,0,0.4);
  animation:pulse 2s infinite;
  z-index:999;
}

/* ANIMAÇÕES */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.08)}
  100%{transform:scale(1)}
}

/* ================= MOBILE PERFEITO ================= */
@media(max-width:768px){

  .hero{
    height:auto;
    padding:60px 20px;
  }

  .hero h1{
    font-size:1.8rem;
  }

  .hero-content{
    width:100%;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
    width:100%;
  }

  .btn{
    width:100%;
    max-width:320px;
    text-align:center;
  }

  .container{
    padding:30px 15px;
  }

}

@media(max-width:768px){

  .hero{
    min-height:auto;
    padding:100px 20px 60px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
    width:100%;
  }

  .btn{
    width:100%;
    max-width:320px;
  }

}

.youtube-destaque{
  text-align:center;
}

.youtube-box{
  position:relative;
  padding-bottom:56.25%;
  height:0;
  overflow:hidden;
  border-radius:12px;
  margin:20px auto;
  max-width:800px;
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
}

.youtube-box iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}


.video-topo{
  width:100%;
  max-width:500px;
  margin:15px auto;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.video-topo iframe{
  width:100%;
  height:280px;
  display:block;
}

/* MOBILE */
@media(max-width:768px){
  .video-topo{
    max-width:90%;
  }

  .video-topo iframe{
    height:200px;
  }
}