﻿:root {
    --azul: #0d2345;
    --dorado: #b78a2f;
    --gris: #f5f6f8;
    --texto: #343434;
}

body {
    font-family: 'Poppins',sans-serif;
    background: white;
    color: var(--texto);
    padding-top: 0;
}

.navbar {
    height: 95px;
    transition: .3s;
}

.logo-text {
    font-size: 48px;
    margin: 0;
    font-weight: 700;
    color: var(--azul);
}

.logo-sub {
    margin: 0;
    font-size: 18px;
    color: #666;
}

.nav-link {
    margin-left: 22px;
    font-weight: 500;
    color: #333 !important;
    transition: .3s;
}

    .nav-link:hover {
        color: var(--dorado) !important;
    }

.btn-syca {
    background: var(--azul);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
}

    .btn-syca:hover {
        background: var(--dorado);
        color: white;
    }

footer {
    margin-top: 80px;
    background: #0b1f3b;
    padding: 60px;
    color: white;
}

    footer h4 {
        margin-bottom: 20px;
    }

    footer i {
        font-size: 28px;
        cursor: pointer;
        transition: .3s;
    }

        footer i:hover {
            color: gold;
        }


/*---------------------------------------
            BIENVENIDA
----------------------------------------*/

.welcome-bar {
    background: white;
    padding: 18px;
    border-bottom: 1px solid #ececec;
    text-align: center;
}

.flag {
    font-size: 28px;
    margin-right: 15px;
}

.welcome-text {
    font-size: 34px;
    font-weight: 700;
    color: #0d2345;
}

/*---------------------------------------
                HERO
----------------------------------------*/

.hero {
    position: relative;
    height: 780px;
    background: url('/images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, rgba(4,18,38,.90) 0%, rgba(4,18,38,.75) 35%, rgba(4,18,38,.15) 100%);
}

.hero-row {
    height: 760px;
    position: relative;
    z-index: 5;
}

.hero-small {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(15px);
    color: white;
    border-radius: 30px;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 35px;
}

.hero h1 {
    font-size: 76px;
    line-height: 82px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.hero p {
    font-size: 23px;
    line-height: 40px;
    color: #f2f2f2;
    margin-bottom: 45px;
    max-width: 620px;
}

.btn-primary-custom {
    background: #b78a2f;
    color: white;
    padding: 18px 38px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-right: 20px;
    transition: .35s;
    text-decoration: none;
}

    .btn-primary-custom:hover {
        background: white;
        color: #0d2345;
        transform: translateY(-4px);
    }

.btn-outline-custom {
    border: 2px solid white;
    padding: 18px 38px;
    color: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

    .btn-outline-custom:hover {
        background: white;
        color: #0d2345;
        transform: translateY(-4px);
    }




@media(max-width:991px) {

    .hero {
        height: auto;
        padding: 120px 0;
    }

    .hero-row {
        height: auto;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 56px;
    }

    .hero p {
        font-size: 18px;
        line-height: 30px;
    }

    .welcome-text {
        font-size: 24px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }
}