.section__1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
}

.section__1 h1 {
    margin: 100px 0 20px 0;
    color: var(--morado);
}

.section__1 p {
    width: 50%;
    font-size: 1.2rem;
}

.section__1 ul {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    gap: 25px
}

.section__1 li {
    width: 30%;
    height: 200px;
    border: 1px solid #e8e8e8;
    background-color: rgb(252, 252, 252);
    border-radius: 20px;
}

.section__1 a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section__1 img {
    width: 60%;
    margin: auto;
    transition: all 400ms ease-in-out;
}

.section__1 a:hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 1400px) {
    /* .section__1 ul {
        width: 80%;
        display: grid;
        grid-gap: 50px;
        list-style: none;
    } */
}

@media screen and (max-width: 900px) {
    h1 {
        font-size: 40px;
    }

    .section__1 {
        margin-top: 0px;
        padding: 0 15px;
    }

    .section__1 h1 {
        margin: 50px 0 50px 0;
    }

    .section__1 p {
        width: 95%;
    }

    .section__1 ul {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding: 0;
        gap: 25px
    }

    .section__1 li {
        width: 45%;
        padding: 30px 0;
        border-radius: 25px;
        height: 150px;
    }

    .section__1 img {
        width: 80%;
        margin: auto;
        transition: all 400ms ease-in-out;
    }
}