/* Brasa Lab — navegação universal mobile */
.brasa-mobile-menu-btn {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 99990;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(15,15,15,.92);
  color: #f5f2ed;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.brasa-mobile-menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}
.brasa-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99991;
  background: rgba(0,0,0,.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.brasa-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99992;
  width: min(86vw, 360px);
  height: 100vh;
  background: #12100e;
  color: #f5f2ed;
  transform: translateX(105%);
  transition: transform .2s ease;
  box-shadow: -14px 0 34px rgba(0,0,0,.30);
  padding: 18px;
  overflow-y: auto;
  font-family: 'DM Sans', Arial, sans-serif;
}
.brasa-menu-open .brasa-menu-backdrop { opacity: 1; pointer-events: auto; }
.brasa-menu-open .brasa-menu-panel { transform: translateX(0); }
.brasa-menu-head { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:16px; }
.brasa-menu-brand { display:flex; align-items:center; gap:10px; font-weight:800; }
.brasa-menu-brand img { width:34px; height:34px; object-fit:contain; border-radius:10px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); }
.brasa-menu-close { width:36px; height:36px; border-radius:10px; border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.08); color:#f5f2ed; cursor:pointer; font-size:22px; line-height:1; }
.brasa-menu-links { display:flex; flex-direction:column; gap:8px; }
.brasa-menu-links a { color:#f5f2ed; text-decoration:none; display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px 13px; border-radius:12px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10); font-size:14px; font-weight:700; }
.brasa-menu-links a small { color:rgba(245,242,237,.58); font-size:11px; font-weight:600; }
.brasa-menu-sep { height:1px; background:rgba(255,255,255,.12); margin:8px 0; }
.brasa-logo-home { cursor:pointer !important; }
@media (max-width: 860px) {
  .brasa-mobile-menu-btn { display:flex; }
  body { -webkit-text-size-adjust: 100%; }
  table { max-width: 100%; }
  .table-card, .panel-wrap, .container, main, section { max-width: 100%; }
  .table-card { overflow-x:auto; -webkit-overflow-scrolling:touch; }
  input, select, textarea, button { font-size:16px; }
}
