/* Estilos para pantallas menores o iguales a 768px */
@media (max-width: 768px) {

    /* PORTADA */
    .acerca-portada {
        height: auto;
        clip-path: none;
        padding: 20px 10px;
        text-align: center;
        flex-direction: column;
    }

    .acerca-portada h2 {
        font-size: 1.8rem;
        z-index: 1;
    }

    .acerca-portada img {
        filter: opacity(0.5);
    }

    /* MAIN BACKGROUND */
    .acerca-main {
        background-size: cover;
        background-repeat: no-repeat;
    }

    /* CONTENEDOR GENERAL */
    .acerca-contenedor {
        padding: 5vh 3vw;
    }

    /* BLOQUES INDIVIDUALES */
    .acerca-container {
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .text,
    .photo {
        width: 100%;
    }

    .rounded-photo {
        max-width: 90%;
        height: auto;
    }

    .acerca-container .text p {
        font-size: 1rem;
        text-align: justify;
    }
}


/* Estilos para pantallas menores o iguales a 480px */
@media (max-width: 480px) {
    .acerca-portada h2 {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    }

    .acerca-contenedor {
    padding: 3vh 2vw;
    }

    .acerca-container {
    margin-top: 30px;
    }

    .acerca-container .text p {
    font-size: 0.9rem;
    }

    .rounded-photo {
    max-width: 100%;
    }
}
