/* ============================================================ ENCABEZADO RESULTADOS */
.resultados-encabezado {
  margin-bottom: 14px
}

.resultados-encabezado h2,
.panel-modulo-header h2 {
  margin: 0;
  color: var(--title);
  font-size: 24px;
  line-height: 1.1
}

/* ============================================================ PANEL MÓDULO */
.panel-modulo {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(164, 132, 102, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden
}

.panel-modulo-header {
  padding: 20px 20px 10px
}

.panel-modulo-header p {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.35
}

.panel-modulo-body {
  padding: 0 20px 20px
}

.contenedor-ver-mas {
  display: flex;
  justify-content: center;
  margin-top: 16px
}

/* ============================================================ NOTIFICACIONES */
.notificaciones {
  position: fixed;
  top: 90px;
  right: 18px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none
}

.notificacion {
  min-width: 220px;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .25s, transform .25s
}

.notificacion.ocultar {
  opacity: 0;
  transform: translateY(-8px)
}

.notificacion.exito {
  background: linear-gradient(135deg, var(--green), var(--green-2))
}

.notificacion.error {
  background: linear-gradient(135deg, var(--danger), var(--danger-2))
}

.notificacion.aviso {
  background: linear-gradient(135deg, var(--primary-soft), var(--primary))
}
