/* --- ENLACE ACTIVO DEL MENÚ --- */
.header-nav a.activo {
  color: #FFD700; /* amarillo dorado */
  font-weight: bold;
  border-bottom:  2px solid #FFD700;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

/* --- ÍCONO DE CHECK EN LISTAS CON CLASE .con-icono --- */
li.con-icono {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
  list-style: none;
  font-size: 1rem;
  line-height: 1.5;
}

li.con-icono::before {
  content: '✔'; /* Check */
  position: absolute;
  left: 0;
  color: #1b5e20; /* Verde oscuro */
  font-weight: bold;
  font-size: 1rem;
}
