/* =========================================
   GENERAL
========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    color: #333333;
    background: #ffffff;
}


/* =========================================
   CONTENEDOR
========================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================
   HEADER
========================================= */

.main-header {
    width: 100%;
    height: 82px;

    background: #ffffff;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.20);

    position: relative;
    z-index: 10;
}

.header-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    width: 170px;
}

.header-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 70px;
    height: 32px;

    padding: 0 18px;

    background: #80b918;
    color: #ffffff;

    border-radius: 30px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    flex-shrink: 0;
}


/* =========================================
   BANNER
========================================= */

.banner-section {
    width: 90%;
    max-width: 1200px;

    margin: 24px auto 0;

    border-radius: 15px;

    overflow: hidden;
}

.banner-image {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================
   BENEFICIO
========================================= */

.benefit {
    width: 100%;
    padding: 65px 0;
}

.benefit-content {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 10px 10px 10px 0;

    min-width: 0;
}


/* =========================================
   IMAGEN BENEFICIO
========================================= */

.benefit-image {
    display: block;

    width: 100%;
    height: 340px;

    object-fit: cover;

    border-radius: 15px;
}


/* =========================================
   TÍTULO PRINCIPAL
========================================= */

.benefit h1 {
    width: 100%;
    max-width: 100%;

    margin: 0 0 22px;

    color: #333333;

    /*
       38px permite que la frase
       "¡Disfruta tus caminatas con un"
       permanezca junta en escritorio.
    */
    font-size: 38px;

    line-height: 1.12;

    font-weight: 900;

    letter-spacing: -1.1px;
}

.benefit h1 .title-main,
.benefit h1 .title-discount {
    display: block;

    width: 100%;
    max-width: 100%;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: inherit;
    line-height: inherit;

    font-weight: 900;

    letter-spacing: inherit;

    white-space: normal;
}

.benefit h1 .title-main {
    color: #333333;
}

.benefit h1 .title-discount {
    color: #ffca05;
}


/* =========================================
   TEXTO BENEFICIO
========================================= */

.benefit p {
    margin: 0 0 12px;

    max-width: 700px;

    color: #333333;

    font-size: 17px;
    line-height: 1.6;
}

.benefit p strong {
    font-weight: 800;
}


/* =========================================
   SECCIÓN PASOS
========================================= */

.steps-section {
    width: 100%;

    background: #f5f5f5;

    padding: 65px 0;
}

.section-title {
    margin: 0 0 40px;

    text-align: center;

    color: #333333;

    font-size: 34px;
    line-height: 1.2;

    font-style: italic;
    font-weight: 800;
}


/* =========================================
   TARJETAS
========================================= */

.step {
    height: 100%;

    margin: 0;

    background: #ffffff;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}


/* =========================================
   IMÁGENES PASOS
========================================= */

.step-image {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 9;

    height: auto;

    object-fit: cover;
}


/* =========================================
   CONTENIDO PASOS
========================================= */

.step-content {
    min-height: 285px;

    padding: 28px 30px 32px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: #80b918;
    color: #ffffff;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 800;

    flex-shrink: 0;
}

.step h3 {
    margin: 0 0 12px;

    color: #333333;

    font-size: 22px;
    line-height: 1.3;

    font-weight: 800;
}

.step p {
    margin: 0;

    color: #333333;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================
   BOTONES
========================================= */

.step-action {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 16px;

    margin-top: auto;

    background: #ffca05;
    color: #333333;

    border-radius: 25px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    text-align: center;
}

.step-action:hover {
    color: #333333;
    background: #f5bd00;
}


/* =========================================
   TEN EN CUENTA
========================================= */

.notes-section {
    width: 100%;

    padding: 65px 20px;

    background: #80b918;

    color: #ffffff;

    text-align: center;
}

.notes-content {
    width: 100%;
}

.notes-content h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 34px;
    line-height: 1.2;

    font-style: italic;
    font-weight: 800;
}

.notes-intro {
    max-width: 750px;

    margin: 0 auto 38px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================
   TARJETAS TEN EN CUENTA
========================================= */

.notes-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    text-align: left;
}

.note-item {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    min-height: 120px;
    min-width: 0;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 14px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.note-icon {
    flex-shrink: 0;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffca05;
    color: #333333;

    border-radius: 50%;

    font-size: 18px;
}

.note-text {
    flex: 1;
    min-width: 0;
}

.note-item h3 {
    margin: 0 0 7px;

    color: #333333;

    font-size: 17px;
    line-height: 1.3;

    font-weight: 900;
}

.note-item p {
    margin: 0;

    color: #555555;

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================
   FOOTER
========================================= */

.main-footer {
    width: 100%;

    min-height: 130px;

    background: #333333;

    color: #ffffff;
}

.footer-container {
    min-height: 130px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    width: 160px;
}

.footer-logo img {
    display: block;

    width: 100%;
    height: auto;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 0;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .benefit {
        padding: 50px 0;
    }

    .benefit-content {
        padding: 0;
        min-width: 0;
    }

    .benefit h1 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .benefit-image {
        height: 280px;
    }

    .step-content {
        padding: 24px;
    }

    .notes-grid {
        grid-template-columns: 1fr;
    }

    .note-item {
        min-height: auto;
    }
}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 600px) {

    .main-header {
        height: 70px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-logo {
        width: 130px;
    }

    .btn-back {
        min-width: 65px;
        height: 30px;

        padding: 0 14px;

        font-size: 11px;
    }


    /* =====================================
       BANNER
    ===================================== */

    .banner-section {
        width: 94%;

        margin: 15px auto 0;

        border-radius: 10px;
    }


    /* =====================================
       BENEFICIO
    ===================================== */

    .benefit {
        padding: 40px 0;
    }

    .benefit-content {
        padding: 0;
        min-width: 0;
    }

    .benefit-image {
        width: 100%;
        height: 220px;

        margin-top: 5px;

        border-radius: 10px;
    }


    /* =====================================
       TÍTULO
    ===================================== */

    .benefit h1 {
        width: 100%;
        max-width: 100%;

        margin: 0 0 20px;

        font-size: 29px;

        line-height: 1.12;

        letter-spacing: -0.6px;

        font-weight: 900;

        overflow: visible;
    }

    .benefit h1 .title-main,
    .benefit h1 .title-discount {
        display: block;

        width: 100%;
        max-width: 100%;

        font-size: inherit;

        line-height: inherit;

        letter-spacing: inherit;

        font-weight: 900;

        white-space: normal;
    }


    /* =====================================
       TEXTO
    ===================================== */

    .benefit p {
        font-size: 15px;

        line-height: 1.6;

        margin-bottom: 10px;
    }


    /* =====================================
       PASOS
    ===================================== */

    .steps-section {
        padding: 45px 0;
    }

    .section-title {
        margin-bottom: 30px;

        font-size: 26px;

        line-height: 1.25;
    }

    .step-image {
        aspect-ratio: 16 / 9;
    }

    .step-content {
        min-height: 0;

        padding: 22px;
    }

    .step-number {
        width: 42px;
        height: 42px;

        margin-bottom: 16px;

        font-size: 12px;
    }

    .step h3 {
        font-size: 19px;
    }

    .step p {
        font-size: 14px;

        line-height: 1.6;
    }

    .step-action {
        width: 100%;

        margin-top: 20px;

        padding: 10px 15px;

        font-size: 13px;
    }


    /* =====================================
       TEN EN CUENTA
    ===================================== */

    .notes-section {
        padding: 45px 15px;
    }

    .notes-content h2 {
        margin-bottom: 12px;

        font-size: 27px;
    }

    .notes-intro {
        margin-bottom: 28px;

        font-size: 14px;

        line-height: 1.6;
    }

    .notes-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .note-item {
        min-height: auto;

        padding: 18px;

        gap: 14px;
    }

    .note-icon {
        width: 42px;
        height: 42px;

        font-size: 16px;
    }

    .note-item h3 {
        margin-bottom: 6px;

        font-size: 16px;
    }

    .note-item p {
        font-size: 13px;

        line-height: 1.55;
    }


    /* =====================================
       FOOTER
    ===================================== */

    .main-footer {
        min-height: 150px;
    }

    .footer-container {
        min-height: 150px;

        flex-direction: column;

        justify-content: center;

        gap: 18px;

        text-align: center;
    }

    .footer-logo {
        width: 135px;
    }

    .footer-info {
        text-align: center;
    }

    .footer-info p {
        font-size: 12px;
    }
}


/* =========================================
   CELULARES PEQUEÑOS
========================================= */

@media (max-width: 380px) {

    .benefit h1 {
        font-size: 26px;

        line-height: 1.12;

        letter-spacing: -0.5px;
    }

    .benefit-image {
        height: 200px;
    }
}


/* =========================================
   CELULARES MUY PEQUEÑOS
========================================= */

@media (max-width: 320px) {

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .benefit h1 {
        font-size: 24px;

        line-height: 1.15;

        letter-spacing: -0.4px;
    }

    .benefit p {
        font-size: 14px;
    }

    .header-logo {
        width: 115px;
    }

    .btn-back {
        min-width: 60px;

        padding: 0 12px;

        font-size: 10px;
    }
}
