/*
  Estilo do topo público — arquivo ÚNICO, como a marcação.
  O site importa; a página do ponto carrega de /partials/topo.css.
  Cores: as mesmas constantes do site.
*/
.ie-topo {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: hsla(220, 20%, 8%, 0.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  font-family: 'Space Grotesk', 'Inter', 'Segoe UI', system-ui, sans-serif;
}
.ie-topo-barra {
  max-width: 1200px; margin: 0 auto; height: 72px; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.ie-topo-esq { display: flex; align-items: center; gap: 48px; min-width: 0; }
.ie-topo-marca { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.ie-topo-marca img { width: 34px; height: 34px; object-fit: contain; display: block; }
.ie-topo-marca span { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.02em; color: hsl(45, 10%, 90%); }
.ie-topo-marca b { color: #E5A325; font-weight: 600; }
.ie-topo-links { display: flex; align-items: center; gap: 34px; }
.ie-topo-links a {
  font-size: 1rem; font-weight: 500; letter-spacing: 0.01em;
  color: hsl(220, 12%, 65%); text-decoration: none; white-space: nowrap;
  padding-bottom: 3px; border-bottom: 1px solid transparent; transition: color 0.15s;
}
.ie-topo-links a:hover, .ie-topo-links a.destaque { color: hsl(220, 18%, 95%); }
.ie-topo-links a.atual { color: hsl(220, 18%, 95%); border-bottom-color: #E5A325; }
.ie-topo-dir { display: flex; align-items: center; gap: 14px; }
.ie-topo-idioma { position: relative; }
.ie-topo-idioma summary {
  list-style: none; cursor: pointer; color: hsl(220, 12%, 65%);
  padding: 6px 8px; border-radius: 6px; display: flex; align-items: center; gap: 6px;
  font-size: 1.05rem; line-height: 1;
}
.ie-topo-idioma summary::-webkit-details-marker { display: none; }
.ie-topo-idioma summary:hover { background: hsla(220, 18%, 20%, 0.6); }
.ie-topo-idioma summary b { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.04em; }
.ie-topo-opcoes {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: hsl(220, 18%, 12%); border: 1px solid hsla(220, 12%, 30%, 0.3);
  border-radius: 10px; overflow: hidden auto; min-width: 180px; max-height: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.ie-topo-opcoes a {
  display: block; padding: 8px 14px; color: hsl(45, 10%, 90%);
  text-decoration: none; font-size: 0.8rem; white-space: nowrap;
}
.ie-topo-opcoes a:hover { background: hsla(220, 18%, 15%, 0.5); }
.ie-topo-opcoes a[aria-current] { background: hsla(43, 96%, 56%, 0.1); color: #E5A325; }
.ie-topo-entrar {
  padding: 9px 22px; border-radius: 6px; font-size: 0.9375rem; font-weight: 600;
  letter-spacing: 0.01em; text-decoration: none; background: transparent;
  border: 1px solid #E5A325; color: #E5A325; transition: background 0.15s, color 0.15s;
}
.ie-topo-entrar:hover { background: #E5A325; color: hsl(220, 20%, 7%); }
.ie-topo-mob { display: none; }
@media (max-width: 768px) {
  .ie-topo-links, .ie-topo-dir { display: none; }
  .ie-topo-mob { display: block; position: relative; }
  .ie-topo-mob summary { list-style: none; cursor: pointer; color: hsl(45, 10%, 90%); padding: 6px; }
  .ie-topo-mob summary::-webkit-details-marker { display: none; }
  .ie-topo-itens {
    position: absolute; right: 0; top: calc(100% + 10px);
    background: hsl(220, 18%, 12%); border: 1px solid hsla(220, 12%, 30%, 0.3);
    border-radius: 10px; min-width: 220px; padding: 6px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }
  .ie-topo-itens a { display: block; padding: 12px 18px; color: hsl(220, 12%, 65%); text-decoration: none; font-size: 1rem; }
  .ie-topo-itens a:hover { color: hsl(45, 10%, 90%); }
}
