/* ==============================
   Google Translate – LIMPEZA TOTAL
   ============================== */

/* Esconde qualquer widget visível */
#google_translate_element,
.goog-te-gadget,
.goog-te-gadget-simple {
  display: none !important;
}

/* Remove iframe da barra */
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.goog-te-banner {
  display: none !important;
  visibility: hidden !important;
}

/* Neutraliza empurrão da página */
html.skiptranslate,
body {
  top: 0 !important;
  margin-top: 0 !important;
  position: static !important;
}

/* ==============================
   Dropdown de idiomas
   ============================== */

.lang-dropdown {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999999;
}

#current-flag {
  width: 60px;
  height: 60px;           /* OBRIGATÓRIO */
  border-radius: 50%;     /* círculo real */
  object-fit: cover;      /* corta corretamente */
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  display: block;
}

/* Menu */
.lang-dropdown-menu {
  position: absolute;
  bottom: 48px;
  right: 0;
  background: #fff;
  padding: 8px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
  gap: 6px;

  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all 0.25s ease;
}

.lang-dropdown-menu.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-dropdown-menu img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.lang-dropdown-menu img:hover {
  transform: scale(1.12);
}

body > .skiptranslate {
    display: none;
}