/* ===================================================================
   HTEC — Componentes padrão da área Administrativa
   Reaproveita as variáveis de marca de style.css (--brand, --bg, etc.)
   Referenciar sempre este arquivo em vez de estilizar botão/tabela na mão.
   =================================================================== */

:root {
  --bg: #07090c;
  --bg-soft: #0f141a;
  --card: #10151c;
  --text: #eef3f7;
  --muted: #a9b4bf;
  --brand: #05c2ff;
  --brand-strong: #02a5d7;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 14px;
  --shadow: 0 16px 36px rgba(0, 0, 0, 0.35);

  /* Cores de ação — Adicionar usa a marca, as demais são distintas dela */
  --acao-editar: #f4a825;
  --acao-editar-strong: #c9860f;
  --acao-excluir: #ff4d4f;
  --acao-excluir-strong: #d32f2f;
  --acao-copiar: #64748b;
  --acao-copiar-strong: #47535f;
}

/* ---------- Base ---------- */
.adm-wrap {
  font-family: "Manrope", sans-serif;
  color: var(--text);
}
.adm-wrap h1, .adm-wrap h2, .adm-wrap h3 {
  font-family: "Sora", sans-serif;
}

/* ---------- Cabeçalho de página ---------- */
.adm-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.adm-page-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
.adm-page-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 4px 0 0;
}

/* ---------- Toolbar (busca + filtros + ação principal) ---------- */
.adm-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.adm-toolbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.adm-search {
  position: relative;
}
.adm-search input {
  padding: 10px 14px 10px 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  min-width: 240px;
  font-size: 0.9rem;
}
.adm-search input:focus {
  outline: none;
  border-color: var(--brand);
}
.adm-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- Botões de ação padrão ---------- */
.btn-adm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  transition: filter 0.15s, transform 0.1s;
}
.btn-adm:hover { filter: brightness(1.12); }
.btn-adm:active { transform: scale(0.97); }

.btn-adicionar {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #001018;
}
.btn-editar {
  background: linear-gradient(120deg, var(--acao-editar) 0%, var(--acao-editar-strong) 100%);
  color: #1a1200;
}
.btn-excluir {
  background: linear-gradient(120deg, var(--acao-excluir) 0%, var(--acao-excluir-strong) 100%);
  color: #fff;
}
.btn-copiar {
  background: linear-gradient(120deg, var(--acao-copiar) 0%, var(--acao-copiar-strong) 100%);
  color: #fff;
}
.btn-cancelar {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}
.btn-cancelar:hover { color: var(--text); border-color: var(--muted); }

.btn-adm-sm {
  padding: 6px 12px;
  font-size: 0.78rem;
  border-radius: 8px;
}

/* Ações de linha em tabela — só ícone, sem texto (editar/bloquear/excluir/copiar) */
.btn-adm-icon {
  width: 32px;
  height: 32px;
  padding: 0;
  justify-content: center;
  border-radius: 9px;
  font-size: 0.84rem;
}
.btn-adm-icon i { margin: 0; }

.adm-table-acoes {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.adm-section-title {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}

.adm-perm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 6px;
}
.adm-perm-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
}
.adm-perm-item input { width: auto; margin: 0; }
.adm-perm-item label { margin: 0; cursor: pointer; font-size: 0.88rem; }

/* ---------- Tabela padrão ---------- */
.adm-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
}
.adm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.adm-table thead tr {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-strong) 100%);
}
.adm-table thead th {
  color: #001018;
  text-align: left;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.adm-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.adm-table tbody tr:hover { background: rgba(5, 194, 255, 0.05); }
.adm-table tbody tr:last-child td { border-bottom: none; }

/* ---------- Badges de status ---------- */
.adm-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.adm-badge-ativo { background: rgba(46, 204, 113, 0.15); color: #2ecc71; }
.adm-badge-inativo { background: rgba(255, 77, 79, 0.15); color: #ff4d4f; }
.adm-badge-alerta { background: rgba(255, 184, 0, 0.15); color: #ffb800; }
.adm-badge-info { background: rgba(5, 194, 255, 0.15); color: #05c2ff; }

/* ---------- Destaque de total (soma de valores) — usar em vez de badge verde ---------- */
.adm-total-destaque {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(5, 194, 255, 0.12);
  border: 1px solid rgba(5, 194, 255, 0.35);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}
.adm-total-destaque i { font-size: 0.85rem; }

/* ---------- Modal genérico (usar <dialog class="adm-modal">) ---------- */
.adm-modal { width: min(520px, calc(100% - 24px)); max-height: calc(100vh - 32px); padding: 0; border: 1px solid var(--line); border-radius: 16px; background: var(--card); color: var(--text); box-shadow: var(--shadow); }
.adm-modal::backdrop { background: rgba(0, 4, 8, 0.78); backdrop-filter: blur(4px); }
.adm-modal-conteudo { padding: 24px; }
.adm-modal-cabecalho { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.adm-modal-cabecalho h2 { margin: 0; font: 700 1.25rem "Sora", sans-serif; }
.adm-modal-fechar { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 9px; background: transparent; color: var(--muted); cursor: pointer; }
.adm-modal-check { display: flex; align-items: center; gap: 8px; cursor: pointer; margin: 10px 0; }
.adm-modal-check input { width: auto; }

/* ---------- Barra de progresso (uso de armazenamento etc.) ---------- */
.adm-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.adm-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.adm-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-strong) 100%);
}
.adm-progress-bar.is-alerta { background: linear-gradient(120deg, #f4a825 0%, #c9860f 100%); }
.adm-progress-bar.is-critico { background: linear-gradient(120deg, #ff4d4f 0%, #d32f2f 100%); }

/* ---------- Cards / formulários ---------- */
.adm-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.adm-form-group { margin-bottom: 14px; }

.adm-form-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px 20px; }
.adm-form-grid .adm-form-group { margin-bottom: 14px; }
.adm-form-grid .col-1 { grid-column: span 1; }
.adm-form-grid .col-2 { grid-column: span 2; }
.adm-form-grid .col-3 { grid-column: span 3; }
.adm-form-grid .col-4 { grid-column: span 4; }
.adm-form-grid .col-5 { grid-column: span 5; }
.adm-form-grid .col-6 { grid-column: span 6; }
.adm-form-grid .col-7 { grid-column: span 7; }
.adm-form-grid .col-8 { grid-column: span 8; }
.adm-form-grid .col-12 { grid-column: span 12; }
@media (max-width: 720px) {
  .adm-form-grid > * { grid-column: span 12 !important; }
}

/* ---------- Rodapé de ações do formulário (Cancelar + ação principal) ---------- */
.adm-form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.adm-tipo-pessoa { display: flex; gap: 24px; }
.adm-tipo-pessoa label { display: flex; align-items: center; gap: 6px; font-weight: 400; cursor: pointer; }
.adm-tipo-pessoa input { width: auto; accent-color: var(--brand); }
.adm-form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.adm-form-group input,
.adm-form-group select,
.adm-form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
}
.adm-form-group input:focus,
.adm-form-group select:focus,
.adm-form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
}

/* ---------- Toast de notificação (canto superior direito, animado) ---------- */
.adm-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.adm-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--muted);
  color: var(--text);
  box-shadow: var(--shadow);
  font-size: 0.88rem;
  pointer-events: auto;
  transform: translateX(120%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
}
.adm-toast.adm-toast-show {
  transform: translateX(0);
  opacity: 1;
}
.adm-toast.adm-toast-hide {
  transform: translateX(120%);
  opacity: 0;
}

.adm-toast-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
}
.adm-toast-msg { flex: 1; line-height: 1.35; }
.adm-toast-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0;
  line-height: 1;
}
.adm-toast-close:hover { color: var(--text); }

.adm-toast-sucesso { border-left-color: #2ecc71; }
.adm-toast-sucesso .adm-toast-icon { color: #2ecc71; }
.adm-toast-erro { border-left-color: #ff4d4f; }
.adm-toast-erro .adm-toast-icon { color: #ff4d4f; }
.adm-toast-info { border-left-color: var(--brand); }
.adm-toast-info .adm-toast-icon { color: var(--brand); }

@media (max-width: 600px) {
  .adm-toast-container {
    left: 12px;
    right: 12px;
    top: 12px;
  }
  .adm-toast {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}

/* ---------- Abas (Usuários e afins) ---------- */
.adm-usr-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.adm-usr-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s ease, border-color .15s ease;
}
.adm-usr-tab:hover { color: var(--text); }
.adm-usr-tab.is-active { color: var(--brand); border-bottom-color: var(--brand); }

/* ---------- Paginação padrão ---------- */
.adm-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  text-align: center;
}
.adm-pagination-info {
  color: var(--muted);
  font-size: 0.82rem;
}
.adm-pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.adm-pagination-pages a,
.adm-pagination-pages span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background .15s, border-color .15s, color .15s, transform .1s;
}
.adm-pagination-pages a:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.adm-pagination-pages a:active { transform: translateY(0); }
.adm-pagination-pages .is-active {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-strong) 100%);
  border-color: transparent;
  color: #001018;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(5, 194, 255, .3);
}
.adm-pagination-pages .is-disabled { opacity: .35; pointer-events: none; background: transparent; }
.adm-pagination-pages .adm-pagination-dots { border: none; background: transparent; min-width: 20px; }

/* ---------- Vazio / sem resultado ---------- */
.adm-vazio {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Login Administrativo ---------- */
* { box-sizing: border-box; }
.adm-login-page, .adm-panel-page { margin: 0; background: var(--bg); }
.adm-login-layout { min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr); }
.adm-login-intro { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; gap: 40px; padding: 64px clamp(40px, 8vw, 130px); background: radial-gradient(circle at 20% 30%, rgba(5, 194, 255, .2), transparent 36%), linear-gradient(135deg, #07151c, #07090c 66%); }
.adm-login-intro::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: radial-gradient(rgba(5, 194, 255, .75) 1px, transparent 1px); background-size: 18px 18px; mask-image: linear-gradient(110deg, #000, transparent 70%); }
.adm-login-brand, .adm-login-intro > div { position: relative; z-index: 1; }
.adm-login-brand img { display: block; width: 126px; height: auto; }
.adm-login-intro-brand-only { justify-content: center; align-items: center; }
.adm-login-intro-brand-only .adm-login-brand img { width: clamp(220px, 26vw, 340px); }
.adm-login-intro h1 { max-width: 650px; margin: 0 0 16px; font: 800 clamp(2rem, 4vw, 3.4rem)/1.12 "Sora", sans-serif; color: var(--text); }
.adm-login-intro p:not(.adm-login-eyebrow) { max-width: 560px; margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.65; }
.adm-login-eyebrow, .adm-kicker { margin: 0 0 10px; color: var(--brand); font: 700 .75rem/1 "Sora", sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.adm-login-glow { position: absolute; z-index: 0; right: -120px; bottom: -160px; width: 420px; height: 420px; border-radius: 50%; background: rgba(5, 194, 255, .17); filter: blur(45px); }
.adm-login-form-wrap { display: grid; place-items: center; padding: 32px; background: #0b1016; }
.adm-login-form { width: min(100%, 390px); }
.adm-login-form h2 { margin: 0 0 8px; font: 700 1.65rem "Sora", sans-serif; color: var(--text); }
.adm-login-form > p { margin: 0 0 28px; color: var(--muted); font-size: .92rem; }
.adm-login-form .adm-form-group { margin-bottom: 18px; }
.adm-login-form .adm-form-group input { height: 46px; }
.adm-login-remember { display: flex; align-items: center; gap: 8px; margin: -4px 0 18px; color: var(--muted); font-size: .86rem; cursor: pointer; user-select: none; }
.adm-login-remember input { width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; }
.adm-login-submit { width: 100%; justify-content: center; margin-top: 4px; padding: 13px 16px; }
.adm-login-back { display: block; margin-top: 22px; text-align: center; text-decoration: none; color: var(--muted); font-size: .86rem; }
.adm-login-back:hover { color: var(--brand); }
.adm-login-error { display: flex; align-items: center; gap: 8px; margin: 0 0 18px; padding: 11px 12px; border: 1px solid rgba(255, 77, 79, .4); border-radius: 10px; background: rgba(255, 77, 79, .1); color: #ff8587; font-size: .84rem; }

/* ---------- Estrutura do painel ---------- */
.adm-shell { min-height: 100vh; display: grid; grid-template-columns: 250px minmax(0, 1fr); background: var(--bg); }
.adm-sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 22px 14px; border-right: 1px solid var(--line); background: #0a0f15; }
.adm-sidebar-brand { display: flex; align-items: center; gap: 10px; padding: 0 10px 25px; color: var(--text); text-decoration: none; font: 700 .82rem "Sora", sans-serif; }
.adm-sidebar-brand img { width: 85px; height: auto; }
.adm-nav { display: grid; gap: 4px; align-content: start; flex: 1 1 auto; }
.adm-nav a { display: flex; align-items: center; gap: 11px; min-height: 42px; padding: 9px 10px; border-radius: 9px; color: var(--muted); text-decoration: none; font-size: .88rem; transition: background .18s, color .18s; }
.adm-nav a i { width: 16px; text-align: center; }
.adm-nav a:hover, .adm-nav a.is-active { background: rgba(5, 194, 255, .12); color: var(--brand); }
.adm-nav a.is-disabled { opacity: .46; cursor: not-allowed; }
.adm-nav a small { margin-left: auto; font-size: .65rem; }
.adm-nav-label { margin: 20px 10px 6px; color: #687583; font: 700 .65rem "Sora", sans-serif; letter-spacing: .09em; text-transform: uppercase; }
.adm-nav a.adm-nav-sub { padding-left: 28px; font-size: .82rem; }
.adm-nav-toggle { cursor: pointer; }
.adm-nav-chevron { margin-left: auto; font-size: .68rem; transition: transform .18s ease; }
.adm-nav-group.is-open .adm-nav-chevron { transform: rotate(180deg); }
.adm-nav-submenu { display: grid; gap: 4px; overflow: hidden; max-height: 0; transition: max-height .2s ease; }
.adm-nav-group.is-open .adm-nav-submenu { max-height: 200px; }
.adm-main { min-width: 0; }
.adm-sidebar-account { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; padding: 14px 10px 4px; border-top: 1px solid var(--line); }
.adm-user-avatar { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(5, 194, 255, .16); color: var(--brand); font: 700 .86rem "Sora", sans-serif; cursor: default; }
.adm-sidebar-account form { margin: 0; }
.adm-logout { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 0; border-radius: 8px; background: transparent; color: var(--muted); cursor: pointer; font-size: 1rem; }
.adm-logout:hover { color: #ff8587; background: rgba(255, 77, 79, .1); }
.adm-menu-toggle { display: none; position: fixed; top: 16px; left: 16px; z-index: 25; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 10px; background: rgba(10, 15, 21, .92); color: var(--text); cursor: pointer; font-size: 1.05rem; }
.adm-content { max-width: 1340px; margin: 0 auto; padding: 38px clamp(20px, 4vw, 46px); }

/* Listagem de clientes: usa toda a area util ao lado da sidebar. */
.adm-clientes-lista {
  max-width: none;
  width: 100%;
  padding-inline: clamp(16px, 2vw, 30px);
}
.adm-clientes-lista .adm-search { width: min(100%, 430px); }
.adm-clientes-lista .adm-search input { width: 100%; }
.adm-clientes-lista .adm-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  scrollbar-color: var(--brand-strong) var(--bg-soft);
}
.adm-clientes-lista .adm-table {
  min-width: 760px;
  table-layout: fixed;
}
.adm-clientes-lista .adm-table th:nth-child(1) { width: 40%; }
.adm-clientes-lista .adm-table th:nth-child(2) { width: 18%; }
.adm-clientes-lista .adm-table th:nth-child(3) { width: 18%; }
.adm-clientes-lista .adm-table th:nth-child(4) { width: 11%; }
.adm-clientes-lista .adm-table th:nth-child(5) { width: 13%; }
.adm-clientes-lista .adm-table td:first-child { overflow-wrap: anywhere; }
.adm-clientes-lista .adm-table tbody td { padding-block: 6px; }
.adm-clientes-lista .adm-table .btn-adm-icon { width: 28px; height: 28px; border-radius: 8px; font-size: .78rem; }
.adm-page-title { font-size: clamp(1.45rem, 3vw, 2rem); }
.adm-overview { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 26px 0; }
.adm-overview-card { display: grid; grid-template-columns: auto 1fr; gap: 12px; position: relative; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.adm-overview-card strong { display: block; margin: 2px 0 4px; font: 700 .94rem "Sora", sans-serif; }
.adm-overview-card p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.adm-overview-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(5, 194, 255, .12); color: var(--brand); }
.adm-status-pill { grid-column: 2; width: fit-content; padding: 3px 7px; border-radius: 999px; background: rgba(255,255,255,.06); color: var(--muted); font-size: .64rem; }
.adm-welcome-card { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.adm-welcome-card h2 { margin: 0 0 10px; font-size: 1.15rem; }
.adm-welcome-card p:not(.adm-kicker) { max-width: 760px; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.6; }

@media (max-width: 820px) {
  .adm-clientes-lista { padding: 76px 16px 28px; }
  .adm-clientes-lista .adm-toolbar-left,
  .adm-clientes-lista .adm-search { width: 100%; }
  .adm-login-layout { grid-template-columns: 1fr; }
  .adm-login-intro { min-height: 280px; padding: 36px 28px; }
  .adm-login-intro h1 { font-size: 2rem; }
  .adm-login-form-wrap { min-height: calc(100vh - 280px); }
  .adm-shell { display: block; }
  .adm-sidebar { position: fixed; z-index: 20; left: 0; width: 250px; transform: translateX(-100%); transition: transform .2s ease; box-shadow: 20px 0 35px rgba(0,0,0,.3); }
  .adm-sidebar.is-open { transform: translateX(0); }
  .adm-menu-toggle { display: flex; }
  .adm-overview { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .adm-clientes-lista { padding-inline: 12px; }
  .adm-clientes-lista .adm-toolbar { align-items: stretch; }
  .adm-clientes-lista .btn-adicionar { justify-content: center; width: 100%; }
  .adm-clientes-lista .adm-table { min-width: 680px; }
  .adm-login-form-wrap { padding: 28px 20px; }
  .adm-welcome-card { align-items: flex-start; flex-direction: column; }
}
