/* ============================= */
/*  NEUREKA KIDS - MAIN.CSS      */
/* ============================= */

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd); /* KIDS pastel */
  color: #fff;
  margin: 0;
  padding: 0;
}

/* ============================= */
/*  HERO HEADER                  */
/* ============================= */

.hero-header {
  position: relative;
  text-align: center;
  padding: 3rem 1rem 1.5rem;
  background: linear-gradient(135deg, #a78bfa, #c4b5fd); /* KIDS pastel */
}

.hero-logo img {
  max-width: 360px;
  height: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

.cta-login {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* ============================= */
/*  BOTONES KIDS                 */
/* ============================= */

.btn-neureka {
  background: linear-gradient(135deg, #FFE066, #FFD700);
  color: #000;
  font-weight: 900;
  border: none;
  border-radius: 1.4rem;
  padding: 0.65rem 1.6rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.btn-neureka:hover {
  transform: translateY(-2px) scale(1.06);
  background: linear-gradient(135deg, #FFF2A8, #FFD700);
}

/* ============================= */
/*  CONTENIDO PRINCIPAL         */
/* ============================= */

main {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  margin: 2.5rem auto;
  padding: 2.5rem;
  border-radius: 1.6rem;
  max-width: 980px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.18);
}

/* ============================= */
/*  TÍTULOS Y TEXTO             */
/* ============================= */

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #FFD700;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.15);
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fdfdfd;
  font-weight: 500;
}

/* ============================= */
/*  ICONOS DE HABILIDADES       */
/* ============================= */

section.row h5 {
  font-size: 1.1rem;
  color: #FFD700;
  font-weight: 800;
}

/* ============================= */
/*  ICONOS VISUALES KIDS        */
/* ============================= */

section.row img {
  background: white;
  border-radius: 50%;
  padding: 0.6rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
}

section.row img:hover {
  transform: scale(1.15) rotate(-4deg);
}

/* ============================= */
/*  BOTÓN INFERIOR GRANDE       */
/* ============================= */

.btn-lg {
  background: linear-gradient(135deg, #FFE066, #FFD700);
  color: #000;
  font-weight: 900;
  border: none;
  font-size: 1.25rem;
  padding: 0.9rem 2.4rem;
  border-radius: 1.4rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}

.btn-lg:hover {
  transform: scale(1.06);
  background: linear-gradient(135deg, #FFF2A8, #FFD700);
}

/* ============================= */
/*  TARJETAS (CARDS)            */
/* ============================= */

.card {
  background: rgba(255, 255, 255, 0.95);
  border-width: 3px !important;
  border-radius: 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.card-body h5 {
  color: #333;
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.card-body p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================= */
/*  ALERT INFO (Para padres)    */
/* ============================= */

.alert-info {
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid #FFD700;
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.alert-info h5 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.alert-info p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.alert-info ul {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}

.alert-info ul li {
  margin-bottom: 0.5rem;
}

.alert-info ul li strong {
  color: #8b5cf6;
}

/* ============================= */
/*  TEXTO MUTED                 */
/* ============================= */

.text-muted {
  color: #e0e0e0 !important;
  font-size: 0.9rem;
}

/* ============================= */
/*  FOOTER                      */
/* ============================= */

footer {
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 1.2rem;
  font-size: 0.9rem;
  color: #f0f0f0;
}
