.language-switcher {
    margin-top: 8px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.language-switcher a {
    display: inline-block;
    border-radius: 50%;
    transition: box-shadow 0.2s, transform 0.2s;
    outline: none;

    /* Remove fundo branco padrão do link */
    background: transparent;

    /* Remove o foco azul padrão do navegador */
    box-shadow: none;
}

.language-switcher a:focus,
.language-switcher a:hover {
    /* Remover o círculo azul incômodo no hover/focus */
    box-shadow: 0 2px 8px rgba(60,60,60,0.10);
    transform: scale(1.07);
    background: transparent; /* garante que o fundo continue transparente */
}

.language-switcher img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;

    /* Removendo fundo branco */
    background: transparent;

    /* Mantém a borda leve */
    border: 2px solid #eee;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

#google_translate_element {
    display: none;
}

@media (max-width: 500px) {
    .language-switcher {
        gap: 6px;
    }
    .language-switcher img {
        width: 26px;
        height: 26px;
    }
}