/* Video Novedad*/
#video-novedad{
    width: 100%;
    border: 2px solid var(--color-principal);
}

/*¿Quienes somos?, Nuestra vision*/

.textoParrafo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0;
    width: 100%;
}

.texto {
    flex: 2;
    max-width: 40rem;
    text-align: justify;
    line-height: 1.6;
}


.fotoAux {
    flex: 1;
    max-width: 35rem;
    min-width: 15.625rem;
    width: 100%;
    height: auto;
    border: 1px solid var(--color-principal);
}

@media (max-width: 48rem) {

    .textoParrafo {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
    }

    .texto {
        max-width: 100%;
    }

    .fotoAux {
        max-width: 100%;
    }

    .derechas,
    .izquierdas {
        padding: 0;
    }
}

.animar.titulo{
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 1s ease, transform 0.6s ease;
}

.animar.texto{
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 2s ease, transform 0.6s ease;
}

.animar.imagen{
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 2s ease, transform 0.6s ease;
}
.animar.visible{
    opacity: 1;
    transform: translateX(0);
}