/* Estilos para o menu de navegação */
.navbar {
    background-color: #0f1f2e; /* Cor de fundo sólida */
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra sutil */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar .logo-image {
    max-height: 50px;
}

.menu-items {
    display: flex;
    gap: 25px;
}

.menu-items a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 10px;
    transition: transform 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.menu-items a:hover {
    transform: scale(1.15);
    color: #a7c5e4;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* Menu responsivo */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .menu-items {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px; /* Altura da navbar */
        left: 0;
        width: 100%;
        background-color: #0f1f2e;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .menu-items.active {
        display: flex;
    }

    .menu-items a {
        padding: 15px;
        width: 100%;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
