@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

header {
    width: 100%;
    background: #ffffff;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*LOGO COM IMAGEM*/
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    max-height: 65px;
    width: auto;
    object-fit: contain;
}

/*NAVEGAÇÃO*/
#nav_list {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-item a {
    text-decoration: none;
    color: #1e3a8a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #0284c7;
    transition: width 0.3s ease;
}

.nav-item a:hover::after,
.nav-item.nav-item-active a::after {
    width: 100%;
}

.nav-item.nav-item-active a {
    color: #0284c7;
}

/*BOTÃO TELEFONE*/
.btn-phone-header {
    background-color: #0284c7;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-phone-header:hover {
    background-color: #0369a1;
    transform: translateY(-2px);
}

#mobile_btn, #mobile_menu {
    display: none;
}

@media (max-width: 992px) {
    #nav_list, .btn-phone-header {
        display: none;
    }

    #mobile_btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: #1e3a8a;
        cursor: pointer;
    }

    #mobile_menu {
        display: flex;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid #e2e8f0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    #mobile_menu.active {
        max-height: 300px;
        padding: 20px 0;
    }

    #mobile_nav_list {
        list-style: none;
        text-align: center;
        width: 100%;
    }

    #mobile_nav_list .nav-item {
        margin: 12px 0;
    }
}