
/* 🎨 Estilo general */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #0f0f0f, #000000);
  color: #fff;
  text-align: center;
}

/* 🎉 Banner */
.banner {
  padding: 20px;
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  color: white;
  text-shadow: 0 0 12px rgba(255,0,204,0.9);
}
.banner h1 { font-size: 2rem; margin: 0; }
.banner p { font-size: 1.2rem; }

/* 🎟️ Grid de boletos */
#boletos-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 10px;
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 12px;
}
.boleto {
  padding: 12px;
  border-radius: 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  cursor: pointer;
  font-weight: 700;
  color: #e6e6e6;
  transition: transform .15s, box-shadow .2s, background .15s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}
.boleto:hover { transform: translateY(-3px); }
.boleto.seleccionado {
  background: gold !important;
  color: black !important;
  font-weight: bold !important;
  box-shadow: 0 0 15px gold, 0 0 30px gold;
}
.boleto.reservado {
  background: darkorange;
  color: white;
  cursor: not-allowed;
}
.boleto.comprado {
  background: red;
  color: white;
  cursor: not-allowed;
}

/* 📝 Formularios */
form {
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}
input, button {
  padding: 12px;
  border: none;
  border-radius: 6px;
}
input {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
input:focus {
  border-color: #8e2de2;
  outline: none;
  box-shadow: 0 0 8px #8e2de2;
}

/* 🔘 Botones (Reservar y Verificar) */
form#reserva-form button,
#verificar-form button {
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(142,45,226,0.6);
}
form#reserva-form button:hover,
#verificar-form button:hover {
  opacity: 0.9;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(142,45,226,0.9), 0 0 25px rgba(74,0,224,0.7);
}

/* 📢 Carrusel informativo */
.carousel {
  margin: 30px auto;
  display: flex;
  gap: 16px;
  padding: 10px;
  max-width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* soporte iOS */
}
.carousel::-webkit-scrollbar {
  display: none; /* ocultar barra de scroll */
}
.carousel-item {
  flex: 0 0 auto;
  background: linear-gradient(180deg, #1c1c1c, #111);
  border-radius: 12px;
  padding: 20px;
  min-width: 230px;
  text-align: center;
  box-shadow: 0 0 15px rgba(142,45,226,0.7);
  scroll-snap-align: center;
}

.carousel-item a {
  color: #ffdf5b;
  text-decoration: none;
  font-weight: bold;
}

/* 🏆 Ganadores */
.ganadores {
  margin: 20px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(51,51,255,0.6);
}
.ganadores h2 {
  color: #ffdf5b;
  text-shadow: 0 0 10px gold;
}
.ganador-item {
  margin: 8px 0;
  font-size: 1rem;
  font-weight: bold;
}

/* 📱 Footer / contacto */
footer.contacto {
  padding: 20px;
  background: #111;
  margin-top: 20px;
}
footer.contacto p { margin-bottom: 12px; font-weight: bold; }
footer.contacto a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
footer.contacto a:hover { text-shadow: 0 0 10px #8e2de2; }

/* WhatsApp destacado */
footer.contacto .whatsapp {
  display: inline-block;
  margin: 12px 0;
  padding: 12px 24px;
  background: #25d366;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-shadow: 0 0 5px #000;
  box-shadow: 0 0 12px rgba(37,211,102,0.6);
  transition: transform 0.2s, box-shadow 0.2s;
}
footer.contacto .whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(37,211,102,0.9);
}

/* Centrado en la página de verificación */
.verificar-page main,
.verificar-page .carousel,
.verificar-page .ganadores {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

