/* ===============================
   🎬 SECCIÓN SOLO VIDEO LIMPIA
   Archivo: assets/css/video-section.css
=============================== */

.video-section {
    background: none !important;
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
    /* espacio interno */
    margin-bottom: 100px;
    /* 🔸 espacio entre el video y la siguiente sección */
}

.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-container .video-element {
    width: 960px;
    height: 540px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: none;
}

.video-container .video-element:hover {
    transform: none;
}

/* 📱 Responsividad */
@media (max-width: 991px) {
    .video-section {
        margin-bottom: 80px;
        /* un poco menos en tablet */
    }

    .video-container .video-element {
        width: 100%;
        height: 320px;
    }
}

@media (max-width: 576px) {
    .video-section {
        margin-bottom: 60px;
        /* margen más pequeño en móvil */
    }

    .video-container .video-element {
        width: 100%;
        height: 220px;
    }
}