/* Estilos para vídeo do YouTube no hero */
.hero-video {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 177.78%; /* Aspect ratio 9:16 (vertical) */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #d4af37;
}

.hero-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 17px;
}

/* Responsividade do vídeo */
@media (max-width: 768px) {
    .hero-video {
        max-width: 280px;
        margin-top: 2rem;
    }
    
    .video-container {
        border-radius: 15px;
        border-width: 2px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        padding-bottom: 177.78%; /* Mantém 9:16 no tablet */
    }
    
    .hero-video-iframe {
        border-radius: 13px;
    }
}

@media (max-width: 480px) {
    .hero-video {
        max-width: 250px;
    }
    
    .video-container {
        border-radius: 12px;
        padding-bottom: 177.78%; /* Mantém 9:16 no mobile */
    }
    
    .hero-video-iframe {
        border-radius: 10px;
    }
}
