.seccion-video{
    display:flex;
    align-items:center;
    gap:10px;
    max-width:1400px;
    margin:10px auto;
    padding:20px;
    overflow:hidden;
}

.video-box{
    flex:1;
    height:400px;
    overflow:hidden;
    background:#ffffff;
}

.video-box video{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:15px;
}

.texto-boxx{
    flex:2;
    background-color:white;
    border-radius:25px;
    padding:20px;
    font-size:3vh;
    color:#555555;
    font-family:Calibri;
    line-height:1.9;
}

/* Estado inicial */
.animarr{
    opacity:0;
    transform:translateX(100px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

/* Estado visible */
.animarr.visible{
    opacity:1;
    transform:translateX(0);
}


/* ========================= */
/* RESPONSIVE TABLET */
/* ========================= */
@media(max-width:1024px){

    .seccion-video{
        flex-direction:column;
        padding:15px;
    }

    .video-box{
        width:100%;
        height:350px;
    }

    .texto-boxx{
        width:100%;
        font-size:2.5vh;
    }

}


/* ========================= */
/* RESPONSIVE MOVIL */
/* ========================= */
@media(max-width:768px){

    .seccion-video{
        padding:10px;
        gap:20px;
    }

    .video-box{
        height:250px;
    }

    .texto-boxx{
        font-size:2.0vh;
        line-height:1.7;
        padding:18px;
        border-radius:18px;
    }

}


/* ========================= */
/* MOVILES PEQUEÑOS */
/* ========================= */
@media(max-width:480px){

    .video-box{
        height:200px;
    }

    .texto-boxx{
        font-size:15px;
        padding:15px;
    }

}