/* CSS do botão flutuante de seleção de idiomas */
.floating-lang {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.lang-button {
	margin-right: 5px;
}

.floating-lang img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.floating-lang img:hover {
    transform: scale(1.1);
}

.lang-options {
    display: none;
    position: absolute;
    bottom: 50px;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.lang-options a {
    display: block;
    margin: 5px 0;
}

.lang-options img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}