.language-switcher {
    margin-top: 8px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.language-switcher a {
    display: inline-block;
    transition: box-shadow 0.2s, transform 0.2s;
    outline: none;
    background: transparent;
    box-shadow: none;
}

.language-switcher a:focus,
.language-switcher a:hover {
    box-shadow: 0 2px 8px rgba(60,60,60,0.10);
    transform: scale(1.07);
    background: transparent;
}

/* Estilos base para as imagens */
.language-switcher img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    background: transparent;
    border: 2px solid #eee;
}

/* Bandeiras QUADRADAS */
.language-switcher-square a {
    border-radius: 4px;
}

.language-switcher-square img,
.language-switcher-square .flag-square {
    border-radius: 4px;
}

/* Bandeiras REDONDAS (padrão que já existia) */
.language-switcher-round a {
    border-radius: 50%;
}

.language-switcher-round img,
.language-switcher-round .flag-round {
    border-radius: 50%;
}

/* Estilo TEXTO (PT, EN, ES) */
.language-switcher-text a {
    border-radius: 6px;
}

.language-switcher-text .lang-text {
    display: inline-block;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #fff;
    transition: all 0.3s ease;
}

.language-switcher-text .lang-text:hover,
.language-switcher-text .lang-text:focus {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.3);
    transform: scale(1.05);
}

/* Esconde o banner do Google Translate */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

#google_translate_element {
    display: none;
}

/* Responsividade */
@media (max-width: 500px) {
    .language-switcher {
        gap: 6px;
    }
    
    .language-switcher img {
        width: 26px;
        height: 26px;
    }
    
    .language-switcher-text .lang-text {
        padding: 6px 10px;
        font-size: 12px;
    }
}