/* ===== Acessibilidade / SEO ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: #dd1e26;
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ===== Seletor de idioma (dropdown PT/EN/ES) ===== */
.language-selector { position: relative; cursor: pointer; }
.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 96px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
  padding: 6px;
  margin-top: 10px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 300;
}
.language-selector:hover .language-dropdown,
.language-selector:focus-within .language-dropdown { display: flex; }
.language-option {
  display: block;
  padding: 8px 14px;
  border-radius: 7px;
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.language-option:hover { background: rgba(0, 0, 0, .06); }
.language-option.is--active { color: #fff; background: #111827; }
