nav{
    display: flex;
    justify-content: center;
    width: 100%;
}
nav .desktop{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    justify-content: space-between;
    padding: 16px 0px;
    gap: 16px;
}
nav .mobile{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
nav .left{
    width: 136px;
}
nav .right{
    width: 100%;
    max-width: 136px;
}
nav .menuBtn{
    display: none;
    height: 40px;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    border: 1px solid #a4a4a4;
    background: url('../../assets/icons/menu.svg') no-repeat center;
}
nav h1{
    font-weight: 700;
    color: #24D97C;
}
#menuBurger{
    display: none;
}
nav .mid{
    display: flex;
    flex-direction: row;
    font-weight: 700;
    width: 100%;
    justify-content: center;
    max-width: 616px;
    gap: 32px;
}
nav .mid a{
    color: #000000; 
    width: 100%;
    max-width: 132px!important;
    text-align: center;
}
nav .mid a:hover{
    color: #04c562;
    cursor: pointer; 
    text-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.2);
}
nav .btn_login{
    align-self: flex-end;
    height: 40px;
    background-color: rgba(37, 216, 124, 0.24);
    color: #16844B;
    font-weight: 700;
    padding: 8px 24px;
}
.dropdown {
    display: flex;
    width: 100%;
    max-width: 136px;
    position: relative;
    justify-content: flex-end;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(40px + 8px);
    width: 164px;
    background-color: white;
    max-width: 300px; /* Aumentado para acomodar imagens */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    padding: 8px;
}

.dropdown-content.show {
    display: block;
}

/* Estilo dos itens do dropdown */
.dropdown-item {
    display: flex;
    align-items: center;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Estilo das imagens */
.dropdown-img {
    width: 24px; /* Ajuste conforme necessário */
    height: 24px;
    object-fit: contain;
}

/* Opcional: apenas imagens sem texto */
.dropdown-item span {
    font-size: 14px;
    font-weight: 500;
}

#BP1,
#BP2{
    width: 100%;
    height: auto;
}
@media only all and (max-width: 820px) {
    .menuNav-active {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: none!important;
        padding: 20px;
        position: absolute;
        background: white;
        border-bottom: 1px solid #d3d3d3;
        top: 0;
        left: 0;
        z-index: 99;
        height: 50vh; /* Ocupa 50% da altura da tela */
        box-shadow: 0 6px 20px rgba(0,0,0,0.26); /* Sombra para destaque */
    }
    nav .right{
        max-width: 40px;
    }
    nav .menuBtn{
        display: flex;
        z-index: 999999999;
    }
    nav .menuBtn:hover{
        cursor: pointer; 
        box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.20);
    }
    nav .mid{
        display: none;
        gap: 56px;
    }
    nav .btn_login{
        width: 40px;
        background-image: url('../../assets/icons/lock.svg');
        background-position: center;
        background-repeat: no-repeat;
        padding: 0;
        text-indent: 99999px;
    }
}