/* ===== TOPBAR (gris profesional) ===== */
.topbar{
  background:#f1f3f4;
  border-bottom:1px solid rgba(0,0,0,.06);
  font-size:13px;
  color:#2a2f33;
}
.topbar__row{
  display:flex; align-items:center; justify-content:space-between;
  min-height:42px; padding:6px 0; gap:16px;
}
.topbar__badge{ display:flex; align-items:center; gap:8px; font-weight:600; color:#ff6601; }
.topbar__badge .i{ width:16px; height:16px; fill:var(--accent-orange); }

.topbar__contact{ display:flex; align-items:center; gap:10px; color:#ff6601; }
.topbar__sep{ opacity:.5; }
.topbar__link{
  display:inline-flex; align-items:center; gap:6px;
  padding:4px 8px; border-radius:8px; color:inherit; transition:.2s;
}
.topbar__link .i{ width:15px; height:15px; fill:currentColor; }
.topbar__link:hover{ background:#e9ebec; color:var(--accent-orange); }

/* Responsive */
@media (max-width:680px){
  .topbar__badge{display:none;}
  .topbar__row{justify-content:center;}
  .topbar__sep{display:none;}
  .topbar__link{ background:#f7f8f8; border-radius:999px; }
  .topbar__link:hover{ background:#ededed; }
}
