/* ==========================================
   HERO VIDEO - CAIXA DE VÍDEO DO YOUTUBE
   ========================================== */

.home-hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.hero-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  background: #000;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
}

.hero-youtube-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 1.5rem;
}

.hero-video-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(10, 186, 181, 0.4), transparent 70%);
  border-radius: 1.5rem;
  z-index: -1;
  filter: blur(30px);
  opacity: 0.6;
  animation: videoGlow 3s ease-in-out infinite;
}

@keyframes videoGlow {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Hover Effects */
.hero-video-container:hover .hero-video-glow {
  opacity: 0.8;
  filter: blur(40px);
}

.hero-video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 100px rgba(10, 186, 181, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .home-hero-video-wrapper {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .home-hero-video-wrapper {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .hero-video-container {
    border-radius: 1rem;
  }
  
  .hero-video-wrapper {
    border-radius: 1rem;
  }
  
  .hero-youtube-video {
    border-radius: 1rem;
  }
}

