* Definir as cores no :root para usar nas variáveis */
:root {
    --oxford-blue: #0E1C36; /* Oxford Blue */
    --linen: #FFFDE1; /* Linen */
    --light-cyan: #D7F9FF; /* Light Cyan */
    --ivory: #F9FBF2; /* Ivory */
    --jordy-blue: #AFCBFF; /* Jordy Blue */
}

/* Navbar */
.navbar {
    background-color: var(--oxford-blue); /* Usando Oxford Blue para o fundo da navbar */
    padding: 8px 20px; /* Deixando mais fina */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
}

.logo img {
    max-height: 40px;
    height: auto;
    width: auto;
    display: block;
}

/* Navbar Container  */
.navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: nowrap !important;
}


/* Toggle (Mobile) */
.navbar-toggler {
    border: none;
    outline: none;
    background: transparent;
    padding: 5px;
}

/* Hamburger Button*/
.navbar-toggler-icon {
    width: 30px;
    height: 30px;
    background-color: var(--oxford-blue); /* Cor do ícone em Linen */
}

/* Menu Links*/
.navbar-nav {
    display: flex;
    list-style: none;
    gap: 15px;
    margin-left: auto;
}

.navbar-nav .nav-item {
    list-style: none;
}

.navbar-nav .nav-link {
    color: var(--linen) !important; 
    font-weight: 400;
    font-size: 1rem !important;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    padding: 8px 12px !important;
    border-radius: 5px;
}

.navbar-nav .nav-link:hover {
    color: var(--light-cyan) !important; 
}


@media (max-width: 992px) {
    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-top: 10px;
    }

    .navbar-collapse {
        background: var(--oxford-blue);
        justify-content: flex-end !important;
        width: auto !important;
        width: auto !important;
        text-align: center;
        padding: 10px 0;
    }

    .navbar-nav .nav-item {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 12px;
    }

 
    .navbar-collapse.collapsing {
        height: 0;
        transition: height 0.3s ease;
    }

    .navbar-collapse.show {
        transition: height 0.3s ease;
    }
}