.methodology {
    display: none; /* REMOVER  */
    padding: 3rem 15px;
    margin: 4rem auto;
    max-width: 1200px;
}

.methodoImgAndText {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.methodoImgAndText img {
    max-width: 100%;
    height: auto;
}

.methodoContet h3 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--black-100);
}

.methodoContet p {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--black-100);
}

.methodoText {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.methodoCard {
    flex: 1;
    min-width: 250px;
}

@media screen and (max-width: 992px) {
    .methodoImgAndText {
        flex-direction: column;
        text-align: center;
    }
    
    .methodoImgAndText img {
        margin-bottom: 2rem;
        max-width: 80%;
    }
    
    .methodoText {
        gap: 2rem;
    }
    
    .methodoCard {
        flex: 0 0 calc(50% - 1rem);
        min-width: 0;
    }
}

@media screen and (max-width: 768px) {
    .methodoText {
        flex-direction: column;
    }
    
    .methodoCard {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .methodoContet h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .methodoImgAndText img {
        max-width: 100%;
    }
    
    .methodoContet h3 {
        font-size: 1.3rem;
    }
    
    .methodoContet p {
        font-size: 0.9rem;
    }
}