/* Estilos para o menu no estilo Alokium */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
    border: none;
    background: none;
}

.nav-link::after {
    content: '';

    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
    background: none;

}

.nav-link:hover {
    color: #dddddd;
}

.nav-link:hover::after {
    width: 100%;
}

/* Cores específicas para cada link */
.nav-link.blue::after {
    background-color: #4361ee;
}

.nav-link.orange::after {
    background-color: #ff9f1c;
}

.nav-link.purple::after {
    background-color: #7209b7;
}

.nav-link.green::after {
    background-color: #2ec4b6;
}

.nav-link.turquoise::after {
    background-color: #00b4d8;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active .nav-link {
        color: white;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: var(--primary);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        background-color: var(--primary);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background-color: var(--primary);
    }
}
