
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    transition: all 0.3s ease;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #00ffff;
    text-decoration: none;
    padding: 12px 20px;
    background-color: #333;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

nav ul li a:hover {
    background-color: #288181;
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgb(0, 255, 255), 0 0 25px rgba(255, 0, 255, 0.6);
}


/* Responsividade */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        display: none;
    }
    
    nav ul.active {
        display: flex;
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
    }

    .support-option,
    .gallery-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
