/* =========================
   RESET Y CONFIGURACIÓN
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

.colegios-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 1em;
}

/* =========================
   HERO COLEGIOS (ESTILO NEÓN ROSA/AZUL)
========================== */
.hero-colegios {
  margin-top: 0;
  padding: 4em 1em 5em;
  text-align: center;
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.titulo-hero-colegios {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.titulo-rosa-hero {
  color: #ff66ff;
  font-family: 'Special Elite', cursive;
  font-size: 3.8em;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: bold;
  text-shadow: 
    0 0 10px #ff66ff,
    0 0 20px #ff66ff,
    0 0 30px #ff66ff,
    0 0 40px #ff00ff,
    0 0 70px #ff00ff,
    0 0 80px #ff00ff,
    0 0 100px #ff00ff,
    0 0 150px #ff00ff;
  margin-bottom: 5px;
  animation: neonRosa 1.5s ease-in-out infinite alternate;
}

@keyframes neonRosa {
  from {
    text-shadow: 
      0 0 10px #ff66ff,
      0 0 20px #ff66ff,
      0 0 30px #ff66ff,
      0 0 40px #ff00ff,
      0 0 70px #ff00ff,
      0 0 80px #ff00ff;
  }
  to {
    text-shadow: 
      0 0 5px #ff66ff,
      0 0 10px #ff66ff,
      0 0 15px #ff66ff,
      0 0 20px #ff00ff,
      0 0 35px #ff00ff,
      0 0 40px #ff00ff,
      0 0 50px #ff00ff,
      0 0 75px #ff00ff;
  }
}

.titulo-azul-hero {
  color: #66ffff;
  font-family: 'Special Elite', cursive;
  font-size: 3.8em;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: bold;
  text-shadow: 
    0 0 10px #66ffff,
    0 0 20px #66ffff,
    0 0 30px #66ffff,
    0 0 40px #00ffff,
    0 0 70px #00ffff,
    0 0 80px #00ffff,
    0 0 100px #00ffff,
    0 0 150px #00ffff;
  margin-bottom: 15px;
  animation: neonAzul 1.5s ease-in-out infinite alternate;
}

@keyframes neonAzul {
  from {
    text-shadow: 
      0 0 10px #66ffff,
      0 0 20px #66ffff,
      0 0 30px #66ffff,
      0 0 40px #00ffff,
      0 0 70px #00ffff,
      0 0 80px #00ffff;
  }
  to {
    text-shadow: 
      0 0 5px #66ffff,
      0 0 10px #66ffff,
      0 0 15px #66ffff,
      0 0 20px #00ffff,
      0 0 35px #00ffff,
      0 0 40px #00ffff,
      0 0 50px #00ffff,
      0 0 75px #00ffff;
  }
}

.subtitulo-hero-colegios {
  color: #4B0082;
  font-size: 2em;
  font-style: italic;
  font-weight: bold;
  text-shadow: 
    0 0 10px #4B0082,
    0 0 20px #4B0082,
    0 0 30px #9933ff;
  font-family: 'Rouge Script', cursive;
  margin-top: 10px;
  animation: brilloIndigo 2s ease-in-out infinite alternate;
}

@keyframes brilloIndigo {
  from {
    text-shadow: 
      0 0 10px #4B0082,
      0 0 20px #4B0082,
      0 0 30px #9933ff;
  }
  to {
    text-shadow: 
      0 0 20px #4B0082,
      0 0 30px #4B0082,
      0 0 40px #9933ff,
      0 0 50px #9933ff;
  }
}

/* =========================
   SECCIÓN QUÉ ES QUE NI PINTAO (ESTILO UNIFICADO)
========================== */
.seccion-que-es {
  margin: 3em 0;
  padding: 0 1em;
}

.que-es-contenido {
  display: flex;
  align-items: flex-start;
  gap: 3em;
  flex-wrap: wrap;
}

.texto-que-es {
  flex: 1;
  min-width: 300px;
}

.imagen-que-es {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.imagen-que-es img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* =========================
   BLOQUE DE TEXTO ESTÁNDAR (PARA TODAS LAS TARJETAS)
========================== */
.bloque-texto {
  margin-bottom: 2.5em;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.8em;
  border-radius: 10px;
  border-left: 4px solid #a7e1fc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bloque-texto:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.bloque-texto:last-child {
  margin-bottom: 0;
}

.bloque-texto h3 {
  font-family: 'Special Elite', cursive;
  font-size: 1.6em;
  color: #a7e1fc;
  margin-bottom: 0.8em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bloque-texto p {
  font-size: 1.15em;
  line-height: 1.7;
  color: #ccc;
}

.bloque-texto strong {
  color: #ff00ff;
  font-weight: bold;
}

.nota-precio {
  margin-top: 1em;
  padding: 0.8em;
  background: rgba(255, 0, 255, 0.1);
  border-radius: 5px;
  color: #ff00ff;
  font-style: italic;
  font-weight: bold;
  border-left: 3px solid #ff00ff;
}

/* =========================
   SECCIÓN IMAGEN IZQUIERDA + 3 TARJETAS DERECHA
========================== */
.seccion-imagen-tarjetas {
  margin: 4em 0;
  padding: 0 1em;
}

.contenedor-imagen-tarjetas {
  display: flex;
  gap: 3em;
  flex-wrap: wrap;
}

.columna-imagen-izquierda {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: flex-start;
}

.imagen-izquierda {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.columna-tarjetas-derecha {
  flex: 1.5;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

/* Ajuste específico para las tarjetas de la derecha */
.columna-tarjetas-derecha .bloque-texto {
  margin-bottom: 0;
}

/* =========================
   SECCIÓN PRECIOS SIMPLIFICADA
========================== */
.seccion-precios-simple {
  margin: 4em 0;
  padding: 0 1em;
  text-align: center;
}

.seccion-precios-simple h2 {
  font-family: 'Special Elite', cursive;
  font-size: 2.2em;
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5em;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.precio-simple-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  padding: 2.5em;
  border: 2px solid #00e6e6;
  box-shadow: 0 0 30px rgba(0, 230, 230, 0.2);
}

.precio-simple-destacado {
  margin-bottom: 2em;
}

.precio-numero {
  font-family: 'Special Elite', cursive;
  font-size: 4.5em;
  color: #ff66ff;
  font-weight: bold;
  text-shadow: 
    0 0 10px rgba(255, 102, 255, 0.5),
    0 0 20px rgba(255, 102, 255, 0.3);
  line-height: 1;
  margin-bottom: 0.2em;
}

.precio-texto {
  font-size: 1.5em;
  color: #66ffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detalles-precio {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-bottom: 2em;
}

.duracion-item,
.grupo-item,
.material-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2em;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.duracion-item:hover,
.grupo-item:hover,
.material-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.icono {
  font-size: 1.8em;
}

.texto {
  font-size: 1.3em;
  color: #fff;
}

.texto strong {
  color: #ff66ff;
  font-weight: bold;
}

.nota-precio-simple {
  font-size: 1.2em;
  color: #66ffff;
  background: rgba(102, 255, 255, 0.1);
  padding: 1em;
  border-radius: 8px;
  font-style: italic;
  border-left: 4px solid #66ffff;
}

/* =========================
   SECCIÓN PRECIOS Y RESERVA SIMPLIFICADA
========================== */
.seccion-precios-reserva {
  margin: 4em 0;
  padding: 0 1em;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2.5em;
}

.seccion-precios-reserva h2 {
  font-family: 'Special Elite', cursive;
  font-size: 2.2em;
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5em;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.contenido-precios {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.precio-destacado {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 0.5em;
}

.precio {
  font-size: 2em;
  font-weight: bold;
  color: #00ff88;
  margin-left: 0.3em;
}

.nota-transporte {
  font-size: 1em;
  color: #aaa;
  font-style: italic;
  margin-bottom: 2.5em;
}

/* BOTÓN DE RESERVA */
.boton-reserva-container {
  margin: 2.5em 0;
}

.btn-reserva {
  display: inline-block;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000;
  padding: 1.2em 3em;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.3em;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-reserva:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
  background: linear-gradient(135deg, #00cc6a, #00ff88);
}

.texto-contacto {
  font-size: 1.2em;
  color: #ddd;
  margin: 2em 0 1em;
}

.contacto-simple {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5em;
  border-radius: 10px;
  display: inline-block;
  margin-top: 1em;
}

.contacto-simple p {
  font-size: 1.1em;
  margin-bottom: 0.8em;
  color: #fff;
}

.contacto-simple p:last-child {
  margin-bottom: 0;
}

/* =========================
   PRE-FOOTER INFORMATIVO
========================== */
.prefooter {
  background: #111;
  padding: 3em 8%;
  font-size: 1em;
  color: #ddd;
  margin-top: 4em;
}

.prefooter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2em;
}

.prefooter-col h3 {
  font-family: 'Klee One', cursive;
  font-size: 1.4em;
  margin-bottom: 0.6em;
  color: #fff;
}

.prefooter-col p,
.prefooter-col li {
  margin-bottom: 0.4em;
  line-height: 1.4;
  color: #ccc;
}

.prefooter-col ul {
  list-style: none;
  padding: 0;
}

.prefooter-icons {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.prefooter-icons .social-link {
  color: #fff;
  font-size: 0.95em;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.prefooter-icons .social-link:hover {
  color: #aa00aa;
}

/* Eliminar subrayado de TODOS los enlaces en prefooter */
.prefooter a {
  text-decoration: none !important;
}

/* =========================
   FOOTER
========================== */
footer {
  background: #000;
  text-align: center;
  padding: 1.2em 1em;
  color: #aaa;
  font-size: 0.9em;
  border-top: 1px solid #222;
}

footer p {
  margin: 0;
}

/* Asegurar que no haya subrayados en el footer */
footer a {
  text-decoration: none;
}

/* =========================
   ESTILOS PARA ENLACE ACTIVO EN MENÚ
========================== */
.top-bar a.active {
  color: #b300ff;
  font-weight: bold;
}

.top-bar a.active::after {
  background: #b300ff;
  width: 100%;
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 900px) {
  .que-es-contenido,
  .contenedor-imagen-tarjetas {
    flex-direction: column;
  }

  .imagen-que-es,
  .columna-imagen-izquierda {
    max-width: 100%;
  }

  .columna-imagen-izquierda {
    order: 1;
  }

  .columna-tarjetas-derecha {
    order: 2;
  }

  .prefooter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
  }
}

@media (max-width: 768px) {
  .titulo-rosa-hero,
  .titulo-azul-hero {
    font-size: 2.8em;
  }
  
  .subtitulo-hero-colegios {
    font-size: 1.5em;
  }

  .seccion-precios-simple h2,
  .seccion-precios-reserva h2 {
    font-size: 1.8em;
  }

  .bloque-texto h3 {
    font-size: 1.4em;
  }

  .bloque-texto p {
    font-size: 1.1em;
  }

  .bloque-texto {
    padding: 1.5em;
  }

  .precio-numero {
    font-size: 3.5em;
  }
  
  .precio-texto {
    font-size: 1.3em;
  }
  
  .texto {
    font-size: 1.1em;
  }
  
  .duracion-item,
  .grupo-item,
  .material-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 1em;
  }
  
  .icono {
    font-size: 1.5em;
  }

  .btn-reserva {
    padding: 1em 2em;
    font-size: 1.1em;
  }

  .prefooter {
    padding: 2em 5%;
  }

  .prefooter-col h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .titulo-rosa-hero,
  .titulo-azul-hero {
    font-size: 2.2em;
  }

  .subtitulo-hero-colegios {
    font-size: 1.2em;
  }

  .seccion-precios-simple,
  .seccion-precios-reserva {
    padding: 1.5em;
  }

  .bloque-texto {
    padding: 1.2em;
  }

  .precio-numero {
    font-size: 2.8em;
  }
  
  .precio-texto {
    font-size: 1.1em;
  }

  .seccion-precios-simple h2,
  .seccion-precios-reserva h2 {
    font-size: 1.8em;
  }

  .precio-simple-container {
    padding: 1.5em;
  }

  .btn-reserva {
    padding: 0.9em 1.8em;
    font-size: 1em;
    width: 100%;
  }

  .prefooter-grid {
    grid-template-columns: 1fr;
    gap: 1.2em;
  }

  footer {
    padding: 1em;
    font-size: 0.8em;
  }
}