/*
 * Sinais de Hoje — Hero "O que fazer agora"
 * Wave 1 item #10 (AUDITORIA_DASHBOARD_COMPLETA_2026_06_05)
 *
 * Aplica design system canonical de .planning/design-preview/hub.html:
 *   - Instrument Serif italic no titulo principal
 *   - Geist Mono em numeros (tabular-nums)
 *   - emerald #34d399 = buy, rose #fb7185 = sell, hold #fbbf24 = aguardar
 *   - Sem emojis (SVG inline no HTML)
 *   - Action-first: chama atencao pra acao, KPIs depois
 */

.sig-today-hero {
  background: var(--bg-card, #13131a);
  border: 1px solid var(--border-card, rgba(255,255,255,0.06));
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.sig-today-hero__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.sig-today-hero__title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--text-primary, #f5f5f7);
}
.sig-today-hero__title em {
  font-style: italic;
  color: #34d399;
}

.sig-today-hero__meta {
  margin-top: 7px;
  font-size: 12px;
  color: var(--text-muted, #6e6e78);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sig-today-hero__meta .dot-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted, #45454e);
}
.sig-today-hero__meta strong {
  color: var(--text-secondary, #a8a8b0);
  font-weight: 500;
}
.sig-today-hero__updated {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.22);
  font-size: 10px;
  color: #34d399;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  text-transform: uppercase;
}

.sig-today-hero__refresh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 7px;
  background: var(--bg-elev, #0f0f13);
  border: 1px solid var(--border-card, rgba(255,255,255,0.06));
  color: var(--text-secondary, #a8a8b0);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.sig-today-hero__refresh:hover {
  border-color: rgba(52,211,153,0.22);
  color: #34d399;
  background: rgba(52,211,153,0.08);
}

/* ── Lista de sinais (top 5) ─────────────────────────────────────────── */
.sig-today-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-elev, #0f0f13);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-card, rgba(255,255,255,0.06));
}

.sig-today-row {
  display: grid;
  grid-template-columns: 110px 110px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-card, rgba(255,255,255,0.04));
  cursor: pointer;
  transition: background 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}
.sig-today-row:last-child {
  border-bottom: none;
}
.sig-today-row:hover {
  background: rgba(255,255,255,0.018);
  box-shadow: inset 3px 0 0 #34d399;
}
.sig-today-row[data-action="VENDER"]:hover {
  box-shadow: inset 3px 0 0 #fb7185;
}
.sig-today-row[data-action="AGUARDAR"]:hover {
  box-shadow: inset 3px 0 0 #fbbf24;
}

.sig-today-row__ticker {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary, #f5f5f7);
  font-variant-numeric: tabular-nums;
}
.sig-today-row__name {
  font-size: 10px;
  color: var(--text-muted, #6e6e78);
  margin-top: 2px;
  font-weight: 400;
}

.sig-today-row__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: 'Geist', system-ui, sans-serif;
  min-width: 118px;
  white-space: nowrap;
  text-align: center;
}
.sig-today-row__action.buy {
  background: rgba(52,211,153,0.08);
  color: #34d399;
  border: 1px solid rgba(52,211,153,0.22);
}
.sig-today-row__action.sell {
  background: rgba(251,113,133,0.08);
  color: #fb7185;
  border: 1px solid rgba(251,113,133,0.22);
}
.sig-today-row__action.hold {
  background: rgba(251,191,36,0.08);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.22);
}
.sig-today-row__action-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.sig-today-row__action-tech {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-tertiary, #6e6e78);
  text-transform: lowercase;
  padding-left: 2px;
}

.sig-today-row__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 12px;
  color: var(--text-secondary, #a8a8b0);
}
.sig-today-row__stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 70px;
}
.sig-today-row__stat-label {
  font-size: 9px;
  color: var(--text-muted, #6e6e78);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
}
.sig-today-row__stat-value {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary, #f5f5f7);
  font-variant-numeric: tabular-nums;
}
.sig-today-row__stat-value.up { color: #34d399; }
.sig-today-row__stat-value.down { color: #fb7185; }
.sig-today-row__stat-value.warn { color: #fbbf24; }

/* Convicao bars 1-5 ────────────────────────────────────────────────── */
.sig-today-conv {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}
.sig-today-conv span {
  width: 5px;
  height: 12px;
  border-radius: 1px;
  background: var(--border-card, #34343d);
}
.sig-today-conv span.on {
  background: #34d399;
}
.sig-today-conv.sell span.on {
  background: #fb7185;
}
.sig-today-conv.hold span.on {
  background: #fbbf24;
}

.sig-today-row__chevron {
  color: var(--text-muted, #6e6e78);
  display: grid;
  place-items: center;
  transition: color 0.12s ease, transform 0.12s ease;
}
.sig-today-row:hover .sig-today-row__chevron {
  color: #34d399;
  transform: translateX(2px);
}

/* ── Estado vazio / loading ──────────────────────────────────────────── */
.sig-today-empty {
  padding: 32px 18px;
  text-align: center;
  color: var(--text-muted, #6e6e78);
  font-size: 13px;
}
.sig-today-empty__hint {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted, #45454e);
}

/* ── Rodape de acoes ────────────────────────────────────────────────── */
.sig-today-foot {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.sig-today-foot__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-secondary, #a8a8b0);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 7px;
  background: var(--bg-elev, #0f0f13);
  border: 1px solid var(--border-card, rgba(255,255,255,0.06));
  cursor: pointer;
  transition: all 0.15s ease;
}
.sig-today-foot__link:hover {
  border-color: rgba(52,211,153,0.22);
  color: #34d399;
  background: rgba(52,211,153,0.08);
}

/* ── Disclaimer LGPD/finance ─────────────────────────────────────────── */
.sig-today-hero__disclaimer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-card, rgba(255,255,255,0.04));
  font-size: 10px;
  color: var(--text-muted, #45454e);
  line-height: 1.5;
}

/* ── Responsivo mobile ───────────────────────────────────────────────── */
@media (max-width: 720px) {
  .sig-today-hero {
    padding: 18px 16px;
  }
  .sig-today-hero__title {
    font-size: 24px;
  }
  .sig-today-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }
  .sig-today-row__action {
    grid-row: 1;
    grid-column: 2;
    min-width: 80px;
  }
  .sig-today-row__stats {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 4px;
  }
  .sig-today-row__chevron {
    display: none;
  }
}
