header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #F9FAFE;
    position: fixed;
    z-index: 999999;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.075); 
}

.main-div-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    height: 75px;
    padding-left: 18px;
    padding-right: 18px;
    background: #F9FAFE;
}

header img {
    margin-right: 40px;
}

.header-div-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

@media (max-width: 1083px) {
    .header-div-left {
        width: fit-content;
    }
}

@media (max-width: 355px) {
    .bunkers-header-full-logo {
    display: none;
    }
}

@media (min-width: 356px) {
    .bunkers-header-full-ico {
    display: none;
    }
}

.header-div-right {   
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: fit-content;
    gap: 22px;
    width: 350px;
}

@media (max-width: 646px) {
    .header-div-right {
        display: none;
    }
}

@media (max-width: 1083px) {
    .header-div-right {
        width: 100%;
    }
}

.header-div-right-hamburger {   
    display: flex;
    flex-direction: row;
    justify-content: flex-end; 
    width: 70px;
    transition: all 0.2s linear;
}

.header-div-right-hamburger img {
    margin: 0px;
    width: 22px;
    cursor: pointer;
}

@media (min-width: 1083px) {
    .header-div-right-hamburger {
        display: none;
    }
}

nav ul li {
    display: inline;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1083px) {
    nav {
        display: none;
    }
}

li {
    margin-right: 10px;
    color: #162858;
    font-size: 15.998px;
    font-weight: 500;
}

li a {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 9px;
    padding-bottom: 9px;
    transition: all 0.1s linear;
    border-radius: 12px;
}

li a:hover {
    border-radius: 12px;
    background-color: #0048bb1c;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 9px;
    padding-bottom: 9px;
    color: #162858;
}

/* INÍCIO DO POPUP DO MENU DO CABEÇALHO */

.main-div-popup {
    margin-top: 60px;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #F9FAFE;
    z-index: 999999;
}

.menu-div-popup {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px;
    margin-top: 20px;
    padding: 0px;
}

.p-1 {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #D7DCE9;
    color: #162858;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: all 0.1s linear;
}

.p-1:hover {
    cursor: pointer;
    background: white;
}

.p-1 p {
    margin-left: 14px;
}

.p-1 img {
    padding: 17px;
    margin: 0px;
}

.buttons-div-popup {
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 10px;    
    margin-top: 27px;
}

.buttons-div-popup button{
    height: 40px;
    font-size: 16px;
}

@media (min-width: 646px) {
    .buttons-div-popup {
        display: none;
    }
}

.social-icon-div-popup {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    gap: 30px;
}

.social-icon-div-popup img {
    margin: 0px;
    padding: 0;
}

.menu-item::after {
    content: '\25BE';
    display: inline-block;
    font-size: 24px;
    margin-left: 8px;
    margin-bottom: 5px;
    vertical-align: middle; 
    color: #2950b9;
}

.dropdown-menu {
    display: none;
    line-height: 2;
    background: #121f740b;
}

.dropdown-menu a:hover {
    text-decoration: underline;
}

.dropdown-toggle.active + .dropdown-menu {
    display: block;
}

.fas.fa-chevron-right {
    margin-left: 20px;
    color: #5BBAFF; 
    margin-right: 10px; 
    transition: all 0.2s linear;
}

.fas.fa-chevron-right:hover {
    margin-left: 30px;
}

.rotate-arrow {
    transform: rotate(90deg);
    transition: transform 0.3s ease; 
}