:root{
    --lu-verde: #179897;
    --lu-azul: #00668A;
    --lu-laranja: #F37323;
}

.header-btns{
    display: flex;
    align-items: center;
}

.header-btns > p{
    font-weight: 600;
    margin-right: 40px;
    font-size: 20px;
    color: #00668A;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: #000;
    text-decoration: none;
    padding: 8px 18px;
    transition: background 0.3s;
    border-radius: 10px;
    font-weight: 600;
}

.nav-list a:hover {
    background-color: var(--lu-laranja);
    border-radius: 10px;
    color: white;
}

.action-button {
    display: flex;
    background-color: var(--lu-laranja);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.action-button:hover {
    background-color: #000000;
}

.action-button img{
    margin-right: 10px;
}

/* Mobile Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 3px 0;
}

.logo-mobile{
    display: none;
}

@media (max-width: 768px) {

    .logo{
        display: none;
    }

    .logo-mobile{
        display: block;
    }

    .logo img{
        width: 90%;
    }

    .action-button p{
        display: none;
    }

    .action-button img{
        margin-right: 0;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 120px; /* Adjust based on navbar height */
        left: 0;
        background-color: var(--lu-laranja);
    }

    .nav-list a {
        color: #FFFFFF;
    }

    .nav-list.active {
        display: flex;
        z-index: 999;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-list li {
        margin: 20px 0;
        text-align: center;
    }

    /* Mobile Styles */

    .menu-toggle .bar {
        height: 3px;
        width: 25px;
        background-color: var(--lu-azul);
        margin: 3px 0;
    }
}