/* Menu azul bebê */
.menu {
    display: flex;
    align-items: center;
    background-color: #D6EBF9; /* azul bebê claro */
    padding: 10px 20px;
    gap: 10px;
}

/* Botões e dropdowns principais */
.menu a.menu-btn,
.dropbtn {
    background-color: #D6EBF9;
    color: #000;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.menu a.menu-btn:hover,
.dropbtn:hover {
    background-color: #BEE4F5; /* hover azul bebê */
}

/* Botão Minha Conta verde */
.conta-btn {
    background-color: #28a745;
    color: white;
}

.conta-btn:hover {
    background-color: #1e7e34;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Links do dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #D6EBF9; /* azul bebê */
    min-width: 180px;
    top: 100%;
    left: 0;
    border-radius: 4px;
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    color: #000;
    padding: 10px;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #BEE4F5;
}

/* Mostrar dropdown ao passar o mouse */
.dropdown:hover .dropdown-content {
    display: block;
}