:root {
  /* Paleta institucional real de INFOTEP (tomada de infotep.gob.do) */
  --primario: #002f87;
  --primario-oscuro: #001c54;
  --primario-claro: #1e56c7;
  --primario-soft: #e7edf8;
  --dorado: #f2c322;
  --dorado-oscuro: #c99b0a;
  --acento: #c2410c;
  --fondo: #f4f6f9;
  --superficie: #ffffff;
  --texto: #1c2b3a;
  --texto-suave: #5c6b7a;
  --borde: #e1e6ec;
  --verde: #1a7f4b;
  --amarillo: #b8860b;
  --rojo: #b3261e;
  --radio: 12px;
  --sombra: 0 2px 10px rgba(0, 47, 135, 0.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--fondo);
  color: var(--texto);
}

a { color: inherit; }

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--primario);
  color: #fff;
  padding: 20px 16px;
  flex-shrink: 0;
}

.sidebar .marca {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.sidebar .submarca {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-bottom: 24px;
}

.sidebar nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #dbe6f2;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.sidebar nav a.activo, .sidebar nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.sidebar .salir {
  margin-top: 32px;
  font-size: 0.8rem;
  opacity: 0.8;
  cursor: pointer;
}

.sidebar-pie {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
.sidebar-pie strong { color: rgba(255, 255, 255, 0.75); font-weight: 600; }

@media (max-width: 860px) {
  .layout { flex-direction: column; min-height: auto; }
  .sidebar { width: 100%; padding: 14px 16px; flex-shrink: 1; }
  .sidebar .marca { font-size: 1rem; }
  .sidebar .submarca { margin-bottom: 12px; }
  .sidebar nav { display: flex; overflow-x: auto; gap: 6px; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .sidebar nav a { white-space: nowrap; margin-bottom: 0; }
  .sidebar .salir { margin-top: 10px; }
  .main { padding: 18px 16px; max-width: 100%; }
  .topbar-rica { flex-wrap: wrap; gap: 10px; }
  .topbar-buscar { order: 2; max-width: 100%; }
  .topbar-acciones { order: 1; margin-left: auto; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .grid-solicitudes-asesor { grid-template-columns: 1fr !important; }
}

.grid-solicitudes-asesor { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; align-items: start; }

.main {
  flex: 1;
  padding: 24px 32px;
  max-width: 1200px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.topbar h1 {
  font-size: 1.4rem;
  margin: 0;
}

.topbar-rica { gap: 20px; }
.topbar-buscar {
  flex: 1;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--superficie);
  border: 1px solid var(--borde);
  border-radius: 999px;
  padding: 9px 16px;
  box-shadow: var(--sombra);
}
.topbar-buscar input { border: none; outline: none; background: none; font-size: 0.85rem; width: 100%; font-family: inherit; color: var(--texto-suave); }
.topbar-acciones { display: flex; align-items: center; gap: 14px; flex: none; }
.campana {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--borde);
  background: var(--superficie);
  cursor: pointer;
  font-size: 1rem;
}
.campana .punto-rojo { position: absolute; top: 7px; right: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--rojo); border: 2px solid #fff; }

.saludo { font-size: 1.6rem; margin: 4px 0 2px; color: var(--texto); }
.saludo-sub { color: var(--texto-suave); margin: 0 0 22px; font-size: 0.92rem; }

.cta-oscura {
  background: linear-gradient(155deg, var(--primario-oscuro), var(--primario));
  color: #fff;
  border-radius: var(--radio);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.cta-oscura:hover { transform: translateY(-2px); }
.cta-oscura strong { display: block; font-size: 1rem; }
.cta-oscura span { font-size: 0.82rem; color: rgba(255,255,255,0.8); }

.usuario-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--superficie);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--sombra);
  font-size: 0.85rem;
}

.usuario-chip .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--acento);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.kpi {
  background: var(--superficie);
  border-radius: var(--radio);
  padding: 16px;
  box-shadow: var(--sombra);
}

.kpi .valor {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primario);
}

.kpi .etiqueta {
  font-size: 0.8rem;
  color: var(--texto-suave);
}

.card {
  background: var(--superficie);
  border-radius: var(--radio);
  padding: 20px;
  box-shadow: var(--sombra);
  margin-bottom: 20px;
}

.card h2 {
  font-size: 1.05rem;
  margin: 0 0 14px 0;
}

.lista-vacia {
  color: var(--texto-suave);
  font-size: 0.9rem;
  padding: 12px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

th, td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--borde);
}

th {
  color: var(--texto-suave);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge.verde { background: #e5f4ec; color: var(--verde); }
.badge.amarillo { background: #fbf1dd; color: var(--amarillo); }
.badge.rojo { background: #fbe9e8; color: var(--rojo); }
.badge.azul { background: #e4edf6; color: var(--primario); }
.badge.gris { background: #eceff2; color: var(--texto-suave); }

.btn {
  display: inline-block;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn.primario { background: var(--primario); color: #fff; }
.btn.acento { background: var(--acento); color: #fff; }
.btn.secundario { background: #eef2f6; color: var(--primario); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.progreso-track {
  background: var(--borde);
  border-radius: 999px;
  height: 8px;
  width: 100%;
  overflow: hidden;
}

.progreso-fill {
  background: var(--acento);
  height: 100%;
  border-radius: 999px;
  transition: width 0.4s ease;
}

.match-desglose {
  display: flex;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--texto-suave);
  margin-top: 4px;
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primario);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: var(--sombra);
  font-size: 0.85rem;
  max-width: 320px;
  z-index: 50;
}

.toast .canal { font-weight: 700; display: block; margin-bottom: 2px; }

/* ---- Landing ---- */
@keyframes flotar {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-14px, 18px); }
}

@keyframes entrar {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fondo);
  padding: 32px 16px;
}

.landing-marco {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 1fr);
  width: 100%;
  max-width: 1180px;
  min-height: min(760px, calc(100vh - 64px));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 47, 135, 0.14);
}

@media (max-width: 860px) {
  .landing { padding: 0; }
  .landing-marco { grid-template-columns: 1fr; border-radius: 0; box-shadow: none; min-height: 100vh; }
  .landing-marca { min-height: 260px; }
}

.landing-marca {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 195, 34, 0.16), transparent 40%),
    linear-gradient(155deg, var(--primario-oscuro), var(--primario) 60%, var(--primario-claro));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 40px;
}

.landing-marca::before,
.landing-marca::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  animation: flotar 14s ease-in-out infinite;
}

.landing-marca::before { width: 340px; height: 340px; top: -120px; right: -100px; }
.landing-marca::after { width: 220px; height: 220px; bottom: -80px; left: -60px; animation-delay: -6s; }

.landing-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.landing-logo img {
  height: 44px;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
}

.landing-marca .franja {
  width: 44px;
  height: 4px;
  background: var(--dorado);
  border-radius: 999px;
  margin: 22px 0 16px;
  position: relative;
  z-index: 1;
}

.landing-marca h1 {
  position: relative;
  z-index: 1;
  font-size: 2.1rem;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
}

.landing-marca p.sub {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  max-width: 34ch;
  margin: 0;
}

.landing-marca .pie-marca {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.landing-marca .pie-marca .punto {
  width: 6px; height: 6px; border-radius: 50%; background: var(--dorado);
}

.landing-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.landing-caja {
  width: 100%;
  max-width: 440px;
  animation: entrar 0.5s ease both;
}

.landing-caja > p.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dorado-oscuro);
  margin: 0 0 6px;
}

.landing-caja h2 {
  color: var(--primario);
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.landing-caja p.sub {
  color: var(--texto-suave);
  margin-bottom: 26px;
  font-size: 0.92rem;
}

.tarjeta-rol {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  padding: 14px 16px;
  margin-bottom: 12px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.tarjeta-rol::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--dorado);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.22s ease;
}

.tarjeta-rol:hover,
.tarjeta-rol:focus-visible {
  border-color: var(--primario-claro);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 47, 135, 0.14);
  outline: none;
}

.tarjeta-rol:hover::before,
.tarjeta-rol:focus-visible::before { transform: scaleY(1); }

.tarjeta-rol:active { transform: translateY(0); }

.tarjeta-rol .icono-rol {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--primario-soft, #e7edf8);
  color: var(--primario);
  transition: transform 0.22s ease;
}

.tarjeta-rol:hover .icono-rol { transform: scale(1.08) rotate(-4deg); }

.tarjeta-rol.tono-dorado .icono-rol { background: #fdf3d6; color: var(--dorado-oscuro); }
.tarjeta-rol.tono-verde .icono-rol { background: #e4f1e9; color: var(--verde); }

.tarjeta-rol strong { display: block; color: var(--primario); font-size: 0.98rem; }
.tarjeta-rol span { font-size: 0.8rem; color: var(--texto-suave); }
.tarjeta-rol .flecha {
  margin-left: auto;
  color: var(--texto-suave);
  transition: transform 0.18s ease, color 0.18s ease;
}
.tarjeta-rol:hover .flecha { transform: translateX(3px); color: var(--primario); }

.submenu-staff {
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  padding-left: 4px;
  border-left: 2px solid var(--borde);
  transition: max-height 0.28s ease, margin 0.28s ease;
}

.submenu-staff.abierto { max-height: 320px; margin: -2px 0 12px 21px; }

.submenu-staff button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 9px 10px;
  font-size: 0.85rem;
  color: var(--texto);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s ease, padding-left 0.15s ease, color 0.15s ease;
}

.submenu-staff button::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--borde);
  flex: none;
  transition: background 0.15s ease;
}

.submenu-staff button:hover {
  background: var(--primario-soft, #eef2f6);
  padding-left: 14px;
  color: var(--primario);
}

.submenu-staff button:hover::before { background: var(--dorado); }

.landing-sello {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--texto-suave);
}

.landing-sello .punto {
  width: 6px; height: 6px; border-radius: 50%; background: var(--verde);
  box-shadow: 0 0 0 3px rgba(26, 127, 75, 0.15);
}

/* ---- Galeria de capturas (integraciones) ---- */
.galeria-overlay {
  position: fixed; inset: 0;
  background: rgba(9, 20, 38, 0.72);
  display: flex; align-items: center; justify-content: center;
  z-index: 90;
  padding: 24px;
  animation: entrar 0.15s ease both;
}

.galeria-caja {
  background: var(--superficie);
  border-radius: 14px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.galeria-cabecera {
  background: var(--primario);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.galeria-cabecera strong { display: block; font-size: 0.95rem; }
.galeria-cabecera span { font-size: 0.75rem; color: rgba(255, 255, 255, 0.7); }
.galeria-cerrar { background: none; border: none; color: #fff; font-size: 1rem; cursor: pointer; opacity: 0.85; }
.galeria-cerrar:hover { opacity: 1; }

.galeria-cuerpo {
  position: relative;
  background: #0b1626;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  max-height: 65vh;
  overflow: hidden;
}

.galeria-img { max-width: 100%; max-height: 65vh; object-fit: contain; display: block; }

.galeria-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.galeria-nav:hover { background: rgba(255, 255, 255, 0.28); }
.galeria-prev { left: 12px; }
.galeria-next { right: 12px; }

.galeria-nota {
  margin: 0;
  padding: 12px 18px;
  font-size: 0.78rem;
  color: var(--texto-suave);
  border-top: 1px solid var(--borde);
}

.integracion-clickeable { cursor: pointer; transition: background 0.15s ease; border-radius: 8px; }
.integracion-clickeable:hover { background: var(--primario-soft); }
.integracion-clickeable .ver-capturas {
  font-size: 0.7rem;
  color: var(--primario-claro);
  font-weight: 600;
  margin-top: 2px;
}

/* ---- Modal de login (demo) ---- */
.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 20, 38, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  animation: entrar 0.15s ease both;
}

.login-overlay[hidden] { display: none; }

.login-caja {
  position: relative;
  background: var(--superficie);
  border-radius: 16px;
  padding: 30px 28px 22px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 60px rgba(0, 20, 60, 0.35);
}

.login-cerrar {
  position: absolute;
  top: 14px; right: 14px;
  background: none; border: none;
  color: var(--texto-suave);
  font-size: 0.95rem;
  cursor: pointer;
}

.login-marca {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.login-marca img { height: 28px; }
.login-marca span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--texto-suave);
  font-weight: 600;
}

.login-caja h3 { margin: 0 0 2px; color: var(--primario); font-size: 1.2rem; }
.login-sub { margin: 0 0 20px; color: var(--texto-suave); font-size: 0.86rem; }

#login-form label {
  display: block;
  font-size: 0.78rem;
  color: var(--texto-suave);
  font-weight: 600;
  margin-bottom: 12px;
}

#login-form input[type="email"],
#login-form input[type="password"] {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 10px 12px;
  border: 1px solid var(--borde);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--texto);
}
#login-form input:focus { outline: none; border-color: var(--primario-claro); box-shadow: 0 0 0 3px var(--primario-soft); }

.login-fila {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  margin-bottom: 18px;
}
.login-check { display: flex; align-items: center; gap: 6px; font-weight: 400; color: var(--texto); }
.login-fila a { color: var(--primario-claro); text-decoration: none; }

.login-entrar { width: 100%; padding: 11px; font-size: 0.92rem; }

.login-nota {
  text-align: center;
  font-size: 0.72rem;
  color: var(--texto-suave);
  margin: 14px 0 0;
}

/* ---- Asistente virtual ---- */
@keyframes rebotar {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.asistente-widget { position: fixed; bottom: 22px; right: 22px; z-index: 60; }

.asistente-burbuja {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(155deg, var(--primario-claro), var(--primario));
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 47, 135, 0.32);
  transition: transform 0.18s ease;
}

.asistente-burbuja:hover { transform: scale(1.06); }

.asistente-panel {
  position: absolute;
  bottom: 66px;
  right: 0;
  width: 320px;
  max-height: 440px;
  background: var(--superficie);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 47, 135, 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: entrar 0.2s ease both;
}

.asistente-panel[hidden] { display: none; }

.asistente-cabecera {
  background: var(--primario);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.asistente-cabecera strong { display: block; font-size: 0.92rem; }
.asistente-cabecera span { font-size: 0.72rem; color: rgba(255, 255, 255, 0.75); }
.asistente-cerrar { background: none; border: none; color: #fff; cursor: pointer; font-size: 0.9rem; opacity: 0.8; }
.asistente-cerrar:hover { opacity: 1; }

.asistente-mensajes {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 160px;
  max-height: 240px;
  background: var(--fondo);
}

.asistente-msg {
  max-width: 85%;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 0.83rem;
  line-height: 1.4;
}

.asistente-msg.bot { align-self: flex-start; background: #fff; border: 1px solid var(--borde); color: var(--texto); border-bottom-left-radius: 3px; }
.asistente-msg.usuario { align-self: flex-end; background: var(--primario); color: #fff; border-bottom-right-radius: 3px; }

.asistente-msg.escribiendo { display: flex; gap: 4px; align-items: center; padding: 12px; }
.asistente-msg.escribiendo span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--texto-suave);
  animation: rebotar 1.1s infinite ease-in-out;
}
.asistente-msg.escribiendo span:nth-child(2) { animation-delay: 0.15s; }
.asistente-msg.escribiendo span:nth-child(3) { animation-delay: 0.3s; }

.asistente-sugerencias {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 12px 10px;
  background: var(--fondo);
}

.chip-sugerida {
  border: 1px solid var(--borde);
  background: #fff;
  color: var(--primario);
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.chip-sugerida:hover { background: var(--primario-soft); border-color: var(--primario-claro); }

.asistente-form {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--borde);
  background: #fff;
}

.asistente-form input {
  flex: 1;
  border: 1px solid var(--borde);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.84rem;
  outline: none;
}
.asistente-form input:focus { border-color: var(--primario-claro); }

.asistente-form button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--dorado);
  color: var(--primario-oscuro);
  font-weight: 700;
  cursor: pointer;
  flex: none;
}

@media (max-width: 420px) {
  .asistente-panel { width: calc(100vw - 32px); right: -6px; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-marca::before, .landing-marca::after, .landing-caja { animation: none; }
  .tarjeta-rol, .tarjeta-rol .icono-rol, .tarjeta-rol .flecha { transition: none; }
  .asistente-msg.escribiendo span { animation: none; opacity: 0.7; }
}
