@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
}


/* ==========================================
   BANNER PRINCIPAL
========================================== */

.banner {
    width: 100%;
    height: 100vh;
    min-height: 0;

    display: flex;
    flex-direction: column;

    background: #fff;

    position: relative;

    overflow: hidden;
}


/* ==========================================
   HEADER
========================================== */

.banner header {
    width: 100%;
    height: 115px;

    flex-shrink: 0;

    padding: 20px 5.5%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #fff;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);

    position: relative;
    z-index: 10;
}


/* ==========================================
   LOGO
========================================== */

.banner header .logo {
    width: 150px;
    height: auto;

    display: block;
}


/* ==========================================
   BOTÓN INICIAR SESIÓN
========================================== */

.button-inicio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 14px 30px;

    background: #d67900;
    color: #fff;

    border-radius: 35px;

    text-decoration: none;

    font-size: 18px;
    font-weight: 600;

    transition: all 0.25s ease;

    box-shadow: 0 5px 15px rgba(214, 121, 0, 0.25);
}

.button-inicio i {
    font-size: 21px;
}

.button-inicio:hover {
    background: #c46d00;
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(214, 121, 0, 0.30);
}

.button-inicio:active {
    transform: translateY(0);
}


/* ==========================================
   CONTENEDOR PRINCIPAL
========================================== */

.contenedor {
    width: 100%;

    flex: 1;
    min-height: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 5.5% 30px;

    gap: 40px;

    overflow: hidden;
}


/* ==========================================
   BLOQUE TEXTO
========================================== */

.contenedor .textBx {
    width: 40%;
    max-width: 570px;

    flex-shrink: 0;
}


/* ==========================================
   TÍTULO
========================================== */

.contenedor .textBx h2 {
    margin: 0;

    font-size: clamp(3.5rem, 5vw, 6rem);
    line-height: 0.95;

    font-weight: 800;
    letter-spacing: -2px;
}

.contenedor .textBx h2 span {
    display: block;
    color: #252c91;
}

.contenedor .textBx h2 strong {
    display: block;
    color: #d67900;
    font-weight: 800;
}
/* ==========================================
   PÁRRAFO
========================================== */

.contenedor .textBx p {
    margin-top: 35px;

    max-width: 430px;

    color: #596273;

    font-size: clamp(1rem, 1.25vw, 1.25rem);

    line-height: 1.8;

    font-weight: 400;
}


/* ==========================================
   LÍNEA DECORATIVA
========================================== */

.linea-titulo {
    width: 105px;
    height: 4px;

    background: #d67900;

    margin-top: 30px;
    margin-bottom: 25px;
}

/* ==========================================
   IMAGEN
========================================== */

.contenedor .imgBx {
    flex: 1;

    min-width: 0;
    min-height: 0;

    height: 100%;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    overflow: hidden;
}

.contenedor .imgBx img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: right center;
}


/* ==========================================
   REDES
========================================== */

.redes {
    position: absolute;

    bottom: 20px;
    left: 5.5%;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 5;

    list-style: none;
}

.redes li {
    list-style: none;
}

.redes li a {
    width: 45px;
    height: 45px;

    margin-right: 12px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #333;

    transition: 0.2s ease-in-out;
}

.redes li a:hover {
    transform: translateY(-5px);

    background: #d67900;
}

.redes li a img {
    width: 25px;
    height: 25px;

    object-fit: contain;

    filter: invert(1);
}


/* ==========================================
   MENÚ / ESTADOS ANTERIORES
========================================== */

.funcionNav {
    position: relative;

    width: 40px;
    height: 40px;

    cursor: pointer;
}

.funcionNav.active {
    z-index: 10;
}

.navegador {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    z-index: 2;

    opacity: 1;
    visibility: visible;

    transition: 0.5s;
}

.navegador li {
    list-style: none;
}

.navegador li a {
    display: inline-block;

    margin-left: 40px;

    text-decoration: none;

    color: #111;

    font-weight: 500;
}


/* ==========================================
   FOOTER
========================================== */

footer {
    background: #151415;

    justify-content: center;
    align-items: center;
    text-align: center;
}

footer .derechos {
    justify-content: center;
    align-items: center;
    text-align: center;
}

footer .derechos p {
    color: #111;
}


/* ==========================================
   TABLETS
========================================== */

@media (max-width: 991px) {

    html,
    body {
        overflow: hidden;
    }

    .banner header {
        height: 90px;

        padding: 15px 35px;
    }

    .banner header .logo {
        width: 125px;
    }

    .button-inicio {
        padding: 11px 25px;

        font-size: 15px;
    }

    .contenedor {
        padding: 25px 35px;

        gap: 20px;
    }

    .contenedor .textBx {
        width: 42%;
    }

    .contenedor .textBx h2 {
        font-size: clamp(2.8rem, 6vw, 4.5rem);
    }

    .contenedor .textBx p {
        font-size: 1rem;

        margin-top: 25px;
    }

    .contenedor .imgBx {
        width: 58%;
    }
}


/* ==========================================
   PANTALLAS PEQUEÑAS
========================================== */

@media (max-width: 700px) {

    html,
    body {
        overflow-y: auto;
    }

    .banner {
        height: auto;
        min-height: 100vh;
        overflow: hidden;
    }

    .banner header {
        height: 80px;

        padding: 12px 20px;
    }

    .banner header .logo {
        width: 105px;
    }

    .button-inicio {
        padding: 9px 18px;

        font-size: 13px;
    }

    .contenedor {
        flex-direction: column-reverse;

        justify-content: center;

        padding: 20px;

        gap: 10px;

        overflow: visible;
    }

    .contenedor .imgBx {
        width: 100%;
        height: 48vh;

        flex: none;

        justify-content: center;
    }

    .contenedor .imgBx img {
        width: 100%;
        height: 100%;

        object-position: center;
    }

    .contenedor .textBx {
        width: 100%;

        max-width: 500px;

        text-align: center;
    }

    .contenedor .textBx h2 {
        font-size: clamp(2.4rem, 11vw, 4rem);

        letter-spacing: -1px;
    }

    .contenedor .textBx p {
        max-width: 100%;

        margin: 20px auto 0;

        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contenedor .textBx::after {
        margin: 25px auto 0;
    }
}


/* ==========================================
   PANTALLAS MUY PEQUEÑAS
========================================== */

@media (max-width: 450px) {

    .banner header {
        height: 70px;
    }

    .banner header .logo {
        width: 90px;
    }

    .button-inicio {
        padding: 8px 15px;

        font-size: 12px;
    }

    .contenedor .imgBx {
        height: 42vh;
    }

    .contenedor .textBx h2 {
        font-size: 2.5rem;
    }

    .contenedor .textBx p {
        font-size: 0.85rem;
    }
}