.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    /* background: linear-gradient(to bottom, #ffffffa4, #b0b0b09a); */

}

.about-img img {
    width: 18vw;
    border-radius: 20px;
}

/* .heading {
    text-align: center;
} */


.about-content h2 {
    text-align: left;
    line-height: 1.2;
}



.about-content p {
    margin: 0.5rem 0 3rem;
    

}











/* Animación */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}









@media (max-width: 1230px) {

    .about {
        min-height: auto;
        gap: 0;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .about-content p {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .about img {
        display: none;
        width: 70vw;
        margin-top: 4rem;
    }
}

@media (max-width: 500px) {

    .about-content p {
        font-size: 1.2rem;
    }


}

@media (max-width: 365px) {

    .about-img img {
        width: 90vw;
    }


}