/* =========================
   RESET Y CONFIGURACIÓN
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

.cumpleanos-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 1em;
}

/* =========================
   HERO CUMPLEAÑOS (SIMPLE) - MANTENIDO POR COMPATIBILIDAD
========================== */
.hero-cumpleanos {
  margin-top: 0;
  padding: 3em 1em 4em;
  text-align: center;
  background: linear-gradient(
    to bottom,
    #ff66cc 0%,
    #ff3399 30%,
    #ff0066 60%,
    #cc0066 100%
  );
  color: #fff;
  position: relative;
}

.hero-cumpleanos h1 {
  font-family: 'Rouge Script', cursive !important;
  font-size: 3.5em !important;
  margin-bottom: 0.3em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cumpleanos p {
  font-size: 1.2em;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* =========================
   SECCIÓN EXTRAS
========================== */
.seccion-extras {
  margin: 3em 0;
  padding: 0 1em;
  text-align: center;
}

.intro-extras h2 {
  font-family: 'Special Elite', cursive;
  font-size: 2.8em;
  color: #ff66ff;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.subtitulo-extras {
  font-size: 1.3em;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 2em;
  line-height: 1.6;
}

/* =========================
   CONTENEDOR DE EXTRAS - MEJORADO
========================== */
.extras-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2em;
  margin: 3em 0;
  padding: 0 1em;
}

.extra-card {
  background: rgba(20, 20, 30, 0.8);
  border-radius: 15px;
  padding: 2em;
  border: 2px solid #ff66ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.extra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 102, 255, 0.3);
  border-color: #ff00ff;
}

.extra-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff66ff, #00e6e6);
}

.extra-icon {
  font-size: 3.5em;
  margin-bottom: 0.5em;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 102, 255, 0.5);
}

.extra-card h3 {
  font-family: 'Special Elite', cursive;
  font-size: 1.8em;
  color: #ff66ff;
  margin-bottom: 1em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.extra-descripcion {
  font-size: 1.1em;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1.5em;
  text-align: center;
}

.extra-info {
  font-size: 1em;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 1.5em;
  font-style: italic;
  text-align: center;
}

.extra-precio {
  text-align: center;
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 2px dashed #ff66ff;
}

.precio {
  font-size: 2.5em;
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* =========================
   PACKS FLÚOR
========================== */
.pack-opciones {
  margin: 1.5em 0;
}

.pack-opcion {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1.2em;
  padding: 1em;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 4px solid #00ffff;
  transition: all 0.3s;
}

.pack-opcion:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateX(5px);
}

.check-icon {
  font-size: 1.5em;
  color: #00ffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 50%;
}

.pack-info h4 {
  font-family: 'Klee One', cursive;
  font-size: 1.3em;
  color: #fff;
  margin-bottom: 0.3em;
}

.pack-precio {
  font-size: 1.2em;
  color: #00ffff;
  font-weight: bold;
}

.extra-nota {
  font-size: 0.95em;
  color: #aaa;
  font-style: italic;
  margin-top: 1.5em;
  text-align: center;
  padding-top: 1em;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

/* =========================
   LLAMADA A LA ACCIÓN (MANTENIDO POR COMPATIBILIDAD)
========================== */
.llamada-accion {
  margin: 4em 0;
  padding: 3em 1em;
  background: rgba(255, 102, 255, 0.1);
  border-radius: 20px;
  text-align: center;
  border: 2px solid #ff66ff;
}

.llamada-accion h2 {
  font-family: 'Special Elite', cursive;
  font-size: 2.2em;
  color: #ffcc00;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pregunta {
  font-size: 1.4em;
  color: #fff;
  margin-bottom: 2em;
  font-weight: bold;
}

/* CONTACTO DIRECTO */
.contacto-directo {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  max-width: 500px;
  margin: 2em auto;
}

.contacto-item {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 1.2em;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.contacto-item:hover {
  background: rgba(255, 102, 255, 0.2);
  transform: translateX(10px);
  border-color: #ff66ff;
}

.contacto-icon {
  font-size: 1.5em;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contacto-texto {
  font-size: 1.1em;
  flex: 1;
  text-align: left;
}

/* BOTÓN DE CONSULTA */
.boton-consulta {
  margin-top: 2.5em;
}

.btn-consulta {
  display: inline-block;
  background: linear-gradient(135deg, #ff66ff, #ffcc00);
  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(255, 102, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-consulta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 102, 255, 0.5);
  background: linear-gradient(135deg, #ffcc00, #ff66ff);
}

/* =========================
   PRE-FOOTER INFORMATIVO
========================== */
.prefooter {
  background: #111;
  padding: 3em 8%;
  font-size: 1em;
  color: #ddd;
  margin-top: 4em;
  border-top: 3px solid #ff66ff;
}

.prefooter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2em;
}

.prefooter-col h3 {
  font-family: 'Klee One', cursive;
  font-size: 1.4em;
  margin-bottom: 0.6em;
  color: #fff;
  border-bottom: 2px solid #ff66ff;
  padding-bottom: 0.5em;
  display: inline-block;
}

.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: #ff66ff;
}

.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;
}

footer a {
  text-decoration: none;
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 768px) {
  .hero-cumpleanos h1 {
    font-size: 2.8em !important;
  }
  
  .hero-cumpleanos p {
    font-size: 1.1em;
  }
  
  .intro-extras h2 {
    font-size: 2.2em;
  }
  
  .subtitulo-extras {
    font-size: 1.1em;
  }
  
  .extras-container {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  
  .extra-card {
    padding: 1.5em;
  }
  
  .extra-card h3 {
    font-size: 1.5em;
  }
  
  .precio {
    font-size: 2em;
  }
  
  .llamada-accion h2 {
    font-size: 1.8em;
  }
  
  .pregunta {
    font-size: 1.2em;
  }
  
  .contacto-item {
    padding: 1em;
  }
  
  .btn-consulta {
    padding: 1em 2em;
    font-size: 1.1em;
    width: 100%;
    max-width: 300px;
  }
  
  .prefooter {
    padding: 2em 5%;
  }
  
  .prefooter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-cumpleanos h1 {
    font-size: 2.2em !important;
  }
  
  .hero-cumpleanos p {
    font-size: 1em;
  }
  
  .intro-extras h2 {
    font-size: 1.8em;
  }
  
  .prefooter-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contacto-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5em;
  }
  
  .contacto-texto {
    text-align: center;
  }
  
  footer {
    padding: 1em;
    font-size: 0.8em;
  }
}

/* =========================
   ESTILOS PARA ENLACE ACTIVO EN MENÚ
========================== */
.top-bar a.active {
  color: #ff66ff;
  font-weight: bold;
}

.top-bar a.active::after {
  background: #ff66ff;
  width: 100%;
}