.infraestructure{
    width: 100%;
    height: auto;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    text-align: center;
    font-family: 'Camp';
}
.infraestructureEquipment{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
}
.infraestructureEquipment img{
    width: 50%;
    height: auto;
    object-fit: cover;
}
.infraestructureVideo{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    color: var(--main-color);
}
.infraestructure span{
    font-family: 'Strong';
}
.infraestructureVideo video{
    border-radius: 1rem;
    height: 100%;
    width: 36rem; /* CAMBIO: antes 28rem */
}

/* --- RESPONSIVE --- */

/* Laptops pequeñas / tablets grandes */
@media (max-width: 1024px) {
    .infraestructure{
        font-size: 1.5rem;
    }

    .infraestructureEquipment img{
        width: 65%;
    }

    .infraestructureVideo{
        padding: 2rem;
    }

    .infraestructureVideo video{
        width: 28rem; /* CAMBIO: antes 22rem */
        height: 30rem; /* CAMBIO: antes 24rem */
        border-radius: 2.25rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .infraestructure{
        flex-direction: column;
        font-size: 1.3rem;
    }

    .infraestructureEquipment{
        width: 100%;
        padding: 1.5rem;
    }

    .infraestructureEquipment img{
        width: 60%;
    }

    .infraestructureVideo{
        width: 100%;
        padding: 1.5rem;
    }

    .infraestructureVideo video{
        width: 26rem; /* CAMBIO: antes 20rem */
        height: 28rem; /* CAMBIO: antes 22rem */
        border-radius: 2rem;
        max-width: 90%;
    }
}

/* Celulares medianos */
@media (max-width: 480px) {
    .infraestructure{
        font-size: 1.1rem;
    }

    .infraestructureEquipment{
        padding: 1.25rem;
    }

    .infraestructureEquipment img{
        width: 80%;
    }

    .infraestructureVideo{
        padding: 1.25rem;
    }

    .infraestructureVideo video{
        width: 100%;
        height: auto;
        aspect-ratio: 9 / 12;
        border-radius: 1.5rem;
    }
}

/* Celulares muy pequeños */
@media (max-width: 360px) {
    .infraestructure{
        font-size: 1rem;
    }

    .infraestructureEquipment img{
        width: 90%;
    }
}