#language-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fundo mais escuro */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out; /* Animação de entrada */
}

#language-popup .popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
    max-width: 400px;
    width: 90%;
    animation: scaleUp 0.3s ease-in-out; /* Animação de escala */
}

#language-popup h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

#language-popup ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#language-popup li {
    margin: 10px 0;
}

#language-popup .language-option {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

#language-popup .language-option:hover {
    background: #0056b3; /* Cor ao passar o mouse */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
    }
    to {
        transform: scale(1);
    }
}
