.headerContainer {
    background-color: #fff;
    padding: 0.75rem 1rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    border-radius: 10px;
    box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.headerContainer .logo {
    display: flex;
    align-items: center;
}

.headerContainer .logo .imgLogo {
    max-width: 60px;
    height: 60px;
}

.headerContainer .logo .textLogo {
    font-size: 1.5rem;
    font-weight: 500;
    color: #222;
    margin-left: -0.7rem;
}

.headerContainer .logo .textLogo .textLogoColor {
    font-weight: 600;
    color: #689ff2;
}

.menuHeader{
    display: flex;
}

.menuHeader ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.link {
    padding: 0.75rem 1rem;
    color: #222;
    font-weight: 600;
    font-size: 0.938rem;
}

.imgBandeira {
    border-radius: 50%;
    max-width: 24px;
    height: 24px;
}

.btn {
    color: #fff;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 0.938rem;
    line-height: 1.3;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btnPrimary {
    background: #689ff2;
    margin-left: 1.5rem;
}

.btnPrimary:hover {
    background: #3f87f3;
}

.menuIcon {
    display: none;
}

.menuMobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 109;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

aside {
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 2rem;
    background-color: #fff;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    z-index: 100;
}

.menuMobile .menuIcon {
    padding: 1rem;
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
}

.menuMobile .menuIcon img {
    max-width: 25px;
    height: 25px;
}

.listMenuMobile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
}

.menuOpened {
    overflow: hidden;
}

.menuOpened .menuMobile {
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 991px) {
    .itemLink,
    .openModalLogin {
        display: none;
    }

    .menuIcon {
        display: block;
    }

    .btnPrimary {
        margin-left: 0;
    }
}

@media (max-width: 750px) {
    .headerContainer {
        margin-top: 0;
    }

    .mobile-padding {
        padding-top: 1.5rem;
    }
}

@media (max-width: 700px) {
    .headerContainer .logo .textLogo {
        font-size: 1.3rem;
        margin-left: -0.4rem;
    }

    .headerContainer .logo .imgLogo {
        max-width: 45px;
        height: 45px;
    }
}

@media (max-width: 460px) {
    .menuHeader ul .link {
        padding: 0.75rem 0.5rem;
    }
    .openModalLoginMobile{
        margin-top: 1rem;
    }
}
