:root {
    --color-primario: #1E2B50;;
    --color-amarillo: #FFBE00;
}


.custom-container {
    max-width: 1200px;
    margin: 0 auto;
}

/*Navbar*/
.nav {
    background-image: linear-gradient(180deg, #0C1928 0%, #0C1928 94%);
    width: 100%;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.logo-home {
    max-width: 165px;
}

.menu-home {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 20px;
    color: white;

}

.menu-home a {
    text-decoration: none;
    color: white;
}

.button-home {
    text-decoration: none;
    background-color: var(--color-amarillo);
    padding: 14px 50px;
    color: var(--color-primario);
    font-size: 20px;
}



/*Home hero*/

.hero-home {
    background-image: url('../images/home-hero.jpg');
    width: 100%;
    height: 900px;
}


.hero-home .icon {
    font-size: 150px;
    color: var(--color-amarillo);
}


.hero-container {
    padding-top: 100px;
}


.icon-text {
    color: var(--color-amarillo);
}


.icon-text p {
    font-size: 18px;
    margin-top: -20px;
    text-transform: uppercase;
}


.hero-content {
    width: 55%;
}


.hero-content h1 {
    color: white;
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 19px;
    color: white;
    margin-bottom: 38px;
}

.hero-content-button {
    color: white;
    border: 1px solid var(--color-amarillo);
    padding: 12px 50px;
    font-size: 16px;
}


/*Login*/


.hero-login-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.hero-login-container form {
    width: 50%;
}

.hero-login-container .hero-content img {
    width: 664px;
}




