.heading {
    position: fixed; /* Fixa o menu no topo */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%; /* Usa % para melhor responsividade */
    background: rgba(0, 0, 0, 0.2); /* Fundo escuro semi-transparente */
    z-index: 1000; /* Mantém o menu acima de tudo */
}

.logo {
    font-size: 24px;
    font-weight: bold;
   
    text-decoration: none;
    color: white;
    font-family: "Vollkorn", serif;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    gap: 4rem; /* Espaçamento reduzido para melhor proporção */
    align-items: center;
}

.text-nav {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    color: white;
    transition: color 0.3s ease-in-out;
    position: relative;
}

.text-nav:hover,
.text-nav.active {
    color: #d4a373;
}

.text-nav.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background-color: #d4a373;
}

@media (max-width: 600px) {
    .navbar{
        display: none;
    }

    .menu-mobile.abrir-menu ~ .overlay-menu {
        display: block;
    }
}

@media (min-width: 600px) {
    .btn-abrir-menu {
        display: none;
    }

    

    .menu-mobile {
        display: none;
    }
}