/* Estilos responsivos para la sección de tickets */
/* Grid para las tarjetas */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  margin: 0;
}

/* Estilos para tamaños de pantalla */
@media (max-width: 1200px) {
  .tickets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .tickets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .tickets-grid {
    grid-template-columns: 1fr;
  }
}

/* Estilos para las tarjetas */
.pricing-s1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  background-color: #101010;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.pricing-s1 .top {
  /* flex: 1; */
  display: flex
;
  padding: 0;
  flex-direction: column;
  padding-top: 30px;
  background: #101010;
  padding-right: 30px;
  padding-left: 30px;
}
.pricing-s1 .top h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
}

.pricing-s1 .top .price {
  margin-bottom: 10px;
  font-size: 24px;
  color: #fff;
}

.pricing-s1 .top .price .currency {
  color: #FAB702;
  font-size: 24px;
  margin-right: 3px;
}

.pricing-s1 .top .price b {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

.pricing-s1 .description {
  margin-top: 10px;
  flex: 1;
  font-size: 13px;
  color: #ddd;
}

.pricing-s1 .description p {
  margin-bottom: 5px;
  line-height: 1.5;
}

.pricing-s1 .bottom {
  padding: 10px 20px;
  background: #101010;
}

.pricing-s1 .bottom ul {
  padding: 0;
  margin: 0;
}

.pricing-s1 .bottom ul li {
  padding: 5px 0;
  line-height: 40px !important;
  /* display: flex
; */
  align-items: center;
  color: white;
  font-size: 14px;
}

.pricing-s1 .bottom ul li i {
  margin-right: 8px;
  color: #FAB702;
  font-size: 14px;
}

/* Cambiar la decoración a una línea en el borde inferior */
.ps1-deco {
  position: absolute;
  background: #FAB702;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  z-index: 1;
}

/* Ajustes específicos para móviles */
@media only screen and (max-width: 767px) {
  #section-tickets .row > .col {
    padding: 0 8px;
    margin-bottom: 15px;
  }

  .pricing-s1 {
    max-width: 100%;
    margin: 0 auto 10px;
  }

  .pricing-s1 .top {
    padding: 20px 15px;
  }

  .pricing-s1 .top h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .pricing-s1 .top .price b {
    font-size: 32px;
    line-height: 40px;
  }

  .pricing-s1 .bottom {
    padding: 12px 15px;
  }
}

/* Para tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-s1 {
    margin-bottom: 20px;
  }

  .pricing-s1 .top {
    padding: 25px 15px;
  }
}
