/* Estilo general para todas las listas */
.flat-toggle2 ol,
.flat-toggle2 ul {
  margin: 15px 0 20px 25px;
  padding: 0;
  list-style-position: outside;
}

/* Listas ordenadas (numeradas) */
.flat-toggle2 ol {
  counter-reset: custom-counter;
}

.flat-toggle2 ol li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 14px;
  line-height: 1.5;
  color: #f4ba0c;
  list-style: none;
}

.flat-toggle2 ol li:before {
  counter-increment: custom-counter;
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(110, 72, 170, 0.2);
}

/* Listas no ordenadas (con viñetas) */
.flat-toggle2 ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #fff;
  font-size: 12px;
  list-style: none;
}

.flat-toggle2 ul li:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
  border-radius: 50%;
  transform: translateX(-50%);
}

/* Efecto hover para elementos de lista */
.flat-toggle2 ol li:hover,
.flat-toggle2 ul li:hover {
  color: #f4ba0c;
  font-size: 16px;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.flat-toggle2 ol li:hover:before {
  background: linear-gradient(135deg, #9d50bb 0%, #6e48aa 100%);
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* Estilo especial para enlaces en listas */
.flat-toggle2 ol li a,
.flat-toggle2 ul li a {
  color: #6e48aa;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed rgba(110, 72, 170, 0.3);
  transition: all 0.3s ease;
}

.flat-toggle2 ol li a:hover,
.flat-toggle2 ul li a:hover {
  color: #9d50bb;
  border-bottom: 1px solid rgba(157, 80, 187, 0.7);
}
