/* Estilos específicos para la página de entradas */
.img-ticket {
    z-index: 10; /* Cambiado de -99999 a un valor positivo mayor que ticket-cta */
    right: 100px;
    position: absolute;
    height: 400px;
    width: auto;
  }
  
  .ticket-cta {
    z-index: 5; /* Cambiado de 999999 a un valor positivo menor que img-ticket */
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(181, 126, 220, 0.3);
    animation: glowPulse 3s infinite alternate;
  }
  
  @keyframes glowPulse {
    0% {
      box-shadow: 0 0 15px rgba(181, 126, 220, 0.3);
    }
    100% {
      box-shadow: 0 0 30px rgba(181, 126, 220, 0.6);
    }
  }
  
  .ticket-cta h3 {
    z-index: 6; /* Ajustado para ser coherente con el nuevo sistema de z-index */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
  }
  
  .btn-ticket {
    background: var(--accent-color);
    color: var(--dark-purple);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn-ticket::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(238, 234, 234, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
  }
  
  .btn-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: var(--text-color);
  }
  
  .btn-ticket:hover::before {
    left: 100%;
  }
  
  .info-icon {
    margin-right: 10px;
    color: var(--accent-color);
  }
  
  /* Animación para los pasos */
  
  /* Fondo de partículas */
  .particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.3;
  }
  
  @media (max-width: 1200px){
    /* Estilos específicos para la página de entradas */
.img-ticket {
   display: none;
  }
  }