/* ════════════════════════════════════════════════════════════════════════
   FEELING SaaS · feeling.css
   ────────────────────────────────────────────────────────────────────────
   Design tokens + componentes base reutilizáveis (V1.5).
   • Tokens em :root servem de FALLBACK — páginas que já definem os seus
     próprios continuam mandando (mesma cascata, declaração mais tarde vence).
   • Componentes usam prefixo .ff-* para nunca colidir com classes das páginas.
   • Carregue ANTES do <style> da página:
       <link rel="stylesheet" href="feeling-saas/feeling.css">
   ════════════════════════════════════════════════════════════════════════ */

/* ── Mona Sans · fonte única do design system (self-hosted, variável) ──── */
@font-face {
  font-family: 'Mona Sans';
  src: url('fonts/MonaSansVF.woff2') format('woff2');
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mona Sans';
  src: url('fonts/MonaSansVF.woff2') format('woff2');
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Mona Sans Mono';
  src: url('fonts/MonaSansMonoVF.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:            #0A0A0A;
  --bg-elev-1:     #111111;
  --bg-elev-2:     #161616;
  --bg-elev-3:     #1C1C1C;
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text:          #F4F4F4;
  --text-muted:    #A6A6A6; /* +contraste p/ legibilidade (Daniel 2026-06-09; era #8A8A8A) */
  --text-faint:    #7E7E7E; /* +contraste (era #5A5A5A) */
  --accent:        #2563EB;
  --accent-soft:   rgba(37,99,235,0.12);
  --accent-glow:   rgba(37,99,235,0.35);
  /* Rampa azul Feeling (design system) */
  --blue-50:       #EFF4FE;
  --blue-300:      #60A5FA;
  --blue-500:      #2563EB;
  --blue-700:      #1D4ED8;
  --blue-900:      #1E3A8A;
  --navy:          #090D17;
  --blue-400:      #3B82F6;
  --blue-tint-dark:#11224A;
  --navy-surface:  #111A2E;
  --navy-surface-2:#16223B;
  --green:         #1E7A5C;
  --green-soft:    rgba(30,122,92,0.18);
  --amber:         #C99846;
  --amber-soft:    rgba(201,152,70,0.18);
  --rose:          #C9504F;
  --rose-soft:     rgba(201,80,79,0.18);
  --shadow-1:      0 1px 2px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.32);
  --shadow-2:      0 24px 60px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.5);
  --topbar-bg:     rgba(10,10,10,0.72);   /* barra superior theme-aware (dark) */
  --radius:        14px;
  --radius-sm:     10px;
  --body:          'Mona Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display:       'Mona Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono:          'Mona Sans Mono', ui-monospace, SFMono-Regular, 'JetBrains Mono', monospace;
  --ease-out:      cubic-bezier(0.23, 1, 0.32, 1);
}

/* Light theme (espelha o que feeling-ui.js aplica via [data-theme="light"]) */
html[data-theme="light"], body[data-theme="light"] {
  --bg:            #F6F7FA;
  --bg-elev-1:     #FFFFFF;
  --bg-elev-2:     #EEF1F5;
  --bg-elev-3:     #E2E7EE;
  --border:        rgba(16,24,40,0.10);
  --border-strong: rgba(16,24,40,0.18);
  --text:          #111827;
  --text-muted:    #667085;
  --text-faint:    #98A2B3;
  --accent:        #2563EB;
  --accent-soft:   rgba(37,99,235,0.10);
  --green:         #087A5B;
  --green-soft:    rgba(8,122,91,0.14);
  --amber:         #A86D12;
  --amber-soft:    rgba(168,109,18,0.14);
  --rose:          #B42318;
  --rose-soft:     rgba(180,35,24,0.12);
  --shadow-1:      0 1px 2px rgba(16,24,40,0.06), 0 10px 26px rgba(16,24,40,0.09);
  --shadow-2:      0 24px 70px rgba(16,24,40,0.18), 0 2px 8px rgba(16,24,40,0.08);
  --topbar-bg:     rgba(255,255,255,0.82);   /* barra superior theme-aware (clean/white) */
}

/* ── Reset leve dos componentes ─────────────────────────────────────── */
.ff-stack { display: flex; flex-direction: column; gap: 14px; }
.ff-row   { display: flex; align-items: center; gap: 10px; }
.ff-grid  { display: grid; gap: 16px; }
.ff-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.ff-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.ff-grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
@media (max-width: 720px) {
  .ff-grid.cols-2, .ff-grid.cols-3 { grid-template-columns: 1fr; }
}

/* ── Section ─────────────────────────────────────────────────────────── */
.ff-section { margin: 0 0 28px; }
.ff-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.ff-section-title {
  font-family: var(--body); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0; color: var(--text); margin: 0;
}
.ff-section-sub { font-size: 0.82rem; color: var(--text-muted); margin: 2px 0 0; }
.ff-section-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ── Card / KPI ──────────────────────────────────────────────────────── */
.ff-card {
  background: var(--bg-elev-1); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-1);
}
/* G9 — KPI flexível: cresce com o texto, nunca corta números grandes */
.ff-kpi {
  display: flex; flex-direction: column; gap: 6px;
  /* sem width/height fixos: o card-pai controla o espaço */
  min-width: 0;          /* permite shrink dentro do grid */
}
.ff-kpi-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.ff-kpi-value {
  font-family: var(--body); font-weight: 760;
  /* clamp: lê bem em card estreito (1rem) e largo (1.9rem), sem cortar */
  font-size: clamp(1rem, 3.5cqi + 0.5rem, 1.9rem);
  line-height: 1.1; color: var(--text);
  font-variant-numeric: tabular-nums;
  /* números como R$ 52,65 mil ou Gs 5.731.125 nunca são cortados */
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}
.ff-kpi-sub   { font-size: 0.78rem; color: var(--text-faint); }
.ff-kpi.tone-green .ff-kpi-value { color: var(--green); }
.ff-kpi.tone-amber .ff-kpi-value { color: var(--amber); }
.ff-kpi.tone-rose  .ff-kpi-value { color: var(--rose); }
.ff-kpi.tone-accent .ff-kpi-value { color: var(--accent); }
/* G9 — grade responsiva de KPIs (auto-fit, sem breakpoints manuais) */
.ff-kpi-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  container-type: inline-size;
}

/* ── Status pill ─────────────────────────────────────────────────────── */
.ff-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid transparent; white-space: nowrap;
}
.ff-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.9; }
.ff-pill.neutral { color: var(--text-muted); background: var(--bg-elev-3); border-color: var(--border); }
.ff-pill.accent  { color: var(--accent); background: var(--accent-soft); }
.ff-pill.green   { color: var(--green);  background: var(--green-soft); }
.ff-pill.amber   { color: var(--amber);  background: var(--amber-soft); }
.ff-pill.rose    { color: var(--rose);   background: var(--rose-soft); }

/* ── Botões ──────────────────────────────────────────────────────────── */
.ff-btn {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-family: var(--body); font-size: 0.84rem; font-weight: 600;
  border: 1px solid var(--border-strong); background: var(--bg-elev-2);
  color: var(--text); transition: 0.16s var(--ease-out);
}
.ff-btn:hover { border-color: var(--accent); background: var(--bg-elev-3); }
.ff-btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.ff-btn.primary:hover { box-shadow: 0 0 0 4px var(--accent-soft); }
.ff-btn.ghost { background: transparent; border-color: transparent; color: var(--text-muted); }
.ff-btn.ghost:hover { color: var(--text); background: var(--bg-elev-2); }
.ff-btn.sm { padding: 5px 10px; font-size: 0.78rem; }

/* ── Tabela ──────────────────────────────────────────────────────────── */
.ff-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.ff-table th {
  text-align: left; font-weight: 600; color: var(--text-muted);
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 10px 14px; border-bottom: 1px solid var(--border);
}
.ff-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.ff-table tr:hover td { background: var(--bg-elev-2); }
.ff-table .ff-cell-strong { font-weight: 600; }
.ff-table .ff-cell-muted { color: var(--text-muted); }

/* ── Lista (pendências / materiais / timeline) ───────────────────────── */
.ff-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-elev-1);
}
.ff-item + .ff-item { margin-top: 10px; }
.ff-item-body { flex: 1; min-width: 0; }
.ff-item-title { font-weight: 600; color: var(--text); margin: 0 0 3px; }
.ff-item-desc  { font-size: 0.83rem; color: var(--text-muted); margin: 0; }
.ff-item-meta  { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; font-size: 0.76rem; color: var(--text-faint); }

/* Material card (botão clicável grande) */
.ff-material {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-elev-1); color: var(--text); transition: 0.16s var(--ease-out);
}
.ff-material:hover { border-color: var(--accent); background: var(--bg-elev-2); }
.ff-material-icon { width: 34px; height: 34px; flex-shrink: 0; display: grid; place-items: center;
  border-radius: 9px; background: var(--accent-soft); color: var(--accent); }
.ff-material-name { font-weight: 600; }
.ff-material-desc { font-size: 0.78rem; color: var(--text-muted); }

/* Timeline */
.ff-timeline { position: relative; padding-left: 22px; }
.ff-timeline::before { content: ""; position: absolute; left: 6px; top: 4px; bottom: 4px; width: 2px; background: var(--border); }
.ff-tl-item { position: relative; padding: 0 0 18px 4px; }
.ff-tl-item::before { content: ""; position: absolute; left: -19px; top: 4px; width: 10px; height: 10px;
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--bg); }
.ff-tl-date { font-size: 0.74rem; color: var(--text-faint); }
.ff-tl-title { font-weight: 600; color: var(--text); margin: 2px 0; }
.ff-tl-desc { font-size: 0.83rem; color: var(--text-muted); }

/* ── Empty state ─────────────────────────────────────────────────────── */
.ff-empty {
  text-align: center; padding: 40px 24px; border: 1px dashed var(--border-strong);
  border-radius: var(--radius); color: var(--text-muted); background: var(--bg-elev-1);
}
.ff-empty-icon { font-size: 1.6rem; margin-bottom: 10px; opacity: 0.7; }
.ff-empty-title { font-weight: 600; color: var(--text); margin: 0 0 4px; }
.ff-empty-hint { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ════════════════════════════════════════════════════════════════════════
   Topbar canonica — hub / clientes / dashboards / operacao
   Design ref: clientes.html (64 px, padding 0 28px)
   Paginas que ja declaram .topbar no proprio <style> continuam mandando
   (declaracao local aparece DEPOIS deste arquivo na cascata).
   ════════════════════════════════════════════════════════════════════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: var(--topbar-bg);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 28px;
  height: 31px;
  display: grid;
  place-items: center;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.brand-divider {
  width: 1px;
  height: 16px;
  background: var(--border-strong);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 600;
  transition: all 180ms var(--ease-out);
}
.back-link:hover {
  background: var(--bg-elev-1);
  color: var(--text);
}
.back-link svg {
  width: 12px;
  height: 12px;
}
.topbar-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ════════════════════════════════════════════════════════════════════════
   Menu canonico — hub / portal
   Superset de hub.html + portal.html: inclui tile-foot, tile-badge,
   tile-lock, is-locked e @keyframes tileIn.
   Preserva max-width:640px + margin-inline:auto (centralizacao decidida).
   ════════════════════════════════════════════════════════════════════════ */
.menu-titulo {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
  max-width: 640px;
  margin-inline: auto;
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
  margin-inline: auto;
}
.menu-tile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 18px;
  color: var(--text);
  font-family: var(--body);
  transition: transform 0.28s var(--ease-out), border-color 0.28s, background 0.28s, box-shadow 0.28s;
  opacity: 0;
  transform: translateY(14px);
  animation: tileIn 0.55s var(--ease-out) forwards;
  animation-play-state: paused;
  animation-delay: calc(var(--i, 0) * 0.07s + 0.04s);
}
.menu-tile:hover {
  transform: translateX(4px);
  border-color: var(--border-strong);
  background: var(--bg-elev-2);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}
.menu-tile:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.tile-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.28s, background 0.28s, border-color 0.28s;
}
.tile-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.menu-tile:hover .tile-icon {
  color: var(--text);
  border-color: var(--border-strong);
}
.tile-foot {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tile-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
}
.tile-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.tile-badge {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 7px;
  margin-bottom: 3px;
}
.tile-arrow,
.tile-lock {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-faint);
  transition: transform 0.28s, color 0.28s;
}
.tile-arrow svg,
.tile-lock svg {
  width: 100%;
  height: 100%;
  display: block;
}
.menu-tile:hover .tile-arrow {
  color: var(--text);
  transform: translateX(3px);
}
.menu-tile.is-locked {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.015);
  border-style: dashed;
}
.menu-tile.is-locked:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.015);
  border-color: var(--border);
}
.menu-tile.is-locked .tile-icon,
.menu-tile.is-locked .tile-title {
  color: var(--text-muted);
}
.menu-tile.is-locked .tile-sub {
  color: var(--text-faint);
}
body.ready .menu-list .menu-tile {
  animation-play-state: running;
}
@keyframes tileIn {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .menu-tile {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   G6 — Animação de entrada dos módulos (v2 — pedido do Daniel 2026-06-09)
   Fase 1: a luz azul DESCE traçando a BORDA de cada tile (quadrado
           arredondado inteiro), em cascata top-down (--i). Some ao terminar
           — a borda NÃO fica acesa.
   Fase 2: depois que TODAS as bordas foram traçadas, os ÍCONES acendem
           DEVAGAR, uma única vez, e PERMANECEM acesos.
   Ativação: body.ready. Cascata de stagger via --i.
   ════════════════════════════════════════════════════════════════════════ */

/* Fase 1 — traço de luz descendo pela BORDA do tile (anel via mask-composite) */
.fx-enter-sweep {
  position: relative;
  isolation: isolate;
}
.fx-enter-sweep::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;     /* acompanha os cantos arredondados do tile */
  pointer-events: none;
  z-index: 3;
  /* faixa fina (~40px) de luz azul que desce de cima para baixo */
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(37, 99, 235, 0.45) 38%,
    var(--accent) 50%,
    rgba(37, 99, 235, 0.45) 62%,
    transparent 100%
  );
  background-size: 100% 40px;
  background-repeat: no-repeat;
  background-position: 50% -40px;   /* começa acima do tile */
  /* recorta apenas o ANEL da borda (espessura ~1.6px) */
  padding: 1.6px;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask-composite: exclude;
  filter: drop-shadow(0 0 5px var(--accent-glow));
  opacity: 0;
  animation: edgeDescend 0.72s var(--ease-out) both;
  animation-play-state: paused;
  animation-delay: calc(var(--i, 0) * 0.13s);
}
body.ready .fx-enter-sweep::after {
  animation-play-state: running;
}
@keyframes edgeDescend {
  0%   { background-position: 50% -40px;              opacity: 0; }
  10%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { background-position: 50% calc(100% + 40px);  opacity: 0; }
}

/* Fase 2 — ignição LENTA dos ícones, uma vez, e ficam ACESOS.
   Começa ~1.3s (após a última borda descer) + stagger 90ms por índice. */
.fx-icon-ignite {
  transition: box-shadow 0.6s var(--ease-out), color 0.6s var(--ease-out);
  animation: iconIgnite 1.05s var(--ease-out) both;
  animation-play-state: paused;
  animation-delay: calc(1.3s + var(--i, 0) * 0.09s);
}
body.ready .fx-icon-ignite {
  animation-play-state: running;
}
/* O DESENHO do ícone (svg) acende junto — glow no próprio traço, sincronizado. */
.fx-icon-ignite svg {
  animation: glyphGlow 1.05s var(--ease-out) both;
  animation-play-state: paused;
  animation-delay: calc(1.3s + var(--i, 0) * 0.09s);
}
body.ready .fx-icon-ignite svg {
  animation-play-state: running;
}
@keyframes iconIgnite {
  0%   { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);                                   color: var(--text-muted); }
  55%  { box-shadow: 0 0 0 4px var(--accent-glow), 0 0 18px 5px var(--accent-glow);  color: #6BA5FF; }
  /* repouso ACESO: o azul saturado fica fixo no ícone E no desenho */
  100% { box-shadow: 0 0 0 2px var(--accent-soft), 0 0 10px 2px var(--accent-glow);  color: #5B9BFF; }
}
@keyframes glyphGlow {
  0%   { filter: drop-shadow(0 0 0 rgba(37, 99, 235, 0)); }
  55%  { filter: drop-shadow(0 0 7px var(--accent-glow)) drop-shadow(0 0 2px var(--accent)); }
  /* repouso: brilho sutil e contido fixo no traço do ícone */
  100% { filter: drop-shadow(0 0 4px var(--accent-glow)); }
}

/* Tiles BLOQUEADOS não acendem (não confundir desabilitado com clicável) */
.menu-tile.is-locked .fx-icon-ignite {
  animation: none !important;
  color: var(--text-muted);
  box-shadow: none;
}
.menu-tile.is-locked .fx-icon-ignite svg {
  animation: none !important;
  filter: none;
}

/* Acessibilidade: sem animações se o usuário preferir — ícone já nasce aceso */
@media (prefers-reduced-motion: reduce) {
  .fx-enter-sweep::after { animation: none; opacity: 0; }
  .fx-icon-ignite         { animation: none; box-shadow: 0 0 0 2px var(--accent-soft); color: #5B9BFF; }
  .fx-icon-ignite svg     { animation: none; filter: drop-shadow(0 0 4px var(--accent-glow)); }
  .menu-tile.is-locked .fx-icon-ignite     { color: var(--text-muted); box-shadow: none; }
  .menu-tile.is-locked .fx-icon-ignite svg { filter: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   G10 — Alinhamento coeso: bloco centralizado na página com conteúdo
   interno alinhado à esquerda (headline, subtítulo, botões no mesmo eixo).
   ════════════════════════════════════════════════════════════════════════ */
.ff-stack-left {
  /* centraliza o bloco na página */
  max-width: 640px;
  margin-inline: auto;
  /* conteúdo interno alinhado à esquerda entre si */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
