/* ============================================================================
   meuespaco.css — Dashboard pessoal do user (.me-*)
   Sessão 134 / Onda P4
   ============================================================================ */

.me-page { padding: 28px 32px; display: flex; flex-direction: column; gap: 24px; }

.me-head {
  padding-bottom: 18px; border-bottom: 1px solid var(--lan-border);
}
.me-eyebrow {
  font-size: 10.5px; font-weight: 600; color: var(--lan-brand);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.me-title {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 38px); font-weight: 500;
  color: var(--lan-text); font-family: 'IBM Plex Serif', Georgia, serif;
  letter-spacing: -0.02em; line-height: 1.1;
}
.me-title em {
  font-style: italic; font-weight: 600;
  background: linear-gradient(135deg, var(--lan-brand) 0%, var(--lan-purple) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.me-subtitle {
  margin: 8px 0 0;
  font-size: 13px; color: var(--lan-text-muted);
  max-width: 640px; line-height: 1.55;
}

.me-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.me-card {
  background: var(--lan-surface);
  border: 1px solid var(--lan-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--lan-shadow-sm);
  min-height: 180px;
}
.me-card header {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--lan-border);
  background: var(--lan-bg);
}
.me-card header strong {
  font-size: 13px; font-weight: 600; color: var(--lan-text);
  letter-spacing: -0.01em;
}
.me-card-body { flex: 1; padding: 12px 14px; }

/* Loading + empty */
.me-loading, .me-empty {
  display: flex; align-items: center; justify-content: center;
  padding: 24px 12px; gap: 6px;
  font-size: 12px; color: var(--lan-text-muted);
  text-align: center;
}

/* Lista (reuniões/avisos) */
.me-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.me-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--lan-bg);
  border-radius: 8px;
  border-left: 3px solid var(--it, var(--lan-brand));
  transition: all 150ms ease;
}
.me-list li:hover { transform: translateX(2px); background: var(--lan-surface-hover); }
.me-list li.is-urgent {
  background: var(--lan-danger-soft);
  border-left-color: var(--lan-danger);
  animation: me-pulse 2.4s ease-in-out infinite;
}
@keyframes me-pulse {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  50% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--lan-danger) 12%, transparent); }
}

.me-list-time {
  flex-shrink: 0; min-width: 48px; text-align: center;
}
.me-list-time strong {
  display: block; font-size: 13.5px; font-weight: 700;
  color: var(--lan-text);
  font-family: 'IBM Plex Mono', monospace;
}
.me-list-time small {
  display: block; font-size: 9.5px; color: var(--lan-text-faint);
  text-transform: uppercase; letter-spacing: 0.04em;
}

.me-list-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 7px;
  flex-shrink: 0;
}

.me-list-info { flex: 1; min-width: 0; }
.me-list-info strong {
  display: block; font-size: 12.5px; color: var(--lan-text); font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.me-list-info small {
  display: block; font-size: 11px; color: var(--lan-text-muted);
  margin-top: 1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.me-list-action {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 6px;
  background: transparent; color: var(--lan-text-muted);
  text-decoration: none; flex-shrink: 0;
  transition: all 120ms ease;
}
.me-list-action:hover { background: var(--lan-brand-soft); color: var(--lan-brand); }

/* Stats */
.me-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.me-stat {
  padding: 14px 16px;
  background: var(--lan-bg);
  border-radius: 8px;
  text-align: center;
}
.me-stat strong {
  display: block;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700; color: var(--lan-text);
  font-family: 'IBM Plex Sans', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1;
}
.me-stat small {
  display: block; font-size: 11px;
  color: var(--lan-text-muted);
  margin-top: 6px; line-height: 1.3;
}

/* Atalhos */
.me-shortcuts {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.me-shortcut {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: var(--lan-bg);
  border: 1px solid transparent;
  border-radius: 8px; cursor: pointer;
  font-size: 12.5px; color: var(--lan-text);
  text-align: left;
  transition: all 150ms ease;
}
.me-shortcut:hover {
  background: var(--lan-brand-soft);
  border-color: var(--lan-brand);
  color: var(--lan-brand);
  transform: translateY(-1px);
  box-shadow: var(--lan-shadow-sm);
}
.me-shortcut span { font-weight: 500; }
