/* ============================================================
   PORTAL DE CLIENTES — Concursales Colombia v1.0.5
   Plantilla 100% propia — NO hereda nada de Divi/WordPress
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset total — esta página no es WordPress */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

:root {
  --marino:      #011b48;
  --marino2:     #0d2d5e;
  --dorado:      #c9a84c;
  --dorado2:     #e8d5a3;
  --bg:          #f0f4f8;
  --bg2:         #e4eaf3;
  --blanco:      #ffffff;
  --texto:       #1a2235;
  --texto2:      #5a6785;
  --borde:       #dde3ed;
  --verde:       #2d6a4f; --verde-bg: #d8f3dc;
  --amarillo:    #b5820a; --amarillo-bg: #fff3cd;
  --rojo:        #9b2226; --rojo-bg: #fde8e9;
  --azul:        #1b4f72; --azul-bg: #d6eaf8;
  --gris:        #5a5a5a; --gris-bg: #e9e9e9;
  --sombra:      0 2px 12px rgba(1,27,72,0.08);
  --sombra2:     0 8px 32px rgba(1,27,72,0.14);
  --radio:       12px;
  --sidebar-w:   260px;
  --topbar-h:    60px;
  --max-w:       1200px;
}

/* ============================================================
   PÁGINA LOGIN  — dos columnas, fullscreen, sin Divi
   ============================================================ */

.pcl-body {
  background: var(--bg);
  color: var(--texto);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Página de login: cubre todo el viewport */
.pcl-login-page {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/* Panel izquierdo marino */
.pcl-login-left {
  flex: 1;
  background: var(--marino);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  position: relative;
  overflow: hidden;
}

.pcl-login-left::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: rgba(201,168,76,0.06); pointer-events: none;
}
.pcl-login-left::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(201,168,76,0.04); pointer-events: none;
}

.pcl-login-logo-img { max-width: 210px; height: auto; display: block; margin-bottom: 44px; }

.pcl-login-left h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 14px;
}
.pcl-login-left > p { font-size: 16px; color: rgba(255,255,255,0.62); line-height: 1.7; margin-bottom: 40px; max-width: 360px; }

.pcl-login-divider { width: 44px; height: 3px; background: var(--dorado); border-radius: 2px; margin-bottom: 36px; }

.pcl-login-features { display: flex; flex-direction: column; gap: 14px; }
.pcl-feature-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.78); font-size: 14px; }
.pcl-feature-item span {
  font-size: 18px; width: 34px; height: 34px;
  background: rgba(201,168,76,0.14); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Panel derecho — formulario */
.pcl-login-right {
  width: 500px; flex-shrink: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 40px;
}

.pcl-login-card {
  background: var(--blanco);
  border-radius: 20px;
  box-shadow: var(--sombra2);
  padding: 48px 44px;
  width: 100%;
  border-top: 4px solid var(--dorado);
}

.pcl-login-card-header { text-align: center; margin-bottom: 32px; }
.pcl-login-card-header svg { stroke: var(--dorado); display: block; margin: 0 auto 14px; }
.pcl-login-card-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px; font-weight: 700; color: var(--marino); margin-bottom: 6px;
}
.pcl-login-card-header p { font-size: 14px; color: var(--texto2); }

.pcl-form-group { margin-bottom: 18px; }
.pcl-form-group label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px; color: var(--marino); margin-bottom: 7px;
}
.pcl-form-group input {
  display: block; width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--borde); border-radius: 9px;
  font-size: 15px; font-family: inherit; background: #f8fafc;
  color: var(--texto); outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
}
.pcl-form-group input:focus {
  border-color: var(--marino); background: #fff;
  box-shadow: 0 0 0 3px rgba(1,27,72,0.08);
}

.pcl-form-check { margin-bottom: 22px; font-size: 14px; color: var(--texto2); }
.pcl-form-check label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.pcl-form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--marino); flex-shrink: 0; }

.pcl-btn-login {
  display: block; width: 100%; padding: 15px;
  background: var(--marino); color: #fff; border: none; border-radius: 9px;
  font-size: 16px; font-weight: 700; font-family: inherit; cursor: pointer;
  transition: background .2s, transform .1s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(1,27,72,0.3);
  border-bottom: 3px solid rgba(201,168,76,0.5);
}
.pcl-btn-login:hover { background: var(--marino2); transform: translateY(-1px); }
.pcl-btn-login:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.pcl-login-footer-links { display: flex; justify-content: space-between; margin-top: 20px; }
.pcl-login-footer-links a { font-size: 13px; color: var(--marino); text-decoration: none; opacity: .75; }
.pcl-login-footer-links a:hover { opacity: 1; text-decoration: underline; }

/* Alertas */
.pcl-alerta { padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 16px; }
.pcl-alerta-error   { background: var(--rojo-bg);  color: var(--rojo);  border: 1px solid #f5c6cb; }
.pcl-alerta-success { background: var(--verde-bg); color: var(--verde); border: 1px solid #b7e4c7; }

/* ============================================================
   APP LAYOUT — sidebar fijo + contenido hasta 1200px
   ============================================================ */

.pcl-app { display: flex; min-height: 100vh; background: var(--bg); }

/* SIDEBAR */
.pcl-sidebar {
  width: var(--sidebar-w); background: var(--marino);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 200; overflow-y: auto;
  transition: transform .3s ease;
}

.pcl-sidebar-logo {
  padding: 28px 24px 22px;
}
.pcl-sidebar-logo img { max-width: 160px; height: auto; display: block; }

.pcl-sidebar-nav { flex: 1; padding: 20px 12px; display: flex; flex-direction: column; gap: 4px; }

.pcl-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; border-radius: 9px; text-decoration: none;
  color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500;
  transition: all .2s; position: relative;
}
.pcl-nav-link:hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.92); }
.pcl-nav-link.active { background: rgba(201,168,76,0.16); color: var(--dorado); font-weight: 600; }
.pcl-nav-icon { font-size: 18px; width: 24px; text-align: center; opacity: .75; }
.pcl-nav-link.active .pcl-nav-icon { opacity: 1; }
.pcl-nav-badge {
  margin-left: auto; background: var(--dorado); color: var(--marino);
  font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 10px; min-width: 20px; text-align: center;
}

.pcl-sidebar-bottom { padding: 16px 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.pcl-sidebar-user { display: flex; align-items: center; gap: 10px; padding: 10px 12px; margin-bottom: 8px; }
.pcl-sidebar-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dorado); color: var(--marino);
  font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pcl-sidebar-info strong { display: block; font-size: 13px; color: rgba(255,255,255,0.9); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }
.pcl-sidebar-info small  { display: block; font-size: 11px; color: rgba(255,255,255,0.45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }
.pcl-logout-btn {
  display: block; text-align: center; padding: 9px; border-radius: 8px;
  color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1); transition: all .2s;
}
.pcl-logout-btn:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }

/* CONTENIDO PRINCIPAL */
.pcl-main {
  margin-left: var(--sidebar-w);
  flex: 1; min-height: 100vh;
  display: flex; flex-direction: column;
  max-width: calc(var(--max-w) + var(--sidebar-w));
}

/* Topbar — solo móvil */
.pcl-topbar {
  display: none; align-items: center; justify-content: space-between;
  padding: 0 20px; height: var(--topbar-h);
  background: var(--marino); position: sticky; top: 0; z-index: 150;
}
.pcl-menu-toggle { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 4px; }
.pcl-topbar-logo { max-height: 28px; }
.pcl-topbar-notif { color: #fff; text-decoration: none; font-size: 20px; position: relative; }
.pcl-topbar-notif span {
  position: absolute; top: -4px; right: -6px;
  background: var(--dorado); color: var(--marino);
  font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Overlay móvil */
.pcl-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 190;
}
.pcl-overlay.show { display: block; }

/* INNER — limita contenido a max-width */
.pcl-inner {
  padding: 36px 40px 48px;
  max-width: 960px;
  width: 100%;
}

/* Vista de ancho completo (Procesos Ejecutivos, etc.) */
.pcl-inner.pcl-inner--full {
  max-width: 100%;
}

/* Page header */
.pcl-page-header { margin-bottom: 28px; }
.pcl-back { display: inline-block; color: var(--texto2); text-decoration: none; font-size: 13px; margin-bottom: 10px; }
.pcl-back:hover { color: var(--marino); }
.pcl-page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; font-weight: 700; color: var(--marino); margin-bottom: 4px;
}
.pcl-page-header p { font-size: 14px; color: var(--texto2); }

/* Stats */
.pcl-stats-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 28px;
}
.pcl-stat-card {
  background: var(--blanco); border-radius: var(--radio); padding: 22px 20px;
  box-shadow: var(--sombra); border-left: 4px solid var(--dorado);
  transition: transform .2s, box-shadow .2s;
}
.pcl-stat-card:hover { transform: translateY(-2px); box-shadow: var(--sombra2); }
.pcl-stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: 44px; font-weight: 700; color: var(--marino); line-height: 1; margin-bottom: 6px; }
.pcl-stat-lbl { font-size: 12px; color: var(--texto2); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 600; }

/* Cards */
.pcl-card {
  background: var(--blanco); border-radius: var(--radio);
  box-shadow: var(--sombra); padding: 28px 32px; margin-bottom: 24px;
}
.pcl-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; font-weight: 600; color: var(--marino);
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--borde);
}
.pcl-empty { text-align: center; padding: 36px; color: var(--texto2); font-size: 14px; font-style: italic; }

/* Estados */
.pcl-estado {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .3px;
}
.pcl-e-verde    { background: var(--verde-bg);    color: var(--verde); }
.pcl-e-naranja  { background: #fff3e0;             color: #e67e22; }
.pcl-e-amarillo { background: var(--amarillo-bg); color: var(--amarillo); }
.pcl-e-gris     { background: var(--gris-bg);     color: var(--gris); }
.pcl-e-azul     { background: var(--azul-bg);     color: var(--azul); }
.pcl-e-rojo     { background: var(--rojo-bg);     color: var(--rojo); }

/* Botones */
.pcl-btn { display: inline-block; padding: 9px 18px; border-radius: 7px; font-size: 13px; font-weight: 700; font-family: inherit; text-decoration: none; cursor: pointer; border: none; transition: all .2s; }
.pcl-btn-sm     { background: var(--marino); color: #fff; }
.pcl-btn-sm:hover { background: var(--marino2); color: #fff; }
.pcl-btn-outline { background: transparent; color: var(--marino); border: 1.5px solid var(--marino); }
.pcl-btn-outline:hover { background: var(--marino); color: #fff; }

/* Casos grid */
.pcl-casos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 16px; }
.pcl-caso-card {
  background: #f8fafc; border: 1.5px solid var(--borde); border-radius: 10px; padding: 20px;
  transition: all .2s; display: flex; flex-direction: column; gap: 10px;
}
.pcl-caso-card:hover { border-color: var(--marino); box-shadow: var(--sombra2); transform: translateY(-2px); }
.pcl-caso-top { display: flex; justify-content: space-between; align-items: center; }
.pcl-caso-num { font-size: 11px; font-weight: 700; color: var(--texto2); text-transform: uppercase; letter-spacing: .8px; }
.pcl-caso-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 16px; font-weight: 600; color: var(--marino); line-height: 1.3; }
.pcl-caso-card > p { font-size: 13px; color: var(--texto2); line-height: 1.5; }
.pcl-audiencia { font-size: 12px; color: var(--amarillo); background: var(--amarillo-bg); padding: 6px 10px; border-radius: 6px; font-weight: 500; }
.pcl-admin-tag { font-size: 12px; color: var(--texto2); padding: 4px 8px; background: var(--bg2); border-radius: 5px; }

/* Notificaciones */
.pcl-notif-list { display: flex; flex-direction: column; gap: 10px; }
.pcl-notif-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
  border-radius: 10px; background: #f8fafc; border: 1px solid var(--borde);
  transition: border-color .2s;
}
.pcl-notif-item:hover { border-color: var(--marino); }
.pcl-notif-new { background: #fffbf0; border-color: rgba(201,168,76,.4); border-left: 4px solid var(--dorado); }
.pcl-notif-icon { font-size: 24px; flex-shrink: 0; margin-top: 1px; }
.pcl-notif-body { flex: 1; min-width: 0; }
.pcl-notif-body strong { display: block; font-size: 15px; color: var(--marino); margin-bottom: 5px; font-weight: 600; }
.pcl-notif-body p { font-size: 14px; color: var(--texto2); line-height: 1.55; margin-bottom: 6px; }
.pcl-notif-body time { font-size: 11px; color: #aaa; }

/* Archivos */
.pcl-file-list { display: flex; flex-direction: column; gap: 10px; }
.pcl-file-item {
  display: flex; align-items: center; gap: 16px; padding: 16px 18px;
  border: 1px solid var(--borde); border-radius: 10px; background: #f8fafc; transition: all .2s;
}
.pcl-file-item:hover { border-color: var(--marino); background: #fff; }
.pcl-file-ico { font-size: 30px; flex-shrink: 0; }
.pcl-file-info { flex: 1; min-width: 0; }
.pcl-file-info strong { display: block; font-size: 14px; color: var(--marino); margin-bottom: 3px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pcl-file-info p  { font-size: 13px; color: var(--texto2); margin-bottom: 3px; }
.pcl-file-info small { font-size: 11px; color: #aaa; }

/* Timeline */
.pcl-timeline { position: relative; padding-left: 28px; }
.pcl-timeline::before { content:''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--borde); }
.pcl-tl-item { position: relative; margin-bottom: 26px; }
.pcl-tl-dot { position: absolute; left: -22px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--dorado); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--dorado); }
.pcl-tl-head { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 6px; margin-bottom: 7px; }
.pcl-tl-head strong { font-size: 15px; color: var(--marino); font-weight: 600; }
.pcl-tl-head time { font-size: 11px; color: #aaa; background: var(--bg2); padding: 3px 10px; border-radius: 20px; }
.pcl-tl-content p { font-size: 14px; color: var(--texto); line-height: 1.65; margin-bottom: 5px; }
.pcl-tl-content small { font-size: 12px; color: #aaa; }

/* Info grid */
.pcl-info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 16px 24px; margin-bottom: 18px; }
.pcl-info-item { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pcl-info-item--wide { grid-column: span 2; }
.pcl-info-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--texto2); }
.pcl-info-item span:not(.pcl-info-lbl):not(.pcl-estado) { font-size: 15px; color: var(--marino); font-weight: 500; overflow-wrap: break-word; word-break: break-word; }

.pcl-desc-box { background: var(--bg); border-radius: 8px; padding: 16px 20px; margin-top: 8px; }
.pcl-desc-box p { font-size: 14px; color: var(--texto); line-height: 1.7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .pcl-inner { padding: 28px 28px 40px; }
}

@media (max-width: 960px) {
  .pcl-login-left { padding: 44px 36px; }
  .pcl-login-right { width: 440px; padding: 40px 28px; }
}

@media (max-width: 860px) {
  /* LOGIN: columna única */
  .pcl-login-page { flex-direction: column; }
  .pcl-login-left { min-height: auto; padding: 40px 28px 32px; }
  .pcl-login-left h1 { font-size: 28px; }
  .pcl-login-right { width: 100%; padding: 36px 20px 56px; }
  .pcl-login-card { padding: 36px 28px; }

  /* APP: sidebar se oculta */
  .pcl-sidebar { transform: translateX(-100%); box-shadow: 4px 0 24px rgba(0,0,0,.3); }
  .pcl-sidebar.open { transform: translateX(0); }
  .pcl-main { margin-left: 0; }
  .pcl-topbar { display: flex; }
  .pcl-inner { padding: 20px 20px 36px; }
  .pcl-stat-num { font-size: 34px; }
}

@media (max-width: 600px) {
  /* Login móvil */
  .pcl-login-left { display: none; }
  .pcl-login-right { min-height: 100vh; align-items: flex-start; padding: 40px 20px; }
  .pcl-login-card { box-shadow: none; background: transparent; border-top: none; padding: 0; }

  .pcl-stats-row { gap: 10px; }
  .pcl-stat-card { padding: 16px 12px; }
  .pcl-stat-num { font-size: 28px; }
  .pcl-stat-lbl { font-size: 10px; }

  .pcl-card { padding: 18px 16px; }
  .pcl-casos-grid { grid-template-columns: 1fr; }
  .pcl-info-grid { grid-template-columns: 1fr 1fr; }
  .pcl-file-item { flex-wrap: wrap; }
  .pcl-file-item .pcl-btn-sm { width: 100%; text-align: center; margin-top: 6px; }
  .pcl-notif-item { flex-wrap: wrap; }
  .pcl-tl-head { flex-direction: column; }
  .pcl-page-header h1 { font-size: 22px; }
}

/* ════════════════════════════════════════════════════════════
   CHECKLIST DE PROCEDIMIENTO
   ════════════════════════════════════════════════════════════ */
.pcl-checklist-card { margin-top: 24px; }

.pcl-semaforo-leyenda {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.pcl-sem-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,.08);
}
.pcl-sem-badge.pcl-sem-pendiente { background:#f5f5f5; color:#666; }
.pcl-sem-badge.pcl-sem-radicado  { background:#e8f8f0; color:#1a7a45; }

/* Checklist Sí/No toggle en portales */
.pcl-paso-semaforo { display:flex; gap:6px; }
.pcl-paso-semaforo button {
  padding:5px 14px; border:1.5px solid #dde3ef; border-radius:20px;
  background:#f5f5f5; color:#666; font-size:13px; cursor:pointer;
  font-family:inherit; transition:all .15s;
}
.pcl-paso-semaforo button.active,
.pcl-paso-semaforo button[data-estado="radicado"].active {
  background:#e8f8f0; color:#1a7a45; border-color:#27ae60; font-weight:700;
}

.pcl-checklist-proceso {
  margin-bottom: 32px;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  overflow: hidden;
}
.pcl-checklist-proceso-titulo {
  background: #011b48;
  color: #c9a84c;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .4px;
  padding: 12px 20px;
}
.pcl-checklist-pasos { padding: 8px 0; }

.pcl-paso {
  padding: 10px 20px;
  border-bottom: 1px solid #f0f4f8;
  transition: background .15s;
}
.pcl-paso:last-child { border-bottom: none; }
.pcl-paso-sub { padding-left: 36px; background: #fafbfc; }

/* Borde lateral por estado */
.pcl-paso-estado-pendiente   { border-left: 3px solid #ddd; }
.pcl-paso-estado-recoleccion { border-left: 3px solid #e74c3c; background: #fffafa; }
.pcl-paso-estado-revision    { border-left: 3px solid #e67e22; background: #fffdf7; }
.pcl-paso-estado-radicado    { border-left: 3px solid #27ae60; background: #f7fff9; }

.pcl-paso-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pcl-paso-txt {
  flex: 1;
  font-size: 13.5px;
  color: #2c3e50;
  min-width: 180px;
}
.pcl-paso-doc-badge {
  font-size: 11px;
  color: #7f8c8d;
  background: #f0f4f8;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}
.pcl-paso-semaforo {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.pcl-sem-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  transition: transform .1s, border-color .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.pcl-sem-btn:hover  { transform: scale(1.2); }
.pcl-sem-btn.active { border-color: #011b48; background: rgba(1,27,72,.06); transform: scale(1.15); }

/* Uploader inline */
.pcl-paso-uploader {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 14px;
  background: #f4f7fb;
  border-radius: 8px;
  border: 1px dashed #c9a84c;
}
.pcl-uploader-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.pcl-file-input { display: none; }
.pcl-uploader-btn {
  background: #011b48;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s;
}
.pcl-uploader-label:hover .pcl-uploader-btn { background: #c9a84c; }
.pcl-file-name {
  font-size: 12px;
  color: #6b7a99;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pcl-file-desc {
  border: 1px solid #dde3ed;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  color: #333;
  flex: 1;
  min-width: 120px;
  outline: none;
}
.pcl-file-desc:focus { border-color: #c9a84c; }
.pcl-subir-btn {
  background: #c9a84c;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.pcl-subir-btn:hover    { background: #b8963e; }
.pcl-subir-btn:disabled { opacity: .6; cursor: default; }
.pcl-subir-msg { font-size: 12px; font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   RECUPERACIÓN DE CONTRASEÑA — paneles login
   ════════════════════════════════════════════════════════════ */
#pcl-panel-recuperar .pcl-btn-login {
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   AVISO LEGAL — prohibiciones proceso insolvencia
   ════════════════════════════════════════════════════════════ */
.pcl-aviso-legal {
  display: flex;
  gap: 16px;
  background: linear-gradient(135deg, #fff8e6 0%, #fff3d6 100%);
  border: 2px solid #e8a020;
  border-left: 5px solid #d4810a;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.pcl-aviso-icono {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.pcl-aviso-contenido strong:first-child {
  display: block;
  font-size: 15px;
  color: #7a3e00;
  margin-bottom: 8px;
}
.pcl-aviso-contenido p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #5a3800;
  line-height: 1.5;
}
.pcl-aviso-contenido ul {
  margin: 0 0 8px 0;
  padding-left: 0;
  list-style: none;
}
.pcl-aviso-contenido ul li {
  font-size: 13px;
  color: #5a3800;
  padding: 5px 0;
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════
   BARRA PROGRESO CLIENTE — dashboard
   ════════════════════════════════════════════════════════════ */
.pcl-progreso-cliente {
  background: #fff;
  border: 1px solid #e4e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(1,27,72,.05);
}
.pcl-progreso-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.pcl-progreso-titulo {
  font-size: 14px;
  font-weight: 600;
  color: #011b48;
}
.pcl-progreso-pct {
  font-size: 22px;
  font-weight: 700;
  color: #1a7a45;
}
.pcl-progreso-barra-wrap {
  background: #e8ecf4;
  border-radius: 8px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}
.pcl-progreso-barra-fill {
  height: 100%;
  background: linear-gradient(90deg, #1a7a45, #27ae60);
  border-radius: 8px;
  transition: width .6s ease;
  min-width: 4px;
}
.pcl-progreso-detalle {
  margin: 0;
  font-size: 12px;
  color: #8a96aa;
}
