/*
=====================================================
 NAVEGAÇÃO
=====================================================
*/

.navbar {
    background-color: rgba(0, 0, 0, 0.4);
    /* Fundo semi-transparente */
    backdrop-filter: blur(5px);
    /* Efeito de blur */
    padding: 15px 0;
    position: fixed;
    /* Fixa a navegação */
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.4s ease;
    display: flex;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    /* Fundo mais escuro ao rolar */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Michroma', sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.menu-toggle {
    display: none;
    /* Esconde em desktop */
    font-size: 1.8em;
    color: white;
    cursor: pointer;
}

.nav-links {
    display: flex;
    /* Visível em desktop */
}

.nav-links a {
    text-decoration: none;
    color: #ddd;
    margin-left: 25px;
    transition: color var(--transition-speed);
}

.nav-links a:hover {
    color: var(--primary-color);
}

