/* === Barra de Accesibilidad GOV.CO – versión SVG corregida === */
.barra-accesibilidad-govco {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  background: #004884;
  border-radius: 12px 0 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  z-index: 99999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.barra-accesibilidad-govco button {
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background 0.3s ease;
  border-radius: 6px;
}

.barra-accesibilidad-govco button:hover {
  background: #3366cc;
}

.barra-accesibilidad-govco img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease, filter 0.2s ease;
  pointer-events: none;
}

.barra-accesibilidad-govco button:hover img {
  filter: none;
  transform: scale(1.15);
}

.tooltip {
  position: absolute;
  right: 55px;
  background: #3366cc;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px 0 0 8px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

button:hover .tooltip,
button:focus .tooltip {
  opacity: 1;
}

/* Modo oscuro global */
.modo_oscuro-govco {
  filter: invert(100%) hue-rotate(180deg);
}

/* Animación suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-50%) scale(0.95); }
  to { opacity: 1; transform: translateY(-50%) scale(1); }
}

/* === Íconos oficiales GOV.CO en SVG === */
.govco-adjust,
.govco-font-minimize,
.govco-font-maximize {
  min-width: 22px;
  min-height: 22px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.govco-adjust {
  background-image: url('https://www.aguasdepalmira.com/wp-content/plugins/barra-accesibilidad-govco/assets/icons/adjust.svg');
}

.govco-font-minimize {
  background-image: url('https://www.aguasdepalmira.com/wp-content/plugins/barra-accesibilidad-govco/assets/icons/font-minimize.svg');
}

.govco-font-maximize {
  background-image: url('https://www.aguasdepalmira.com/wp-content/plugins/barra-accesibilidad-govco/assets/icons/font-maximize.svg');
}

/* Hover efecto GOV.CO */
.barra-accesibilidad-govco button:hover .govco-adjust,
.barra-accesibilidad-govco button:hover .govco-font-minimize,
.barra-accesibilidad-govco button:hover .govco-font-maximize {
  filter: none;
  transform: scale(1.15);
}

