@charset "UTF-8";
/* CSS Document */

.suscribete {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 60px 20px;
    box-sizing: border-box;

    background:
        linear-gradient(
            135deg,
            #dfeecd 0%,
            #bfe0e9 45%,
            #f4e6ef 100%);
}



.suscribete-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.suscribete-logo img {
    width: 220px;
    height: auto;
}



.suscribete-caja {
    width: 90%;
    max-width: 520px;

    padding: 45px 50px;

    background-color: rgba(255, 255, 255, 0.94);

    border-radius: 30px;

    box-sizing: border-box;

    text-align: center;

    box-shadow: 0 18px 45px rgba(3, 38, 33, 0.12);
}




.suscribete-caja h1 {
    margin: 0 0 12px;

    color: #032621;

    font-size: 34px;
    font-weight: 700;

    letter-spacing: -1px;
}




.suscribete-caja > p {
    max-width: 420px;

    margin: 0 auto 32px;

    color: #585850;

    font-size: 16px;
    line-height: 1.6;
}

.suscribete {
    height: auto;
    min-height: auto;
}


.form-suscripcion {
    width: 100%;

    display: flex;
    flex-direction: column;

    text-align: left;
}




.form-suscripcion > label {
    margin-bottom: 8px;

    color: #032621;

    font-size: 15px;
    font-weight: 500;
}




.form-suscripcion input[type="text"],
.form-suscripcion input[type="email"] {
    width: 100%;
    height: 52px;

    margin-bottom: 22px;
    padding: 0 18px;

    border: 1px solid #d7d7d2;
    border-radius: 14px;

    box-sizing: border-box;

    background-color: #ffffff;

    color: #585850;

    font-family: "Geologica", sans-serif;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}




.form-suscripcion input[type="text"]:focus,
.form-suscripcion input[type="email"]:focus {
    border-color: #7fc3df;

    box-shadow: 0 0 0 3px rgba(127, 195, 223, 0.18);
}



.form-suscripcion input::placeholder {
    color: #aaaaa5;
}




.aceptar {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    margin-bottom: 25px;
}

.aceptar input {
    margin-top: 3px;
}

.aceptar label {
    color: #585850;

    font-size: 13px;
    line-height: 1.4;
}



.form-suscripcion button {
    width: 100%;
    height: 54px;

    border: none;
    border-radius: 14px;

    background-color: #032621;
    color: #ffffff;

    font-family: "Geologica", sans-serif;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.form-suscripcion button:hover {
    background-color: #7fc3df;
    transform: translateY(-2px);
}



.mensaje-inferior {
    display: block;

    margin-top: 25px;

    color: #7fc3df;

    font-size: 14px;
    font-weight: 500;
}



@media screen and (max-width: 1024px) {

    .suscribete {
        padding: 50px 20px;
    }

    .suscribete-caja {
        max-width: 500px;
        padding: 40px;
    }

    .suscribete-caja h1 {
        font-size: 31px;
    }
}


/* =========================
   CELULAR
========================= */

@media screen and (max-width: 600px) {

    .suscribete {
        min-height: auto;

        padding: 45px 15px;
    }

    .suscribete-logo img {
        width: 180px;
    }

    .suscribete-caja {
        width: 100%;

        padding: 35px 22px;

        border-radius: 22px;
    }

    .suscribete-caja h1 {
        font-size: 27px;
    }

    .suscribete-caja > p {
        font-size: 15px;
    }

    .form-suscripcion input[type="text"],
    .form-suscripcion input[type="email"] {
        height: 50px;

        font-size: 14px;
    }

    .form-suscripcion button {
        height: 50px;

        font-size: 15px;
    }
}

@media screen and (max-width: 1024px) {

    html,
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100%;
    }

    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }


    /* HEADER */

    header {
        position: relative !important;
        top: auto !important;
        flex-shrink: 0;
    }

    header .contenedor {
        position: relative !important;
    }


    /* REGISTRO */

    .suscribete {
        width: 100%;
        height: auto !important;
        min-height: auto !important;

        flex: 1;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        padding: 70px 25px;

        box-sizing: border-box;
    }

    .suscribete-caja {
        width: 90%;
        max-width: 750px;
        margin: 0 auto;
    }


    /* FOOTER */

    #footer {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;

        padding: 35px 0 !important;
        margin: 0 !important;

        flex-shrink: 0;
    }

    #footer .contenedor {
        width: 90%;
        height: auto !important;
        min-height: 0 !important;

        margin: 0 auto;
        padding: 0;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 12px;
    }
}