* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

.header-logo {
    text-align: left;
    margin-top: 31px;
    /* Más abajo */
    margin-left: 2rem;
    /* Más a la derecha */

}

.header-logo img {
    height: 50px;
}

/* .logo img {
  height: 50px;
  margin-left: 2rem;
  margin-bottom: 6rem;
} */
.how-it-works {
    padding: 90px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-family: 'Gotham Black', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #606060;
    margin-bottom: 100px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    max-width: 215px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
}

.step.reverse {
    flex-direction: column-reverse;
}

.img-box {
    display: flex;
    justify-content: center;
    width: 100%;
}

.img-box img {
    width: 80%;
    height: auto;
    border-radius: 30px;
    margin: 15px 0;
}

.step-title {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-style: italic;
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: left;
    width: 101%;
}


.step-description {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    color: #555;
    font-size: 1rem;
    width: 100%;
    text-align: justify;
}

/* ================================
       SEGUNDA SECCIÓN (RESPONSIVA)
    ================================= */

.security_section {
    background-image: url('../img/Cómo funciona.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.secure-section {
    position: relative;
    padding: 200px 50px;
    color: white;
    min-height: 100vh;
    align-items: center;
}

.secure-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

.secure-text {
    text-align: left;
    padding-left: 120px;
    width: 95%;

}

/* Main heading */
.secure-text .main-title {
    font-family: 'Gotham Black', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Highlighted paragraph */
.secure-text .highlight-paragraph {
    font-family: 'Gotham Black', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 80px;
    line-height: 1.2;
    /* Ajuste que junta las líneas */
}

/* Regular paragraph */
.secure-text .regular-paragraph {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 80px;
}

/* Bold paragraph */
.secure-text .bold-paragraph {
    font-family: 'Gotham Black', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    /* Ajuste que junta las líneas */
}


.start-button {
    margin-top: 1.2rem;
    padding: 0.6rem 1.8rem;
    border: 3px solid #FE5000;
    background: transparent;
    color: #FE5000;
    font-weight: 900;
    border-radius: 13px;
    cursor: pointer;
    width: fit-content;
    transition: background 0.3s, color 0.3s;
    font-size: 1rem;
}

.start-button:hover {
    background-color: #FE5000;
    color: white;
}

.secure-img {
    max-width: 100%;
    height: auto;
}

.secure-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================
       AJUSTES RESPONSIVOS
    ============================== */
/* RESPONSIVO PARA MÓVILES */
@media (max-width: 767px) {
    .secure-section {
        padding: 60px 20px;
        background-position: top;
        min-height: auto;
        text-align: center;
    }

    .secure-text {
        text-align: center;
        padding-left: 0;
        border-radius: 15px;
        padding: 20px;
    }

    .secure-text h2,
    .secure-text p {
        text-align: center;
    }

    .step {
        width: 90%;
        max-width: 400px;
        border: 2px solid #ed9d41;
        border-radius: 15px;
        padding: 30px 15px;
        margin: 0 auto 20px auto;
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        min-height: 250px;
    }

    .header-logo {
        text-align: left;
        margin-top: 18px;
        /* Más abajo */
        margin-left: 1rem;
        /* Más a la derecha */

    }

    .header-logo img {
        height: 40px;
    }
}