/* ------------------------------
   Estilo iOS Comfort para WhyTickets
   ------------------------------ */

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
  background: url('img/fondo.jpeg') no-repeat center center fixed;
  background-size: cover;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ------------------------------
   EVENTOS DESTACADOS
------------------------------ */
.destacados {
  margin: 20px 0 40px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.destacados-container {
  display: flex;
  gap: 16px;
  padding: 0 16px;
}
.destacado {
  flex: 0 0 auto;
  width: 220px;
  background: rgba(28, 28, 30, 0.8);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  padding: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.destacado img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 12px;
}
.destacado button {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.destacado button:hover {
  background: #222;
  transform: scale(1.05);
}

/* ------------------------------
   BOTONES CABECERA
------------------------------ */
.header-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 30px auto;
  flex-wrap: wrap;
  background: transparent !important;
}
.header-btns button {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin: 6px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  transition: all 0.25s ease;
}
.header-btns button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

/* ------------------------------
   CARTELERA ORIGINAL
------------------------------ */
.cartelera {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
}
.evento {
  background: rgba(28,28,30,0.7);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 20px;
  width: 200px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.evento img {
  width: 100%;
  border-radius: 14px;
}
.evento h2 {
  margin: 10px 0;
  font-weight: 600;
  color: #f5f5f7;
}
.evento .precio {
  color: #ff3333;
  font-weight: bold;
}

/* ------------------------------
   FOOTER
------------------------------ */
footer {
  text-align: center;
  padding: 20px;
  color: #fff;
}
footer a {
  color: #fff;
  text-decoration: underline;
}