/**
 * =====================================================
 * VIDEO HERO SECTION - CSS3 Native
 * Estilos para la sección de video hero del inicio
 * =====================================================
 */

/* Contenedor Principal del Video Hero */
.video-hero-section {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 700px !important;
    overflow: hidden !important;
    display: block !important;
    background-color: #000 !important;
}

/* Contenedor del Video */
.video-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100% !important;
    max-height: 100% !important;
    z-index: 1 !important;
}

/* Elemento de Video */
.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 45% !important;
    display: block !important;
    z-index: 1 !important;
}

/* Overlay/Capa de Video */
.video-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%) !important; */
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Contenedor del Contenido sobre el Video */
.video-content {
    position: absolute !important;
    top: 60% !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 100 !important;
    width: 100% !important;
    padding: 0 15px !important;
}

/* Texto del Hero */
.hero-text {
    animation: fadeInUp 1s ease-out;
}

/* Título del Hero */
.hero-title {
    font-size: 62px;
    font-weight: 700;
    line-height: 72px;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 0.8s ease-out 0.3s both;
}

/* Botones del Hero */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* =====================================================
 * ANIMACIONES CSS3
 * ===================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =====================================================
 * RESPONSIVE DESIGN
 * ===================================================== */

/* Tablets y pantallas medianas */
@media (max-width: 991px) {
    .video-hero-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 58px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Móviles grandes */
@media (max-width: 767px) {
    .video-hero-section {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 46px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 38px;
    }
}

