.hero-intensivo {
  position: relative;
  height: 100vh;
  background: url("/assets-banner/banner_intensivo.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Animação leve na imagem (zoom cinematográfico) */

.hero-intensivo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets-banner/banner_intensivo.jpeg") center/cover no-repeat;
  animation: zoomHero 20s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes zoomHero {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* Overlay roxo escuro */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,5,25,0.85), rgba(20,10,50,0.9));
  z-index: 1;
}

/* Conteúdo */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  color: #fff;
}

.hero-tag {
  color: #b889ff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 14px;
}

.hero-content h1 {
  font-size: 64px;
  margin: 20px 0;
  font-weight: 800;
}

.hero-content h1 span {
  color: #a855f7;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

/* BOTÕES */

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 40px;
  background: linear-gradient(90deg, #9333ea, #6b21a8);
  border-radius: 50px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: 0.4s;
  box-shadow: 0 0 30px rgba(147, 51, 234, 0.6);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(147, 51, 234, 0.9);
}

.btn-secondary {
  padding: 16px 40px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: 0.4s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* RESPONSIVO */

@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

}


.reveal-hero {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFade 1.5s ease forwards;
  animation-delay: 0.5s;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
