
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

#main-navbar {
    font-family: 'Montserrat', sans-serif;
    height: 120px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 9999;
    /*background: linear-gradient(180deg, #00447C 0%, #004076 100%) !important; */
}

#main-navbar {
    
}

    #main-navbar.scrolled {
        background-color: #212529 !important; /* ou rgb(33,37,41) = bg-dark */
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

#main-logo {
    max-height: 65px;
    width: auto;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    height: 80px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .navbar-scrolled #main-logo {
        max-height: 55px;
    }

    .navbar-scrolled .menu-item {
        color: #1f2937 !important;
    }

    .navbar-scrolled .group:hover > .menu-item {
        color: white !important;
    }

    .navbar-scrolled .social-icons.desktop a,
    .navbar-scrolled .hamburger-icon,
    .navbar-scrolled .hamburger-line {
        color: #1f2937 !important;
        background-color: #1f2937;
        fill: #1f2937 !important;
        stroke: #1f2937 !important;
    }

.desktop-menu {
    margin-left: 180px !important;
    height: 100%;
    display: flex;
    align-items: center;
}

@media (max-width: 1023px) {
    .desktop-menu {
        display: none !important;
    }
}

.desktop-menu ul {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #ffffff;
}

.relative.group {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: auto !important;
    flex: 0 0 auto !important;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    height: 100%;
    width: auto !important;
    padding: 0 40px 0 25px !important;
    color: white !important;
    font-weight: 100 !important;
    text-transform: uppercase;
    font-size: 18px !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background-color 0.3s ease;
    color: #ffffff;
    letter-spacing: 2px !important;
    word-spacing: 5px !important;
    padding-top: 50px !important;
}

.group:hover > .menu-item {
    background: linear-gradient(180deg, #00a3e0 0%, #00688D 100%) !important;
    color: #ffffff !important;
}

.submenu-azul {
    position: absolute;
    background-color: #00a3e0 !important;
    top: 100% !important;
    left: 0;
    width: max-content !important;
    min-width: 100% !important;
    right: auto !important;
    padding: 0 !important;
    display: none;
    z-index: 10000;
    list-style: none;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    color: #ffffff;
}

.group:hover .submenu-azul {
    display: block !important;
}


.submenu-item-azul {
    display: block !important;
    float: none !important;
    padding: 12px 40px 12px 25px !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: 600;
    text-transform: none !important;
    text-decoration: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.2s ease;
}

    .submenu-item-azul:hover {
        background-color: #3981ca;
        padding-left: 25px !important;
    }

    .submenu-item-azul.long-text {
        white-space: nowrap !important;
        word-wrap: normal !important;
        max-width: none !important;
        color: #ffffff !important;
    }


/* --- POSICIONAMENTO LATERAL --- */
.ajuste-posicao {
    margin-left: auto !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    /* MOBILE: Reduzi de 20px para 10px para encostar mais Edireita */
    padding-right: 10px !important;
}

@media (max-width: 1023px) {
    .ajuste-posicao {
        transform: translateY(-40px) !important;
    }

    .ajuste-posicao_mobile {
        margin-top: 70px !important;
    }
}

@media (min-width: 1024px) {
    .ajuste-posicao {
        /* DESKTOP: Mantém-se afastado para a esquerda (80px) como pediste antes */
        padding-right: 80px !important;
        flex-direction: row;
        align-items: center;
        transform: translateY(-20px) !important;
    }

    .ajuste-posicao_mobile {
        margin-top: 0 !important;
    }
}

.
{
    color: #80D1EF !important;
    font-size: 17px;
    transition: color 0.3s ease;
}

a.cor_icon, a.cor_icon i {
    color: #80D1EF !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    font-size: 21px;
}

.social-icons.desktop ul {
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

.social-icons.desktop a:hover {
    color: #00A1DE;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-sidepanel {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #004986;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    overflow-y: auto;
    font-family: 'Montserrat', sans-serif;
}

    .mobile-sidepanel.open {
        transform: translateX(0);
    }

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 0;
}

    .mobile-close-btn:hover {
        color: #00A1DE;
    }

.mobile-menu-content {
    padding: 60px 20px 20px 20px;
    color: #ffffff !important;
}

.mobile-menu-item {
    display: block;
    padding: 15px 0;
    color: white !important;
    font-weight: 700 !important;
    font-size: 16px;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    width: 100%;
    text-align: left;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

    .mobile-menu-item.with-children {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-item:hover,
    .mobile-menu-item:hover span {
        color: #00A1DE !important;
    }

    .mobile-menu-item span {
        font-weight: 700 !important;
        text-transform: uppercase !important;
        color: white !important;
    }

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
    margin-left: 10px;
    color: #ffffff !important;
}

    .mobile-submenu.open {
        max-height: 1000px;
    }

.mobile-submenu-item {
    display: block;
    padding: 12px 10px;
    color: white !important;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-transform: uppercase !important;
}

    .mobile-submenu-item:hover {
        background: rgba(0, 0, 0, 0.1);
    }

.mobile-arrow {
    transition: transform 0.3s ease;
    color: #ffffff !important;
    fill: white !important;
}

    .mobile-arrow.rotated {
        transform: rotate(180deg);
    }

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 30px;
    color: white;
    margin-left: auto;
    margin-top: 20px;
}

    .hamburger-icon svg {
        fill: currentColor;
    }

@media (min-width: 1024px) {
    .hamburger-icon {
        display: none !important;
    }
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.container-column .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}



