/* ===== SECCIÓN VIDEO PRESENTACIÓN ===== */
.video-presentacion{
    width:100%;
    padding:90px 20px;
    background:#f8f8f8;
}

.video-container{
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    align-items:center;
}

.video-texto .subtitulo{
    color:#dc3232;
    font-weight:700;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.video-texto h2{
    font-size:42px;
    margin:15px 0;
    color:#111;
    line-height:1.2;
}

.video-texto p{
    font-size:18px;
    color:#555;
    line-height:1.8;
}

.video-box{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.video-box video{
    width:100%;
    display:block;
    background:#000;
}

/* Responsive */
@media(max-width:991px){
    .video-container{
        grid-template-columns:1fr;
    }

    .video-texto{
        text-align:center;
    }

    .video-texto h2{
        font-size:34px;
    }
}
