/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Montserrat", sans-serif;

    background: #ffffff;

    color: #111111;

    -webkit-font-smoothing: antialiased;
}



/* =====================================================
   HEADER
===================================================== */

.header {
    width: 100%;

    height: 82px;

    background: #0259F2;

    border-bottom: 1px solid #eeeeee;

    position: relative;

    z-index: 100;
}


.header-container {
    width: 100%;

    max-width: 1450px;

    height: 100%;

    margin: 0 auto;

    padding: 0 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}



/* =====================================================
   LOGO
===================================================== */

.logo {
    display: flex;

    align-items: center;

    text-decoration: none;

    flex-shrink: 0;
}


.logo img {
    display: block;

    width: auto;

    height: 64px;

    max-width: 210px;

    object-fit: contain;
}



/* =====================================================
   MENU
===================================================== */

.menu {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 38px;
}


.menu a {
    position: relative;

    padding: 8px 0;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: color 0.25s ease;
}


.menu a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: #111111;

    transition: width 0.25s ease;
}


.menu a:hover {
    color: #000000;
}


.menu a:hover::after {
    width: 100%;
}



/* =====================================================
   HERO
===================================================== */

.hero {
    width: 100%;

    min-height: calc(100vh - 82px);

    display: flex;

    overflow: hidden;
}



/* =====================================================
   HERO IZQUIERDA
===================================================== */

.hero-left {
    width: 50%;

    min-height: calc(100vh - 82px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 80px 7%;
}


.hero-content {
    width: 100%;

    max-width: 620px;
}



/* =====================================================
   ETIQUETA
===================================================== */

.hero-label {
    margin-bottom: 24px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.8px;

    color: #0259F2;
}



/* =====================================================
   TITULO
===================================================== */

.hero-content h1 {
    margin-bottom: 28px;

    font-size: clamp(50px, 5.5vw, 82px);

    line-height: 1.01;

    font-weight: 800;

    letter-spacing: -4px;

    color: #000;
}



/* =====================================================
   DESCRIPCION
===================================================== */

.hero-content p {
    max-width: 540px;

    margin-bottom: 38px;

    font-size: 17px;

    line-height: 1.75;

    font-weight: 400;

    color: #0259F2;
}



/* =====================================================
   BOTONES
===================================================== */

.buttons {
    display: flex;

    align-items: center;

    gap: 13px;
}


.btn {
    min-height: 52px;

    padding: 0 28px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    text-decoration: none;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.btn:hover {
    transform: translateY(-2px);
}



/* INICIAR SESION */

.btn-login {
    background: #0259F2;

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12);
}


.btn-login:hover {
    background: #2a2a2a;

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.18);
}



/* REGISTRARSE */

.btn-register {
    background: #eeeeee;

    color: #111111;
}


.btn-register:hover {
    background: #dddddd;
}



/* =====================================================
   HERO DERECHA
===================================================== */

.hero-right {
    width: 50%;

    min-height: calc(100vh - 82px);

    overflow: hidden;

    background: #eeeeee;
}


.hero-right img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.8s ease;
}


.hero-right:hover img {
    transform: scale(1.025);
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .header-container {
        padding: 0 30px;
    }


    .menu {
        gap: 24px;
    }


    .menu a {
        font-size: 12px;
    }


    .hero-left {
        padding: 60px 6%;
    }


    .hero-content h1 {
        font-size: clamp(45px, 5.5vw, 65px);

        letter-spacing: -3px;
    }


    .hero-content p {
        font-size: 15px;
    }

}



/* =====================================================
   MOVIL
===================================================== */

@media (max-width: 750px) {


    /* HEADER */

    .header {
        height: auto;
    }


    .header-container {
        min-height: 76px;

        padding: 16px 20px;

        flex-direction: column;

        gap: 16px;
    }


    .logo img {
        height: 40px;
    }


    .menu {
        width: 100%;

        gap: 17px;

        justify-content: center;

        flex-wrap: wrap;
    }


    .menu a {
        font-size: 10px;

        padding: 4px 0;
    }



    /* HERO */

    .hero {
        flex-direction: column;

        min-height: auto;
    }


    .hero-left {
        width: 100%;

        min-height: auto;

        padding: 65px 25px 60px;

        text-align: center;
    }


    .hero-content {
        max-width: 600px;
    }


    .hero-label {
        margin-bottom: 18px;

        font-size: 9px;

        letter-spacing: 2px;
    }


    .hero-content h1 {
        margin-bottom: 22px;

        font-size: clamp(45px, 13vw, 68px);

        line-height: 1.02;

        letter-spacing: -3px;
    }


    .hero-content p {
        margin: 0 auto 30px;

        font-size: 14px;

        line-height: 1.7;
    }



    /* BOTONES */

    .buttons {
        justify-content: center;

        flex-wrap: wrap;

        gap: 10px;
    }


    .btn {
        min-height: 50px;

        padding: 0 23px;

        font-size: 12px;
    }



    /* IMAGEN */

    .hero-right {
        width: 100%;

        min-height: 400px;

        height: 60vw;

        max-height: 600px;
    }

}



/* =====================================================
   MOVIL PEQUEÑO
===================================================== */

@media (max-width: 450px) {


    .header-container {
        padding: 15px 16px;
    }


    .menu {
        gap: 12px;
    }


    .menu a {
        font-size: 9px;
    }


    .hero-left {
        padding: 55px 20px;
    }


    .hero-content h1 {
        font-size: 44px;

        letter-spacing: -2px;
    }


    .hero-content p {
        font-size: 13px;
    }


    .buttons {
        flex-direction: column;

        width: 100%;
    }


    .btn {
        width: 100%;

        max-width: 280px;
    }


    .hero-right {
        min-height: 320px;

        height: 80vw;
    }

}