#metodo {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    color:  var(--color-neutra-0);
    text-align: center;
}

#metodo span {
    padding-top: 20px;
    font-size: .7155rem;
    letter-spacing: 3px;
}

#metodo h2 {
    font-size: 2rem;
}

#metodo p:first-of-type {
    margin-bottom: 30px;
    font-size: .97rem;
}



.boxes-etapas {
    width: 100%;
    display: flex;
    text-align: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.etapas {
    width: 48%;
    border: 1px solid var(--color-primary-2);

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;

    background-image: url(assets/fundoboxes.png);
    background-position: center bottom;
    background-size: cover;

    text-align: center;

    border-radius: 10px;
}

.etapas h4 {
    padding-top: 15px;  
    font-size: 1rem;
}

.etapas p {
    width: 95%;
    height: auto;
    padding-top: 15px;
    margin: 0 auto;

    font-size: .97rem;

    display: flex;
    align-items: start;
    text-align: center;
}

#metodo a {
    height: auto;
    width: 40%;
    text-align: center;
    text-decoration: none;
    margin: 20px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-etapas {
    width: 20%;
    background-color: var(--color-primary-4);
    color: var(--color-primary-1);
    padding: 10px 0;
    border-radius: 13px;
    transition: background-color 1s ease;
}

.btn-etapas:hover {
    background-color: var(--color-neutra-0);
    color: var(--color-primary-1);
}

@media (min-width: 769px) and (max-width: 1024px) {    
    #metodo a {
        width: 50%;
    }
}

@media (min-width: 481px) and (max-width: 768px) {      
    #metodo a {
        width: 50%;
    }

    .boxes-etapas {
        flex-direction: column;
        align-items: center;
        font-size: .97rem;
    }

    .etapas {
        width: 90%;
    }
}

@media (max-width: 480px) {
    #metodo {
        width: 90%;
    }
    #metodo a {
        width: 70%;
    }

    .boxes-etapas {
        flex-direction: column;
        align-items: center;
        font-size: .97rem;
    }

    .etapas {
        width: 100%;
    }
}