.seccion-pasos {
    text-align: center;
    width: 100%;
    max-width: 1650px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
}

.seccion-pasos h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 45px;
    color: #4B4B4B;
    margin-bottom: 15px;
}

.subtitulo-pasos {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-size: 32px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 100px;
}

.contenedor-pasos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.tarjeta-paso {
    width: 530px;
    height: 198px;
    background-color: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    box-shadow: 0px 5px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    padding: 20px 30px;
    box-sizing: border-box;
}

.numero-paso {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 130px;
    color: #565656;
    margin-right: 30px;
    line-height: 1;
}

.texto-paso {
    text-align: left;
}

.texto-paso h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 25px;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.texto-paso p {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-size: 19px;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.boton-pasos {
    margin-top: 160px;
}

.boton-pasos button {
    width: 321px;
    height: 78px;
    background-color: #319324;
    border-radius: 20px;
    border: none;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 33px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    margin-bottom: 120px;
}

.boton-pasos button:hover {
    background-color: #277a1d;
}

@media (max-width: 1500px) {
    .contenedor-pasos {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .tarjeta-paso {
        width: 55%;
        height: auto;
        min-height: 150px;
    }

    .tarjeta-paso:nth-child(1) { align-self: flex-start; }
    .tarjeta-paso:nth-child(2) { align-self: center; }
    .tarjeta-paso:nth-child(3) { align-self: flex-end; }
}

@media (max-width: 1200px) {
    .tarjeta-paso {
        width: 65%;
    }
}

@media (max-width: 900px) {
    .tarjeta-paso {
        width: 72%;
    }
}

@media (max-width: 837px) {
    .seccion-pasos{
        margin-bottom: 0px;
    }

    .subtitulo-pasos {
        margin-bottom: 70px;
    }
}

@media (max-width: 768px) {
    .tarjeta-paso {
        width: 80%;
        padding: 15px 20px;
    }

    .numero-paso {
        font-size: 80px;
        margin-right: 15px;
        margin-top: -10px;
    }

    .texto-paso h3 {
        font-size: 20px;
    }

    .texto-paso p {
        font-size: 16px;
    }
}

@media (max-width: 720px) {
    .seccion-pasos h2 {
        font-size: 30px;
    }
    .subtitulo-pasos {
        font-size: 20px;
    }

    .boton-pasos button {
        width: 240px;
        font-size: 25px;
        height: 70px;
        margin-bottom: 40px;
    }
}

@media (max-width: 590px) {
    .boton-pasos{
        margin-top: 90px;
    }

    .boton-pasos button {
        width: 140px;
        font-size: 15px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
}


@media (max-width: 480px) {
    .tarjeta-paso {
        width: 88%;
    }

    .numero-paso {
        font-size: 60px;
    }
}

@media (max-width: 380px) {
    .tarjeta-paso {
        width: 93%;
        padding: 10px 15px;
    }
}

