*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f0f2f5;
  --card: #ffffff;
  --sidebar-bg: #16213e;
  --sidebar-text: rgba(255,255,255,0.7);
  --text: #1e293b;
  --muted: #64748b;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --accent: #667eea;
  --accent2: #764ba2;
  --danger: #ef4444;
  --input-bg: #f8fafc;
  --input-border: #e2e8f0;
}
body.admin-dark {
  --bg: #0f172a;
  --card: #1e293b;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 2px 20px rgba(0,0,0,0.5);
  --input-bg: #0f172a;
  --input-border: rgba(255,255,255,0.12);
}
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
}

/* ── LAYOUT ─────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }

/* ── SIDEBAR ────────────────────────────── */
.admin-sidebar {
  width: 255px; min-height: 100vh; background: var(--sidebar-bg);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
  transition: width 0.3s; flex-shrink: 0;
}
.sidebar-brand {
  padding: 1.4rem 1.25rem; display: flex; align-items: center;
  gap: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sidebar-brand img { width: 42px; height: 42px; border-radius: 10px; background: white; padding: 4px; flex-shrink: 0; }
.sidebar-brand-text h2 { color: white; font-size: 0.95rem; font-weight: 700; }
.sidebar-brand-text p { color: rgba(255,255,255,0.38); font-size: 0.7rem; margin-top: 1px; }
.sidebar-nav { flex: 1; padding: 0.75rem 0; overflow-y: auto; }
.nav-group { margin-bottom: 0.25rem; }
.nav-group-label {
  padding: 0.5rem 1.25rem 0.25rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.28); text-transform: uppercase;
}
.nav-btn {
  width: 100%; padding: 0.6rem 1.1rem; background: transparent; border: none;
  color: var(--sidebar-text); font-size: 0.85rem; text-align: left;
  cursor: pointer; display: flex; align-items: center; gap: 0.65rem;
  border-left: 3px solid transparent; transition: all 0.2s;
}
.nav-btn:hover { background: rgba(255,255,255,0.07); color: white; }
.nav-btn.active { background: rgba(102,126,234,0.22); color: white; border-left-color: #667eea; font-weight: 600; }
.nav-btn .nav-icon { font-size: 1.05rem; width: 20px; text-align: center; flex-shrink: 0; }
.nav-btn .nav-soon {
  margin-left: auto; padding: 1px 7px; border-radius: 99px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.04em;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.10); text-transform: uppercase;
}
.nav-btn.active .nav-soon { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.22); }
.sidebar-footer {
  padding: 1rem 1.1rem; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.theme-toggle-btn {
  width: 100%; padding: 0.55rem 0.9rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: rgba(255,255,255,0.7); font-size: 0.83rem;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: all 0.2s;
}
.theme-toggle-btn:hover { background: rgba(255,255,255,0.14); color: white; }
.btn-sidebar-action {
  display: block; padding: 0.55rem 0.9rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.83rem; text-align: center; cursor: pointer; transition: all 0.2s; width: 100%;
}
.btn-sidebar-action:hover { background: rgba(255,255,255,0.14); color: white; }
.btn-sidebar-action.danger { border-color: rgba(239,68,68,0.35); color: rgba(239,68,68,0.8); }
.btn-sidebar-action.danger:hover { background: rgba(239,68,68,0.18); color: #ef4444; }

/* ── MAIN ───────────────────────────────── */
.admin-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.admin-topbar {
  background: var(--card); padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: var(--shadow); transition: background 0.3s; position: sticky; top: 0; z-index: 10;
}
.topbar-left h1 { font-size: 1.35rem; font-weight: 700; color: var(--text); }
.topbar-left p { font-size: 0.8rem; color: var(--muted); margin-top: 1px; }
.topbar-actions { display: flex; gap: 0.65rem; align-items: center; }
.admin-content { flex: 1; padding: 1.75rem 2rem; overflow-y: auto; }

/* ── STAT CARDS ─────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 1rem; margin-bottom: 1.75rem; }
.stat-card {
  background: var(--card); border-radius: 12px; padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.9rem; transition: background 0.3s;
  min-width: 0; overflow: hidden;
}
.stat-icon { font-size: 1.6rem; width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon.purple { background: rgba(102,126,234,0.12); }
.stat-icon.green  { background: rgba(16,185,129,0.12); }
.stat-icon.orange { background: rgba(245,158,11,0.12); }
.stat-icon.blue   { background: rgba(59,130,246,0.12); }
.stat-info { flex: 1 1 auto; min-width: 0; }
.stat-info h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); line-height: 1; }
.stat-info p  { font-size: 0.75rem; color: var(--muted); margin-top: 2px; word-break: break-word; line-height: 1.25; }

/* ── CONTENT CARDS ──────────────────────── */
.content-card {
  background: var(--card); border-radius: 14px; padding: 1.5rem;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  margin-bottom: 1.5rem; transition: background 0.3s;
}
.content-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 1.1rem; display: flex; align-items: center; gap: 0.5rem; }

/* ── FORM ELEMENTS ──────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label, .form-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--muted); margin-bottom: 0.35rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.form-control {
  width: 100%; padding: 0.62rem 0.85rem;
  background: var(--input-bg); border: 1.5px solid var(--input-border);
  border-radius: 8px; font-size: 0.9rem; color: var(--text);
  font-family: inherit; transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--accent); }
.form-control option { background: var(--card); color: var(--text); }

/* ── BUTTONS ────────────────────────────── */
.btn {
  padding: 0.58rem 1.15rem; border: none; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-primary { background: linear-gradient(135deg, #667eea, #764ba2); color: white; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(102,126,234,0.4); }
.btn-secondary { background: var(--input-bg); color: var(--muted); border: 1.5px solid var(--input-border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-danger { background: rgba(239,68,68,0.1); color: #ef4444; border: 1.5px solid rgba(239,68,68,0.25); }
.btn-danger:hover { background: #ef4444; color: white; }
.btn-sm { padding: 0.38rem 0.8rem; font-size: 0.78rem; }
.form-actions { display: flex; gap: 0.65rem; margin-top: 1.25rem; flex-wrap: wrap; }

/* ── Upload Tabs ─────────────────────────── */
.upload-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.05);
}

.tab-btn.active {
  color: #667eea;
  border-bottom-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.help-text {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.help-text a {
  color: #667eea;
  text-decoration: none;
}

.help-text a:hover {
  text-decoration: underline;
}

.url-preview {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}

.url-preview img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ── GALLERY ─────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 1.25rem; }
.gallery-item { background: var(--card); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.25s; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.gallery-item-image { width: 100%; height: 210px; object-fit: cover; }
.gallery-item-content { padding: 1.1rem; }
.gallery-item-title { font-size: 0.98rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.gallery-item-description { color: var(--muted); font-size: 0.82rem; margin-bottom: 0.65rem; }
.gallery-item-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 0.65rem; border-top: 1px solid var(--border); }
.gallery-item-filename { font-size: 0.75rem; color: var(--muted); font-family: monospace; }
.gallery-item-actions { display: flex; gap: 0.35rem; }
.btn-icon { padding: 0.38rem; background: transparent; border: none; cursor: pointer; font-size: 1rem; border-radius: 6px; transition: all 0.2s; }
.btn-icon:hover { background: var(--border); }
.btn-icon.delete:hover { background: rgba(239,68,68,0.1); color: #ef4444; }

/* ── MODAL ───────────────────────────────── */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1000; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(3px); }
.modal.active { display: flex; }
.modal-content { background: var(--card); padding: 1.75rem; border-radius: 16px; max-width: 520px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,0.3); border: 1px solid var(--border); transition: background 0.3s; max-height: 90vh; overflow-y: auto; }
.modal-content h3 { margin-bottom: 1rem; color: var(--text); font-size: 1.05rem; }
.modal-content p { margin-bottom: 0.75rem; color: var(--muted); font-size: 0.9rem; }
.modal-warning { color: #ef4444; font-weight: 600; }
.modal-actions { display: flex; gap: 0.65rem; margin-top: 1.25rem; }

/* ── ITEMS LIST ─────────────────────────── */
.items-list { display: flex; flex-direction: column; gap: 0.65rem; }
.item-row { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 1rem; background: var(--input-bg); border: 1px solid var(--border); border-radius: 10px; transition: all 0.2s; }
.item-row:hover { border-color: var(--accent); }
.item-row-info { flex: 1; min-width: 0; }
.item-row-info h4 { font-size: 0.9rem; color: var(--text); margin-bottom: 0.15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item-row-info p { font-size: 0.77rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item-row-actions { display: flex; gap: 0.35rem; flex-shrink: 0; }
.item-badge { padding: 0.22rem 0.65rem; border-radius: 20px; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.badge-virtual   { background: rgba(102,126,234,0.15); color: #667eea; }
.badge-presencial{ background: rgba(16,185,129,0.15);  color: #10b981; }
.badge-hibrido   { background: rgba(245,158,11,0.15);  color: #f59e0b; }
.badge-enlinea   { background: rgba(59,130,246,0.15);  color: #3b82f6; }
.badge-grabado   { background: rgba(139,92,246,0.15);  color: #8b5cf6; }

/* ── UPLOAD SECTION ─────────────────────── */
.upload-section, .menu-editor-section, .bot-config-section { margin-bottom: 1.5rem; }
.upload-card { background: var(--card); padding: 1.5rem; border-radius: 14px; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 1.5rem; transition: background 0.3s; }
.upload-card h3 { margin-bottom: 1.25rem; color: var(--text); font-size: 1.05rem; font-weight: 700; }
.upload-card h4 { margin: 1.25rem 0 0.75rem; color: var(--accent); font-size: 1rem; }
.menu-section { margin-bottom: 1.25rem; padding: 1.1rem; background: var(--input-bg); border-radius: 10px; border-left: 4px solid var(--accent); }
.menu-section h4 { color: var(--accent); margin-bottom: 0.65rem; }
.form-group input[type="file"] { width: 100%; padding: 0.65rem; border: 2px dashed var(--input-border); border-radius: 8px; cursor: pointer; color: var(--text); background: var(--input-bg); }
.file-preview img { max-width: 200px; max-height: 200px; border-radius: 8px; margin-top: 0.5rem; }
.url-preview { margin-top: 1rem; padding: 1rem; background: var(--input-bg); border-radius: 8px; text-align: center; }
.url-preview img { max-width: 100%; max-height: 200px; border-radius: 8px; }
.help-text { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; line-height: 1.5; }
.help-text a { color: var(--accent); text-decoration: none; }

/* ── BOT ─────────────────────────────────── */
.bot-item { display: flex; align-items: center; padding: 0.9rem; background: var(--input-bg); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 0.65rem; transition: all 0.2s; }
.bot-item:hover { border-color: var(--accent); }
.bot-item-checkbox { margin-right: 0.9rem; width: 18px; height: 18px; cursor: pointer; flex-shrink: 0; }
.bot-item-preview { width: 68px; height: 68px; object-fit: cover; border-radius: 8px; margin-right: 0.9rem; flex-shrink: 0; }
.bot-item-info { flex: 1; }
.bot-item-info h4 { color: var(--text); font-size: 0.9rem; margin-bottom: 0.15rem; }
.bot-item-info p { color: var(--muted); font-size: 0.78rem; }

/* ── NOVEDADES ─────────────────────────── */
#newsList li { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 1rem; background: var(--input-bg); border: 1px solid var(--border); border-radius: 8px; margin-bottom: 0.5rem; gap: 1rem; }
#newsList .news-info { flex: 1; min-width: 0; }
#newsList .news-title { font-weight: 600; color: var(--text); font-size: 0.88rem; }
#newsList .news-msg { color: var(--muted); font-size: 0.78rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#newsList .news-actions { display: flex; gap: 0.35rem; flex-shrink: 0; }

/* ── EMPTY STATE ─────────────────────────── */
.empty-state { text-align: center; padding: 2.5rem 2rem; }
.empty-icon { font-size: 3.5rem; margin-bottom: 0.75rem; opacity: 0.35; }
.empty-state h3 { color: var(--muted); margin-bottom: 0.4rem; font-size: 1rem; }
.empty-state p { color: var(--muted); font-size: 0.85rem; }

/* ── ANUNCIOS COMUNIDAD (cards) ──────────── */
.aac-card { border-radius: 10px; padding: 1rem 1.1rem; margin-bottom: 0.85rem; }
.aac-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.75rem; flex-wrap: wrap; }
.aac-info { flex: 1 1 320px; min-width: 0; }
.aac-title-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.35rem; }
.aac-title { font-weight: 700; font-size: 1rem; color: #1e293b; word-break: break-word; }
.aac-cat { background: #e9ecef; padding: 2px 8px; border-radius: 99px; font-size: 0.75rem; color: #1e293b; white-space: nowrap; }
.aac-status { font-size: 0.78rem; color: #666; white-space: nowrap; }
.aac-msg { margin: 0 0 0.4rem; color: #444; font-size: 0.92rem; word-wrap: break-word; line-height: 1.45; }
.aac-meta { font-size: 0.78rem; color: #888; display: flex; gap: 1rem; flex-wrap: wrap; }
.aac-meta span { word-break: break-word; }
.aac-actions { display: flex; gap: 0.4rem; flex-shrink: 0; flex-wrap: wrap; align-items: center; }
.aac-btn {
  color: #fff; border: none; padding: 6px 12px; border-radius: 7px;
  cursor: pointer; font-size: 0.85rem; font-weight: 600;
  transition: filter 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.10);
}
.aac-btn:hover  { filter: brightness(1.08); box-shadow: 0 3px 8px rgba(0,0,0,0.14); }
.aac-btn:active { transform: scale(0.96); }
.aac-btn-aprobar  { background: #27ae60; }
.aac-btn-rechazar { background: #e67e22; }
.aac-btn-editar   { background: #6366f1; }
.aac-btn-borrar   { background: #e74c3c; }
.aac-img { margin-top: 0.6rem; max-height: 100px; border-radius: 8px; object-fit: cover; }

@media (max-width: 700px) {
  .aac-card { padding: 0.9rem 0.95rem; }
  .aac-row { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .aac-info { flex: 1 1 auto; }
  .aac-actions {
    width: 100%; gap: 0.4rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 0.65rem; margin-top: 0.25rem;
  }
  .aac-actions .aac-btn { flex: 1 1 calc(50% - 0.2rem); min-width: 0; padding: 8px 10px; text-align: center; }
  .aac-title { font-size: 0.95rem; }
  .aac-msg { font-size: 0.88rem; }
  .aac-meta { gap: 0.5rem 0.85rem; }
}
@media (max-width: 380px) {
  .aac-actions .aac-btn { flex: 1 1 100%; }
}
body.admin-dark .aac-actions { border-top-color: rgba(255,255,255,0.10); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 768px) {
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: relative; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; margin-bottom: 1.25rem; }
  .stat-card { padding: 0.85rem 0.9rem; gap: 0.65rem; }
  .stat-icon { width: 38px; height: 38px; font-size: 1.35rem; border-radius: 9px; }
  .stat-info h3 { font-size: 1.25rem; }
  .stat-info p { font-size: 0.72rem; }
  .admin-content { padding: 1rem; }
  .admin-topbar { padding: 0.9rem 1rem; }
}
@media (max-width: 420px) {
  .stats-row { gap: 0.5rem; }
  .stat-card { padding: 0.7rem 0.75rem; gap: 0.55rem; }
  .stat-icon { width: 34px; height: 34px; font-size: 1.2rem; }
  .stat-info h3 { font-size: 1.1rem; }
  .stat-info p { font-size: 0.68rem; }
}


/* ── DASHBOARD GENERAL ──────────────────── */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.dash-card {
  background: var(--card); border-radius: 14px; padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.95rem;
  transition: transform .18s ease, box-shadow .18s ease, background .3s;
  min-width: 0; overflow: hidden;
}
.dash-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.10); }
.dash-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; flex-shrink: 0;
}
.dash-card-body { min-width: 0; flex: 1; }
.dash-card-value {
  font-size: 1.65rem; font-weight: 800; color: var(--text); line-height: 1;
}
.dash-card-label {
  font-size: 0.78rem; color: var(--muted); margin-top: 4px;
  word-break: break-word; line-height: 1.25;
}
.dash-updated {
  font-size: 0.78rem; color: var(--muted);
  text-align: right; margin: 0.25rem 0 1.5rem;
}

.dash-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.dash-block { margin-bottom: 0; }
.dash-block h3 {
  font-size: 1rem; margin-bottom: 0.85rem;
  color: var(--text); display: flex; align-items: center; gap: 0.4rem;
}

.dash-quick {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.6rem;
}
.dash-quick-btn {
  background: var(--input-bg); border: 1px solid var(--input-border);
  color: var(--text); padding: 0.7rem 0.75rem; border-radius: 10px;
  cursor: pointer; font-size: 0.83rem; font-weight: 600;
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  transition: all .18s ease; text-align: center;
}
.dash-quick-btn span:first-child { font-size: 1.4rem; }
.dash-quick-btn:hover {
  background: linear-gradient(135deg, rgba(102,126,234,0.15), rgba(118,75,162,0.15));
  border-color: rgba(102,126,234,0.4); transform: translateY(-1px);
}

.dash-list { display: flex; flex-direction: column; gap: 0.45rem; }
.dash-empty {
  padding: 0.9rem 1rem; background: var(--input-bg);
  border: 1px dashed var(--input-border); border-radius: 10px;
  font-size: 0.85rem; color: var(--muted); text-align: center;
}

/* ── PLACEHOLDER "PRÓXIMAMENTE" ────────── */
.proximamente-card {
  text-align: center; padding: 3rem 1.5rem;
  background: linear-gradient(135deg, rgba(102,126,234,0.04), rgba(118,75,162,0.04));
  border: 1px dashed rgba(102,126,234,0.35);
}
.proximamente-icon {
  font-size: 4rem; line-height: 1; margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(102,126,234,0.25));
}
.proximamente-card h3 {
  font-size: 1.35rem; margin-bottom: 0.6rem; color: var(--text);
}
.proximamente-card p {
  color: var(--muted); font-size: 0.92rem; max-width: 520px;
  margin: 0 auto 1.25rem; line-height: 1.5;
}
.proximamente-badge {
  display: inline-block; padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white; border-radius: 99px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; box-shadow: 0 4px 14px rgba(102,126,234,0.35);
}

@media (max-width: 768px) {
  .dash-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .dash-card { padding: 0.85rem 0.95rem; gap: 0.7rem; }
  .dash-card-icon { width: 40px; height: 40px; font-size: 1.3rem; border-radius: 10px; }
  .dash-card-value { font-size: 1.35rem; }
  .dash-card-label { font-size: 0.72rem; }
  .proximamente-card { padding: 2rem 1rem; }
  .proximamente-icon { font-size: 3rem; }
}
@media (max-width: 420px) {
  .dash-grid { gap: 0.55rem; }
  .dash-card { padding: 0.7rem 0.75rem; gap: 0.55rem; }
  .dash-card-icon { width: 36px; height: 36px; font-size: 1.15rem; }
  .dash-card-value { font-size: 1.15rem; }
  .dash-card-label { font-size: 0.68rem; }
}
