@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600&display=swap');

body {
    margin: 0;
    margin-top: 110px;
}

.admisiones {
  background-image: url('../img/inscripcion.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* ← Esta línea crea el efecto parallax */
  position: relative;
  padding: 60px 20px;
  font-family: 'Baloo 2', cursive;
  color: white;
}

.admisiones-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* sombreado para leer el texto mejor */
  padding: 40px;
  border-radius: 20px;
  max-width: 800px;
  margin: auto;
}

.admisiones h1 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 10px;
  color: #ffeb3b;
}

.admisiones .ciclo {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.requisitos {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 15px;
  color: #333;
}

.requisitos h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #4a148c;
}

.requisitos ul {
  list-style-type: '⭐ ';
  padding-left: 20px;
  font-size: 1.2rem;
}

.requisitos li {
  margin-bottom: 10px;
}

/*--- Responsivo --*/
@media (max-width: 768px) {
    body {        
        margin-top: 20px;
    }
    .admisiones {
        background-image: url('../img/inscripciones.webp');
        background-attachment: fixed; /* ← Esta línea crea el efecto parallax */
        /*background-attachment: scroll; /* Evita errores en móviles */
    }
  }
