
/* ======= MENU RESPONSIVO FIXO ======= */

    .MenuPrincipal {
        background-color: #003366; /* Azul marinho */
        position: fixed;
        top: 10px; /* Distância do topo */
        left: 2.5vw;
        right: 2.5vw;
        border-radius: 15px;
        padding: 5px; /* Menos padding para deixar mais fino */
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Sombra suave para destaque */
    }

    .MenuPrincipal-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .logoLocoMenu {
        text-decoration: none;
    }

    .logo-img {
        width: 50px; /* Ajuste a largura da logo */
        height: auto;
        margin-left: 10px; /* ajustável conforme necessário */
    }

    .MenuPrincipal-list {
        list-style: none;
        margin: 0;
        padding: 0; /* Remover padding */
        display: flex;
    }

    .MenuPrincipal-list li {
        margin-right: 15px; /* Menos espaço entre os itens */
    }

    .MenuPrincipal-list a {
        text-decoration: none;
        color: white;
        font-weight: bold;
        font-family: Arial, sans-serif;
        transition: color 0.3s ease-in-out;
    }

    .MenuPrincipal-list a:hover {
        color: #4CAF50;
    }

    .home-button {
        background-color: transparent;
        color: white;
        border: 2px solid white;
        border-radius: 10px;
        padding: 5px 10px; /* Menos padding para o botão */
        text-decoration: none;
    }

    .home-button:hover {
        background-color: white;
        color: black;
    }

    .menu-toggle {
        display: none;
        font-size: 28px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }

    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
        }

       .MenuPrincipal-list {
    flex-direction: column;
    position: absolute;
    top: 100%; /* Altera de 50px para 100% para abrir logo abaixo do menu */
    left: 0;
    right: 0;
    background-color: #003366;
    border-radius: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}


        .MenuPrincipal-list.show {
            max-height: 300px;
        }

        .MenuPrincipal-list li {
            margin: 8px 0;
        }
    }

