#s-politicas-texts {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#s-politicas-texts>div {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#content-text-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
}

#content-text-img >div{
    width: 60%;
}

#s-politicas-texts p{
    font-size: 20px;
    text-align: justify;
    color: var(--gris-oscuro);
}

#content-text-img img{
    width: 40%;
    object-fit: cover;
}

#s-normativas {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

#content-normativas {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
}

#content-cards-normativas {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px 15px;
}

.card-normativas {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    background-color: #F1F2F2;
    position: relative;
    border-radius: 6px;
    gap: 20px;
}

.card-normativas img{
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
}

.card-normativas h3{
    font-weight: bold;
    font-size: 22px;
    color: var(--verde);
}

.card-normativas p{
    font-size: 18px;
    text-align: center;
    color: var(--verde);
}



@media screen and (max-width: 1024px) {
    #s-normativas {
        padding: 20px;
    }

    #content-normativas {
        width: 100%;
        padding: 20px 0px;
    }

    #content-cards-normativas {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 50px;
    }
}