/* Font */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  background-color: #000;
  color: #fff;
}
.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  overflow: hidden;
  background: transparent;
}
.logo-container {
  margin-bottom: 30px;
  text-align: center;
}
.logo-container img {
  max-width: 240px;
  height: auto;
  display: inline-block;
  animation: fadeInDown 1s ease-out;
}
.left-section {
  position: relative;
  background-image: url("../images/principal.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);
}
.left-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 0;
}
.left-section > * {
  position: relative;
  z-index: 1;
}
.left-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #5fffd7;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  animation: fadeInDown 1s ease-out;
  text-align: center;
} /* Texto con neón blanco suave */
.intro-text,
.roles-text,
.closing-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 8px;
  max-width: 640px;
  text-align: center;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.7),
    0 0 6px rgba(255, 255, 255, 0.6), 1px 1px 3px rgba(0, 0, 0, 0.9);
}
.intro-text p,
.roles-text p,
.closing-text p {
  margin: 0 0 8px 0;
} /* Animaciones suaves */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.right-section {
  background: transparent;
  padding: 0;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.tiles {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  height: 100%;
  width: 100%;
  gap: 0;
} /* Base de cada botón */
.tile {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  color: white;
  font-size: 1.3rem;
  text-decoration: none;
  box-sizing: border-box;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);
  transition: transform 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
  will-change: transform, box-shadow;
  border-radius: 12px;
  overflow: hidden;
} /* Capa oscura para legibilidad del texto */
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 0;
  transition: background-color 0.25s ease;
}
.tile:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
} /* Hover: sólo escala, no pisa el box-shadow de color */
.tile:hover {
  transform: scale(1.02);
} /* Texto del botón */
.tile span {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);
} /* Colores únicos por botón + glow */
.tile[href="#locutor"] {
  border: 2px solid rgba(0, 153, 255, 0.7);
  box-shadow: 0 0 6px rgba(0, 153, 255, 0.7), 0 0 12px rgba(0, 153, 255, 0.5),
    0 0 18px rgba(0, 153, 255, 0.3);
}
.tile[href="#locutor"]:hover {
  box-shadow: 0 0 10px rgba(0, 153, 255, 0.9), 0 0 20px rgba(0, 153, 255, 0.7),
    0 0 30px rgba(0, 153, 255, 0.5);
}
.tile[href="#redactor"] {
  border: 2px solid rgba(0, 255, 153, 0.7);
  box-shadow: 0 0 6px rgba(0, 255, 153, 0.7), 0 0 12px rgba(0, 255, 153, 0.5),
    0 0 18px rgba(0, 255, 153, 0.3);
}
.tile[href="#redactor"]:hover {
  box-shadow: 0 0 10px rgba(0, 255, 153, 0.9), 0 0 20px rgba(0, 255, 153, 0.7),
    0 0 30px rgba(0, 255, 153, 0.5);
}
.tile[href="#editor"] {
  border: 2px solid rgba(153, 51, 255, 0.7);
  box-shadow: 0 0 6px rgba(153, 51, 255, 0.7), 0 0 12px rgba(153, 51, 255, 0.5),
    0 0 18px rgba(153, 51, 255, 0.3);
}
.tile[href="#editor"]:hover {
  box-shadow: 0 0 10px rgba(153, 51, 255, 0.9), 0 0 20px rgba(153, 51, 255, 0.7),
    0 0 30px rgba(153, 51, 255, 0.5);
}
.tile[href="#moderador"] {
  border: 2px solid rgba(255, 102, 204, 0.7);
  box-shadow: 0 0 6px rgba(255, 102, 204, 0.7),
    0 0 12px rgba(255, 102, 204, 0.5), 0 0 18px rgba(255, 102, 204, 0.3);
}
.tile[href="#moderador"]:hover {
  box-shadow: 0 0 10px rgba(255, 102, 204, 0.9),
    0 0 20px rgba(255, 102, 204, 0.7), 0 0 30px rgba(255, 102, 204, 0.5);
}
.tile[href="#administrador"] {
  border: 2px solid rgba(255, 51, 51, 0.7);
  box-shadow: 0 0 6px rgba(255, 51, 51, 0.7), 0 0 12px rgba(255, 51, 51, 0.5),
    0 0 18px rgba(255, 51, 51, 0.3);
}
.tile[href="#administrador"]:hover {
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.9), 0 0 20px rgba(255, 51, 51, 0.7),
    0 0 30px rgba(255, 51, 51, 0.5);
}
.tile[href="#promotor"] {
  border: 2px solid rgba(255, 221, 87, 0.7);
  box-shadow: 0 0 6px rgba(255, 221, 87, 0.7), 0 0 12px rgba(255, 221, 87, 0.5),
    0 0 18px rgba(255, 221, 87, 0.3);
}
.tile[href="#promotor"]:hover {
  box-shadow: 0 0 10px rgba(255, 221, 87, 0.9), 0 0 20px rgba(255, 221, 87, 0.7),
    0 0 30px rgba(255, 221, 87, 0.5);
}
.tile[href="#locutor"]:hover span {
  color: #0099ff;
}
.tile[href="#redactor"]:hover span {
  color: #00ff99;
}
.tile[href="#editor"]:hover span {
  color: #9933ff;
}
.tile[href="#moderador"]:hover span {
  color: #ff66cc;
}
.tile[href="#administrador"]:hover span {
  color: #ff3333;
}
.tile[href="#promotor"]:hover span {
  color: #ffdd57;
} /* Animación opcional */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
} /* Aplicar animación a cada .tile con delay escalonado */
.tile {
  animation: fadeInRight 0.8s ease forwards;
}
.tile:nth-child(1) {
  animation-delay: 0.2s;
}
.tile:nth-child(2) {
  animation-delay: 0.4s;
}
.tile:nth-child(3) {
  animation-delay: 0.6s;
}
.tile:nth-child(4) {
  animation-delay: 0.8s;
}
.tile:nth-child(5) {
  animation-delay: 1s;
}
.tile:nth-child(6) {
  animation-delay: 1.2s;
}
.volver-btn {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00c9a7, #007c91);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* sombra al texto */
}

.volver-btn:hover {
  background: linear-gradient(135deg, #007c91, #00c9a7);
  transform: translateX(-50%) scale(1.05);
}

.panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 60px 40px 40px;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
  z-index: -1;
  pointer-events: none;
}

.panel-content {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

.panel-content::-webkit-scrollbar {
  width: 8px;
}
.panel-content::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}
.panel-content::-webkit-scrollbar-track {
  background: transparent;
}

body.panel-activo {
  overflow: hidden;
}

.panel.activo {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
  pointer-events: auto;
  display: block;
}

.oculto {
  display: none;
}

.apartado-etico {
  background: transparent;
  border: none;
  padding: 0;
  margin: 32px 0;
}

.apartado-titulo {
  text-align: center;
  color: #00c3ff;
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.lista-etica {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 600px;
}

.lista-etica li {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 40px;
  padding: 12px 24px;
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 480px;

  box-shadow:
    0 0 0 2px rgba(0, 195, 255, 0.6),
    0 0 8px rgba(0, 195, 255, 0.5),
    0 0 16px rgba(255, 0, 204, 0.4),
    0 0 24px rgba(255, 0, 204, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lista-etica li:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 2px rgba(255, 0, 204, 0.7),
    0 0 12px rgba(255, 0, 204, 0.6),
    0 0 24px rgba(0, 195, 255, 0.5),
    0 0 32px rgba(0, 195, 255, 0.4);
}


.lista-etica .nota {
  display: block;
  margin-top: 4px;
  color: #aaa;
  font-style: italic;
  font-size: 0.85rem;
}

.lista-etica a {
  color: #00c3ff;
  text-decoration: underline;
}


.lista-etica li {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.lista-etica li.visible {
  opacity: 1;
  transform: translateY(0);
}

.lista-etica li.salir {
  opacity: 0;
  transform: translateY(-30px);
}

.boton-solicitud {
  display: block;
  margin: 16px auto;           /* centrado */
  background-color: #0099ff;
  color: white;
  border: none;
  padding: 12px 24px;          /* tamaño moderado */
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  width: fit-content;          /* se adapta al texto */
  box-shadow: 0 0 10px rgba(0, 153, 255, 0.6);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.boton-solicitud:hover {
  background-color: #007acc;
  transform: scale(1.03);
}

.nota-importante {
  max-width: 600px;
  margin: 0 auto 20px auto;
  text-align: center;
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.redactor {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  color: #e0e0e0;
}

.redactor h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #ff6600; /* ejemplo: color diferente para redactores */
}

#lista-requisitos {
  list-style: none;
  padding: 0;
  max-width: 650px;
  margin: 30px auto;
}

#lista-requisitos li {
  position: relative;
  background: #222;
  color: #eee; /* más claro para mejor contraste */
  margin: 12px 0;
  padding: 14px 18px 14px 40px;
  border-left: 4px solid #40e0d0;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* sombra suave para legibilidad */
}

/* Ícono decorativo */
#lista-requisitos li::before {
  content: "✦";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a2be2;
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Hover */
#lista-requisitos li:hover {
  background: linear-gradient(90deg, #6a0dad, #005f73);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 153, 102, 0.6);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Colores únicos por ítem */
#lista-requisitos li:nth-child(1) { border-left-color: #ff7f50; }
#lista-requisitos li:nth-child(2) { border-left-color: #ffd700; }
#lista-requisitos li:nth-child(3) { border-left-color: #40e0d0; }
#lista-requisitos li:nth-child(4) { border-left-color: #ff69b4; }
#lista-requisitos li:nth-child(5) { border-left-color: #9acd32; }
#lista-requisitos li:nth-child(6) { border-left-color: #6947ff; }

.solicitud-btn {
  background: linear-gradient(135deg, #00c9a7, #007c91);
  color: #ffffff;
  text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; /* simula un trazo negro */
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.solicitud-btn:hover {
  background: linear-gradient(135deg, #007c91, #00c9a7);
  transform: scale(1.05);
}

#copyright {
  font-size: 0.85rem;
  color: #ccc;
  text-align: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.bloque-legal {
  max-width: 650px;
  margin: 30px auto;
  padding: 14px 18px;
  background: #222;
  border-left: 4px solid #00bfff; /* azul eléctrico */
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.3);
}

.bloque-legal p {
  color: #eee;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

#lista-editores {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 40px auto;
}

#lista-editores li {
  position: relative;
  background: #1a1a1a;
  color: #f0f0f0;
  margin: 14px 0;
  padding: 18px 24px 18px 52px;
  border-left: 5px solid #00c9a7;
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.65;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Ícono flotante */
#lista-editores li::before {
  content: "🖌️";
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 1.2rem;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Hover con pulso digital */
#lista-editores li:hover {
  background: linear-gradient(90deg, #1f1f1f, #2c2c2c);
  border-left-color: #00ffd5;
  box-shadow: 0 0 12px rgba(0, 255, 213, 0.3);
  transform: scale(1.02);
}

/* Animación de entrada */
#lista-editores li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Colores únicos por ítem */
#lista-editores li:nth-child(1) { border-left-color: #ff6ec7; }
#lista-editores li:nth-child(2) { border-left-color: #00ffd5; }
#lista-editores li:nth-child(3) { border-left-color: #ffcc00; }
#lista-editores li:nth-child(4) { border-left-color: #7f00ff; }
#lista-editores li:nth-child(5) { border-left-color: #ff4500; }

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  #lista-editores li {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.editortexto1 {
  max-width: 720px;
  margin: 40px auto;
  padding: 26px 32px;
  background: #101010;
  border-left: 6px solid #a12eff; /* rosa vibrante */
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(206, 46, 255, 0.35);
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.editortexto1 p {
  color: #f2f2f2;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.editortexto1 strong {
  color: #00bfff; /* rosa claro para destacar la pregunta */
  font-size: 1.15rem;
}

/* Animación de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bloque-editorf {
  max-width: 650px;
  margin: 30px auto;
  padding: 14px 18px;
  background: #222;
  border-left: 4px solid #ff00dd; /* azul eléctrico */
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(255, 0, 119, 0.3);
}

.bloque-editorf p {
  color: #eee;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.modtexto1 {
  max-width: 720px;
  margin: 40px auto;
  padding: 26px 32px;
  background: #101010;
  border-left: 6px solid #ff2e6d; /* rosa vibrante */
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 46, 98, 0.35);
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.modtexto1 p {
  color: #f2f2f2;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.modtexto1 strong {
  color: #00bfff; /* rosa claro para destacar la pregunta */
  font-size: 1.15rem;
}

.admintexto1 {
  max-width: 720px;
  margin: 40px auto;
  padding: 26px 32px;
  background: #101010;
  border-left: 6px solid #ff7b2e; /* rosa vibrante */
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 112, 46, 0.35);
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.admintexto1 p {
  color: #f2f2f2;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.admintexto1 strong {
  color: #00bfff; /* rosa claro para destacar la pregunta */
  font-size: 1.15rem;
}

.promotexto1 {
  max-width: 720px;
  margin: 40px auto;
  padding: 26px 32px;
  background: #101010;
  border-left: 6px solid #ffc72e; /* rosa vibrante */
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 182, 46, 0.35);
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.promotexto1 p {
  color: #f2f2f2;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.promotexto1 strong {
  color: #00bfff; /* rosa claro para destacar la pregunta */
  font-size: 1.15rem;
}

#lista-moderadores {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 40px auto;
}

#lista-moderadores li {
  position: relative;
  background: #1a1a1a;
  color: #f0f0f0;
  margin: 14px 0;
  padding: 18px 24px 18px 52px;
  border-left: 5px solid #00c9a7;
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.65;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Ícono flotante */
#lista-moderadores li::before {
  content: "👮";
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 1.2rem;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Hover con pulso digital */
#lista-moderadores li:hover {
  background: linear-gradient(90deg, #1f1f1f, #2c2c2c);
  border-left-color: #00ffd5;
  box-shadow: 0 0 12px rgba(0, 255, 213, 0.3);
  transform: scale(1.02);
}

/* Animación de entrada */
#lista-moderadores li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Colores únicos por ítem */
#lista-moderadores li:nth-child(1) { border-left-color: #ff6ec7; }
#lista-moderadores li:nth-child(2) { border-left-color: #00ffd5; }
#lista-moderadores li:nth-child(3) { border-left-color: #ffcc00; }
#lista-moderadores li:nth-child(4) { border-left-color: #7f00ff; }
#lista-moderadores li:nth-child(5) { border-left-color: #ff4500; }

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  #lista-moderadores li {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

#lista-admins {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 40px auto;
}

#lista-admins li {
  position: relative;
  background: #1a1a1a;
  color: #f0f0f0;
  margin: 14px 0;
  padding: 18px 24px 18px 52px;
  border-left: 5px solid #00c9a7;
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.65;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Ícono flotante */
#lista-admins li::before {
  content: "🖌️";
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 1.2rem;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Hover con pulso digital */
#lista-admins li:hover {
  background: linear-gradient(90deg, #1f1f1f, #2c2c2c);
  border-left-color: #00ffd5;
  box-shadow: 0 0 12px rgba(0, 255, 213, 0.3);
  transform: scale(1.02);
}

/* Animación de entrada */
#lista-admins li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Colores únicos por ítem */
#lista-admins li:nth-child(1) { border-left-color: #ff6ec7; }
#lista-admins li:nth-child(2) { border-left-color: #00ffd5; }
#lista-admins li:nth-child(3) { border-left-color: #ffcc00; }
#lista-admins li:nth-child(4) { border-left-color: #7f00ff; }
#lista-admins li:nth-child(5) { border-left-color: #ff4500; }

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  #lista-admins li {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

#lista-promo {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 40px auto;
}

#lista-promo li {
  position: relative;
  background: #1a1a1a;
  color: #f0f0f0;
  margin: 14px 0;
  padding: 18px 24px 18px 52px;
  border-left: 5px solid #00c9a7;
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.65;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Ícono flotante */
#lista-promo li::before {
  content: "🖌️";
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 1.2rem;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Hover con pulso digital */
#lista-promo li:hover {
  background: linear-gradient(90deg, #1f1f1f, #2c2c2c);
  border-left-color: #00ffd5;
  box-shadow: 0 0 12px rgba(0, 255, 213, 0.3);
  transform: scale(1.02);
}

/* Animación de entrada */
#lista-promo li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Colores únicos por ítem */
#lista-promo li:nth-child(1) { border-left-color: #ff6ec7; }
#lista-promo li:nth-child(2) { border-left-color: #00ffd5; }
#lista-promo li:nth-child(3) { border-left-color: #ffcc00; }
#lista-promo li:nth-child(4) { border-left-color: #7f00ff; }
#lista-promo li:nth-child(5) { border-left-color: #ff4500; }

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  #lista-promo li {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

#lista-requisitosmod {
  list-style: none;
  padding: 0;
  max-width: 650px;
  margin: 30px auto;
}

#lista-requisitosmod li {
  position: relative;
  background: #222;
  color: #eee; /* más claro para mejor contraste */
  margin: 12px 0;
  padding: 14px 18px 14px 40px;
  border-left: 4px solid #40e0d0;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* sombra suave para legibilidad */
}

/* Ícono decorativo */
#lista-requisitosmod li::before {
  content: "✦";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a2be2;
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Hover */
#lista-requisitosmod li:hover {
  background: linear-gradient(90deg, #6a0dad, #005f73);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 153, 102, 0.6);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Colores únicos por ítem */
#lista-requisitosmod li:nth-child(1) { border-left-color: #ff7f50; }
#lista-requisitosmod li:nth-child(2) { border-left-color: #ffd700; }
#lista-requisitosmod li:nth-child(3) { border-left-color: #40e0d0; }
#lista-requisitosmod li:nth-child(4) { border-left-color: #ff69b4; }
#lista-requisitosmod li:nth-child(5) { border-left-color: #9acd32; }
#lista-requisitosmod li:nth-child(6) { border-left-color: #6947ff; }
#lista-requisitosmod li:nth-child(7) { border-left-color: #ff4747; }
#lista-requisitosmod li:nth-child(8) { border-left-color: #ffa947; }

#lista-requisitosadmin {
  list-style: none;
  padding: 0;
  max-width: 650px;
  margin: 30px auto;
}

#lista-requisitosadmin li {
  position: relative;
  background: #222;
  color: #eee; /* más claro para mejor contraste */
  margin: 12px 0;
  padding: 14px 18px 14px 40px;
  border-left: 4px solid #40e0d0;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* sombra suave para legibilidad */
}

/* Ícono decorativo */
#lista-requisitosadmin li::before {
  content: "✦";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a2be2;
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Hover */
#lista-requisitosadmin li:hover {
  background: linear-gradient(90deg, #6a0dad, #005f73);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 153, 102, 0.6);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Colores únicos por ítem */
#lista-requisitosadmin li:nth-child(1) { border-left-color: #ff7f50; }
#lista-requisitosadmin li:nth-child(2) { border-left-color: #ffd700; }
#lista-requisitosadmin li:nth-child(3) { border-left-color: #40e0d0; }
#lista-requisitosadmin li:nth-child(4) { border-left-color: #ff69b4; }
#lista-requisitosadmin li:nth-child(5) { border-left-color: #9acd32; }
#lista-requisitosadmin li:nth-child(6) { border-left-color: #6947ff; }

#lista-requisitospromo {
  list-style: none;
  padding: 0;
  max-width: 650px;
  margin: 30px auto;
}

#lista-requisitospromo li {
  position: relative;
  background: #222;
  color: #eee; /* más claro para mejor contraste */
  margin: 12px 0;
  padding: 14px 18px 14px 40px;
  border-left: 4px solid #40e0d0;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* sombra suave para legibilidad */
}

/* Ícono decorativo */
#lista-requisitospromo li::before {
  content: "✦";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a2be2;
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Hover */
#lista-requisitospromo li:hover {
  background: linear-gradient(90deg, #6a0dad, #005f73);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 153, 102, 0.6);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Colores únicos por ítem */
#lista-requisitospromo li:nth-child(1) { border-left-color: #ff7f50; }
#lista-requisitospromo li:nth-child(2) { border-left-color: #ffd700; }
#lista-requisitospromo li:nth-child(3) { border-left-color: #40e0d0; }
#lista-requisitospromo li:nth-child(4) { border-left-color: #ff69b4; }
#lista-requisitospromo li:nth-child(5) { border-left-color: #9acd32; }
#lista-requisitospromo li:nth-child(6) { border-left-color: #6947ff; }

#lista-requisitospromo1 {
  list-style: none;
  padding: 0;
  max-width: 650px;
  margin: 30px auto;
}

#lista-requisitospromo1 li {
  position: relative;
  background: #222;
  color: #eee; /* más claro para mejor contraste */
  margin: 12px 0;
  padding: 14px 18px 14px 40px;
  border-left: 4px solid #40e0d0;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* sombra suave para legibilidad */
}

/* Ícono decorativo */
#lista-requisitospromo1 li::before {
  content: "✦";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a2be2;
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Hover */
#lista-requisitospromo1 li:hover {
  background: linear-gradient(90deg, #6a0dad, #005f73);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 153, 102, 0.6);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Colores únicos por ítem */
#lista-requisitospromo1 li:nth-child(1) { border-left-color: #ff7f50; }
#lista-requisitospromo1 li:nth-child(2) { border-left-color: #ffd700; }
#lista-requisitospromo1 li:nth-child(3) { border-left-color: #40e0d0; }
#lista-requisitospromo1 li:nth-child(4) { border-left-color: #ff69b4; }
#lista-requisitospromo1 li:nth-child(5) { border-left-color: #9acd32; }
#lista-requisitospromo1 li:nth-child(6) { border-left-color: #6947ff; }

.bloque-modf {
  max-width: 650px;
  margin: 30px auto;
  padding: 14px 18px;
  background: #222;
  border-left: 4px solid #73ff00; /* azul eléctrico */
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(157, 255, 0, 0.3);
}

.bloque-modf p {
  color: #eee;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.bloque-adminf {
  max-width: 650px;
  margin: 30px auto;
  padding: 14px 18px;
  background: #222;
  border-left: 4px solid #ff0022; /* azul eléctrico */
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(255, 0, 55, 0.3);
}

.bloque-adminf p {
  color: #eee;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.bloque-promof {
  max-width: 650px;
  margin: 30px auto;
  padding: 14px 18px;
  background: #222;
  border-left: 4px solid #00ffc8; /* azul eléctrico */
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.3);
}

.bloque-promof p {
  color: #eee;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.bloque-promof2 {
  max-width: 650px;
  margin: 30px auto;
  padding: 14px 18px;
  background: #222;
  border-left: 4px solid #ff0000; /* azul eléctrico */
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
}

.bloque-promof2 p {
  color: #eee;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.bloque-mod1 {
  max-width: 650px;
  margin: 30px auto;
  padding: 14px 18px;
  background: #222;
  border-left: 4px solid #003cff; /* azul eléctrico */
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 174, 255, 0.3);
}

.bloque-mod1 p {
  color: #eee;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

#lista-locutores {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 40px auto;
}

#lista-locutores li {
  position: relative;
  background: #1a1a1a;
  color: #f0f0f0;
  margin: 14px 0;
  padding: 18px 24px 18px 52px;
  border-left: 5px solid #00c9a7;
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.65;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Ícono flotante */
#lista-locutores li::before {
  content: "🎙️";
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 1.2rem;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Hover con pulso digital */
#lista-locutores li:hover {
  background: linear-gradient(90deg, #1f1f1f, #2c2c2c);
  border-left-color: #00ffd5;
  box-shadow: 0 0 12px rgba(0, 255, 213, 0.3);
  transform: scale(1.02);
}

/* Animación de entrada */
#lista-locutores li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Colores únicos por ítem */
#lista-locutores li:nth-child(1) { border-left-color: #ff6ec7; }
#lista-locutores li:nth-child(2) { border-left-color: #00ffd5; }
#lista-locutores li:nth-child(3) { border-left-color: #ffcc00; }
#lista-locutores li:nth-child(4) { border-left-color: #7f00ff; }
#lista-locutores li:nth-child(5) { border-left-color: #ff4500; }

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  #lista-locutores li {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

#lista-requisitosloc {
  list-style: none;
  padding: 0;
  max-width: 650px;
  margin: 30px auto;
}

#lista-requisitosloc li {
  position: relative;
  background: #222;
  color: #eee; /* más claro para mejor contraste */
  margin: 12px 0;
  padding: 14px 18px 14px 40px;
  border-left: 4px solid #40e0d0;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* sombra suave para legibilidad */
}

/* Ícono decorativo */
#lista-requisitosloc li::before {
  content: "✦";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a2be2;
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Hover */
#lista-requisitosloc li:hover {
  background: linear-gradient(90deg, #6a0dad, #005f73);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 153, 102, 0.6);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Colores únicos por ítem */
#lista-requisitosloc li:nth-child(1) { border-left-color: #ff7f50; }
#lista-requisitosloc li:nth-child(2) { border-left-color: #ffd700; }
#lista-requisitosloc li:nth-child(3) { border-left-color: #40e0d0; }
#lista-requisitosloc li:nth-child(4) { border-left-color: #ff69b4; }
#lista-requisitosloc li:nth-child(5) { border-left-color: #9acd32; }
#lista-requisitosloc li:nth-child(6) { border-left-color: #6947ff; }
#lista-requisitosloc li:nth-child(7) { border-left-color: #ff4747; }
#lista-requisitosloc li:nth-child(8) { border-left-color: #ffa947; }

#lista-redactor {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 40px auto;
}

#lista-redactor li {
  position: relative;
  background: #1a1a1a;
  color: #f0f0f0;
  margin: 14px 0;
  padding: 18px 24px 18px 52px;
  border-left: 5px solid #00c9a7;
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.65;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Ícono flotante */
#lista-redactor li::before {
  content: "✍️";
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 1.2rem;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Hover con pulso digital */
#lista-redactor li:hover {
  background: linear-gradient(90deg, #1f1f1f, #2c2c2c);
  border-left-color: #00ffd5;
  box-shadow: 0 0 12px rgba(0, 255, 213, 0.3);
  transform: scale(1.02);
}

/* Animación de entrada */
#lista-redactor li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Colores únicos por ítem */
#lista-redactor li:nth-child(1) { border-left-color: #ff6ec7; }
#lista-redactor li:nth-child(2) { border-left-color: #00ffd5; }
#lista-redactor li:nth-child(3) { border-left-color: #ffcc00; }
#lista-redactor li:nth-child(4) { border-left-color: #7f00ff; }
#lista-redactor li:nth-child(5) { border-left-color: #ff4500; }
#lista-redactor li:nth-child(6) { border-left-color: #00ff6a; }

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  #lista-redactor li {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.loctexto1 {
  max-width: 720px;
  margin: 40px auto;
  padding: 26px 32px;
  background: #101010;
  border-left: 6px solid #2ee7ff; /* rosa vibrante */
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(46, 241, 255, 0.35);
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.loctexto1 p {
  color: #f2f2f2;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.loctexto1 strong {
  color: #00bfff; /* rosa claro para destacar la pregunta */
  font-size: 1.15rem;
}

.bloque-loc1 {
  max-width: 650px;
  margin: 30px auto;
  padding: 14px 18px;
  background: #222;
  border-left: 4px solid #ffe600; /* azul eléctrico */
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(255, 251, 0, 0.3);
}

.bloque-loc1 p {
  color: #eee;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.redtexto1 {
  max-width: 720px;
  margin: 40px auto;
  padding: 26px 32px;
  background: #101010;
  border-left: 6px solid #ff2e2e; /* rosa vibrante */
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 46, 46, 0.35);
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.redtexto1 p {
  color: #f2f2f2;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.redtexto1 strong {
  color: #00bfff; /* rosa claro para destacar la pregunta */
  font-size: 1.15rem;
}

.bloque-red {
  max-width: 650px;
  margin: 30px auto;
  padding: 14px 18px;
  background: #222;
  border-left: 4px solid #8c00ff; /* azul eléctrico */
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(255, 0, 119, 0.3);
}

.bloque-red p {
  color: #eee;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Ocultar por defecto */
.ver-mas-container {
  display: none;
}

/* Mostrar solo en móviles */
@media (max-width: 600px) {
  .ver-mas-container {
    display: block;
    text-align: center;
    margin-top: 30px;
  }

  .ver-mas-btn {
    background: linear-gradient(135deg, #00c9a7, #007c91);
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }

  .ver-mas-btn:hover {
    background: linear-gradient(135deg, #007c91, #00c9a7);
    transform: scale(1.05);
  }

  /* Panel derecho oculto inicialmente (solo móviles) */
  .right-section {
    position: fixed;        /* ocupa toda la pantalla */
    top: 0;
    right: 0;
    width: 100%;            /* ancho completo */
    height: 100%;
    background: #000;       /* fondo oscuro */
    transform: translateX(100%); /* oculto a la derecha */
    transition: transform 0.5s ease;
    z-index: 9999;          /* siempre al frente */
    opacity: 0;
    pointer-events: none;
  }

  /* Cuando se activa */
  .right-section.activo {
    transform: translateX(0); /* entra desde la derecha */
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 600px) {
  .right-section {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform: translateX(100%); /* oculto a la derecha */
    transition: transform 0.5s ease, opacity 0.5s ease; /* animación suave */
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
  }

  .right-section.activo {
    transform: translateX(0); /* entra desde la derecha */
    opacity: 1;
    pointer-events: auto;
  }
}
