/*
 * Base visual compartida para Boletos — Demo 2.0.
 *
 * El prototipo de referencia carga primero
 * plantilla-museo-completa.css, despues plantilla-la-feria.css y por ultimo
 * plantilla-boletos.css. Esta hoja porta SOLO la base que la landing de
 * Boletos hereda del primer archivo, aislada a .tickets-page para no afectar
 * otras paginas de Beta4. La hoja boletos.css permanece como autoridad de la
 * variante especial.
 */
.tickets-page,
.tickets-page * {
  box-sizing: border-box;
}

.tickets-page {
  --soft: var(--hd-soft, #fafbfb);
}

/*
 * Elementor aporta variables de ancho y gap que no existen en el HTML del
 * Demo. Se neutralizan unicamente en la raiz de esta landing para reproducir
 * el shell de 1180 px y dejar que las separaciones del Demo gobiernen.
 */
body.elementor-page .elementor > .e-con.page-shell.tickets-page,
body.elementor-page .elementor > .elementor-element.e-con.page-shell.tickets-page {
  --width: min(calc(100% - 48px), 1180px) !important;
  --max-width: 1180px !important;
  --gap: 0px !important;
  width: min(calc(100% - 48px), 1180px) !important;
  max-width: 1180px !important;
  margin-inline: auto !important;
  padding: 34px 0 72px !important;
  gap: 0 !important;
}

.tickets-page.page-shell {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
  padding: 34px 0 72px;
}

.tickets-page .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--secondary);
  font-size: 0.78rem;
}

.tickets-page .breadcrumb a {
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
}

.tickets-page .page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 48px;
  margin-top: 32px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
}

.tickets-page .microtitle {
  margin: 0;
  color: var(--pink-text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.tickets-page h1,
.tickets-page h2,
.tickets-page h3 {
  text-wrap: balance;
}

.tickets-page h1 {
  max-width: 14ch;
  margin: 9px 0 0;
  font-size: clamp(2.45rem, 5vw, 3.5rem);
  line-height: .98;
  letter-spacing: -.052em;
}

.tickets-page .short-answer {
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid #e7ebeb;
  border-radius: 10px;
  background: var(--soft);
}

.tickets-page .short-answer small {
  display: block;
  color: var(--secondary);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.tickets-page .short-answer p {
  margin: 2px 0 0;
  color: #3e4b50;
  font-size: .875rem;
  line-height: 1.5;
}

.tickets-page .hero-introduction {
  max-width: 55ch;
  margin: 18px 0 0;
  color: var(--secondary);
  font-size: 1rem;
}

.tickets-page .hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper);
  aspect-ratio: 4 / 3;
}

.tickets-page .hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

@media (max-width: 620px) {
  body.elementor-page .elementor > .e-con.page-shell.tickets-page,
  body.elementor-page .elementor > .elementor-element.e-con.page-shell.tickets-page {
    --width: calc(100% - 32px) !important;
    --max-width: calc(100% - 32px) !important;
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    padding-top: 24px !important;
  }

  .tickets-page.page-shell {
    width: calc(100% - 32px);
    padding-top: 24px;
  }

  .tickets-page .page-hero {
    gap: 24px;
    margin-top: 24px;
    padding: 24px 18px;
    border-radius: 24px;
  }

  .tickets-page h1 {
    font-size: 2.15rem;
  }

  .tickets-page .hero-image {
    border-radius: 20px;
  }
}
