.idioma-menu {
    display: none;
    position: fixed;
    top: 110px; /* Ajusta según el alto del botón */
    right: 10px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-width: 140px;
    z-index: 1002;
    padding: 4px 0;
}

.idioma-menu div {
    padding: 8px 16px;
    cursor: pointer;
    color: #222;
    transition: background 0.2s;
}

.idioma-menu div:hover {
    background: #eee;
    color: #333;
}

.boton-idioma {
    background-color: var(--color-title);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1em;
    position: absolute; 
    bottom: 10px; 
    right: 10px;
    width: 32px;
    height: 32px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.boton-idioma-2 {
    background-color: var(--color-btn);
    color: white;
    border: 2px solid var(--color-btn);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1em;
    /*position: absolute; */
    /*bottom: 5px; */
    margin-left: 20px;
    right: 5px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/*
@media (max-width: 768px) {
    #btn-idioma {
        display: none !important;
    }
}
*/