/* 🌐 Reset general */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
  background-color: #fff;
}

/* Utilidad para ancho completo real */
.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Contenedor central para secciones normales */
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Animaciones */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate.show {
  opacity: 1;
  transform: translateY(0);
}
.slide-left { transform: translateX(-50px); }
.slide-right { transform: translateX(50px); }
.slide-up { transform: translateY(50px); }
.slide-down { transform: translateY(-50px); }
.show.slide-left,
.show.slide-right,
.show.slide-up,
.show.slide-down {
  transform: translateX(0) translateY(0);
}

/* Slider */
.slider-con-boton {
  position: relative;
}
.slider-principal {
  width: 100%;
  display: block;
}
.boton-participar {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 300px;
  z-index: 2;
}
.boton-participar img {
  width: 100%;
  display: block;
}

/* Participantes */
.participantes-svg {
  margin-top: 13vh;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 5%;
}
.participantes-svg img {
  max-width: 320px;
  width: 100%;
  display: block;
}

/* Info combinado solo en mobile */
.info-combinado {
  display: none;
}
@media (max-width: 768px) {
  .info-combinado {
    margin-top: 5vh;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 1 / 1;
  }
  .info-img,
  .info-svg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }
  .info-img { z-index: 1; }
  .info-svg { z-index: 2; }
}

/* Sección Tickets */
.seccion-tickets {
  background-color: #000;
  padding: 5vh 0;
  text-align: center;
}
.titulo-tickets {
  margin-bottom: 4vh;
}
.titulo-tickets img {
  max-width: 340px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.oferta {
  margin-bottom: 4vh;
}
.oferta img {
  max-width: 320px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* Logo final */
.logo-final {
  margin-top: 5vh;
  text-align: center;
}
.logo-final img {
  max-width: 250px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.boton-participar img {
  width: 100%;
  display: block;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease;
}

/* Aplica la animación solo al hacer click */
.boton-participar.clicked img {
  animation: pop 0.3s ease forwards;
}

.descripcion-tickets {
  color: #fff;
  font-size: 15px;
  text-align: center;
  margin: 24px auto 40px auto; /* ↑ espacio arriba y abajo ↑ */
  max-width: 500px;
  line-height: 1.5;
  font-family: 'Neue Plak SemiBold', sans-serif;
  padding: 0 20px; /* espacio horizontal en móviles */
}

.ultimos-compradores {
  margin: 40px auto;
  max-width: 600px;
  padding: 20px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  font-family: 'Neue Plak SemiBold', sans-serif;
  text-align: center;
}

.ultimos-compradores h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #FFD000;
}

.ultimos-compradores ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ultimos-compradores li {
  margin-bottom: 10px;
  font-size: 14px;
}
