:root{
  --bg-top:  #edf8ff;
  --bg-mid:  #dbeaff;
  --bg-lav:  #dfe0ff;

  --title:   #0c3b4f;
  --sub:     #2f5667;

  --btn:     #3f95df;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:#fff;
}

.lev-container{ max-width: 1100px; }

/* TOPBAR */
.lev-topbar{
  background:#fff;
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.lev-topbar__inner{
  height: 78px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lev-topbar__brand{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .28em;
  color:#0b1220;
}

/* HERO */
.lev-hero{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 50% 14%, rgba(120,120,255,.12), rgba(255,255,255,0) 62%),
    radial-gradient(820px 420px at 50% 18%, rgba(80,160,230,.22), rgba(255,255,255,0) 64%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 44%, var(--bg-lav) 68%, #ffffff 92%);
}

/* grano leve */
.lev-hero::before{
  content:"";
  position:absolute;
  inset:-20% -10%;
  opacity:.06;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(17,24,39,.55) 1px, transparent 2px),
    radial-gradient(circle at 78% 28%, rgba(17,24,39,.35) 1px, transparent 2px),
    radial-gradient(circle at 44% 55%, rgba(17,24,39,.30) 1px, transparent 2px);
  background-size: 260px 260px, 320px 320px, 380px 380px;
  filter: blur(.4px);
  pointer-events:none;
}

/* ✅ arco blanco MÁS ARRIBA */
.lev-hero::after{
  content:"";
  position:absolute;
  left:-22%;
  right:-22%;
  bottom:-300px;     /* antes -360px -> sube el arco */
  height: 480px;     /* un toque menos alto para que “corte” antes */
  background:#fff;
  border-radius: 50%;
  pointer-events:none;
}

.lev-hero__wrap{
  position: relative;
  z-index: 1;
  text-align:center;
  padding: 44px 16px 90px;
}

/* TITULO */
.lev-hero__title{
  margin: 0 auto 14px;
  max-width: 980px;
  color: var(--title);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: 50px;
      font-weight: 700;
}
.lev-hero__title span{ display:block; }

/* SUB */
.lev-hero__subtitle{
  margin: 0 auto 18px;
  max-width: 760px;
  color: var(--sub);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.15;
}

/* ✅ stack para superponer botón sobre imagen */
.lev-hero__stack{
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* BOTÓN */
.lev-hero__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width: 320px;
  height: 58px;

  background: var(--btn);
  color:#fff;
  text-decoration:none;

  font-weight: 700;
  font-size: 16px;
  border-radius: 2px;

  box-shadow: 0 10px 22px rgba(0,0,0,.10);

  /* ✅ lo ponemos arriba de la card */
  position: relative;
  z-index: 3;

  /* ✅ que “pise” la imagen */
  margin-bottom: -18px;  /* negativo: se mete encima */
}
.lev-hero__btn:hover{ color:#fff; filter: brightness(.98); }

/* CARD IMAGEN */
.lev-hero__card{
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 22px 48px rgba(0,0,0,.18);
  background:#111827;
}
.lev-hero__card img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 991.98px){
  .lev-hero__wrap{ padding-top: 34px; }
  .lev-hero__title{ font-size: 46px; }
  
}
@media (max-width: 767.98px){
  .lev-hero__title{ font-size: 38px; line-height: 1.06; }
}
@media (max-width: 575.98px){
  .lev-topbar__inner{ height: 68px; }
  .lev-hero__wrap{ padding: 28px 14px 70px; }
  .lev-hero__title{ font-size: 30px; line-height: 1.10; }
  .lev-hero__subtitle{ font-size: 12.5px; line-height: 1.2; }

  .lev-hero__btn{
    width: 86%;
    max-width: 320px;
    height: 54px;
    margin-bottom: -14px; /* overlay un poco menor en mobile */
  }

  .lev-hero__card{ border-radius: 16px; }
}


/* =========================
   EXPERIENCIAS — 2 FILAS HORIZONTALES CORRECTAS
========================= */

.lev-exp__viewport{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 12px;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.lev-exp__rail{
  display:flex;
  gap: 22px;
  will-change: transform;
}

/* 🔥 Ahora el set NO es grid */
.lev-exp__set{
  display:flex;
  gap: 22px;
  flex: 0 0 auto;
}

 
/* Card limpia */
.exp-card{
  border-radius: 12px;
  overflow:hidden;
  background:#000;
  display:block;
}

/* 🔥 Mantener proporción correcta */
.exp-card img{
  width:100%;
  height:100%;
  aspect-ratio: 16 / 9;  /* probá 21/9 si querés más banner */
  object-fit: cover;
  display:block;
}

/* 🔥 Desactivar posiciones del grid viejo */
.exp-card--wide,
.exp-card--day,
.exp-card--beat,
.exp-card--meet,
.exp-card--sorteos{
  grid-column: unset !important;
  grid-row: unset !important;
}


/* cards */
.exp-card{
  --focus: 0; /* 0 lejos, 1 centro */
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display:block;
  text-decoration:none;
  background:#0b1220;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);

  /* ✅ NO B/N: “descolor / fade / blur” como ejemplo */
/*  filter:
    blur(calc((1 - var(--focus)) * 0.9px))
    brightness(calc(0.80 + (var(--focus) * 0.20)))
    saturate(calc(0.70 + (var(--focus) * 0.30)))
    contrast(calc(0.92 + (var(--focus) * 0.08)));*/

  /*opacity: calc(0.55 + (var(--focus) * 0.45));*/
  /*transform: translateZ(0) scale(calc(0.99 + (var(--focus) * 0.01)));*/
  transition: filter .18s linear, opacity .18s linear, transform .18s ease;
}

.exp-card img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* overlay oscuro para texto */
.exp-card::after{
  content:"";
  position:absolute;
  inset:0;
  /*background: linear-gradient(180deg, rgba(0,0,0,.00) 48%, rgba(0,0,0,.68) 100%);*/
}

.exp-card__overlay{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
}

.exp-card__title{
  color:#fff;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.05;
}

.exp-card__sub{
  margin-top: 4px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  line-height: 1.15;
}

/* posiciones (tus 5) */
.exp-card--wide{ grid-column: 1 / span 2; grid-row: 1; }
.exp-card--day{  grid-column: 3;          grid-row: 1; }
.exp-card--beat{ grid-column: 1;          grid-row: 2; }
.exp-card--meet{ grid-column: 2;          grid-row: 2; }
.exp-card--sorteos{ grid-column: 3;       grid-row: 2; }

/* Responsive */
@media (max-width: 991.98px){
  .lev-exp__set{
    --peek: 160px;
    --h: 170px;
    gap: 12px;
  }
  .exp-card__title{ font-size: 16px; }

 

}

@media (max-width: 575.98px){
  .lev-exp{ padding: 34px 0 20px; }
  .lev-exp__title{ font-size: 24px; }
  .lev-exp__desc{ font-size: 12.5px; }

  /* en mobile el set puede ser más “largo” para que se note el marquee */
  .lev-exp__set{
    --peek: 120px;
    width: 760px;     /* marquee horizontal real */
    --h: 140px;
    gap: 10px;
  }
  .exp-card__title{ font-size: 14px; }
  .exp-card__sub{ font-size: 10px; }
}


/*SECTION TICKETS */

/* =========================
   3ER SECCIÓN: TICKETS (COMPRÁ TUS TICKETS) — CSS ENTERO
========================= */
/* =========================
   3ER SECCIÓN: TICKETS — CSS COMPLETO
========================= */

.tickets{
  background:#e9e9e9;
  padding: 48px 0 52px;
}

.tickets__title{
  text-align:center;
  font-weight: 800;
  font-size: 34px;
  margin: 0;
  color:#111;
}

.tickets__subtitle{
  text-align:center;
  margin: 10px auto 0;
  max-width: 760px;
  color:#1f4758;
  font-size: 13px;
  line-height: 1.25;
}

.tickets__cards{ margin-top: 34px; }

/* Cards */
.ticket-card{
  background:#fff;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
  overflow:hidden;
  height: 100%;
}

.ticket-card__img{
  position: relative;
  height: 240px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px;
  background:#fff;
}

.ticket-card__img::before{
  content:"";
  position:absolute;
  inset: 16px;
  border-radius: 6px;
  z-index: 0;
}

.ticket-card__imgtext{
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 34px;
  text-align:center;
}
.ticket-card__imgtext--muted{ opacity: .35; }

.ticket-card__img--daypass::before{ background:#dedede; }
.ticket-card__img--openweek::before{ background:#7f3fe0; }
.ticket-card__img--fullpack::before{ background:#5866f2; }

.ticket-card__img--daypass .ticket-card__imgtext{ color:#8b5cf6; }
.ticket-card__img--openweek .ticket-card__imgtext,
.ticket-card__img--fullpack .ticket-card__imgtext{ color:#fff; }

.ticket-card__body{
  padding: 18px 18px 22px;
  text-align:center;
}

.ticket-card__h{
  font-weight: 800;
  font-size: 20px;
  color:#0c3b4f;
  margin-top: 6px;
}

.ticket-card__p{
  font-size: 12px;
  color:#0c3b4f;
  opacity:.9;
  margin-top: 2px;
  min-height: 34px;
}

.ticket-card__price{
  margin-top: 14px;
  color:#0c3b4f;
}
.ticket-card__pricebig{ font-weight: 800; font-size: 16px; }
.ticket-card__per{ font-size: 10px; opacity:.85; margin-left: 4px; }

.ticket-btn{
  margin-top: 14px;
  background:#3b8edc;
  border:0;
  color:#fff;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 0;
  width: 130px;
  border-radius: 2px;
  display:inline-block;
  text-align:center;
}
.ticket-btn:hover{ background:#2f7fc8; color:#fff; }

.ticket-btn--disabled{
  background:#d3d3d3;
  color:#7a7a7a;
}
.ticket-btn--disabled:hover{ background:#d3d3d3; color:#7a7a7a; }

/* =========================
   BANNERS
========================= */

.tickets__banners{
  margin-top: 22px;
  display:flex;
  flex-direction: column;
  gap: 18px;
}

.ticket-banner{
  position: relative;
  background:#fff;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.10);
  padding: 22px 26px;

  display:grid;
  grid-template-columns: 200px 1fr auto;
  align-items:center;
  gap: 22px;

  overflow: hidden; /* ✅ recorte por el borde (efecto "entra desde afuera") */
}

.ticket-banner__media{
  position: relative;
  width: 200px;
  height: 90px;
}

.ticket-banner__content{ min-width: 0; }

.ticket-banner__title{
  font-weight: 800;
  color:#0c3b4f;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.ticket-banner__desc{
  color:#0c3b4f;
  opacity:.9;
  font-size: 13px;
  line-height: 1.25;
}

.ticket-banner__cta{ justify-self:end; }

.ticket-banner__btn{
  background:#3b8edc;
  border:0;
  color:#fff;
  font-weight:700;
  font-size:12px;
  padding: 10px 0;
  width: 130px;
  border-radius: 2px;
  text-align:center;
}
.ticket-banner__btn:hover{ background:#2f7fc8; color:#fff; }

/* ART */
.ticket-banner__art{
  position:absolute;
  max-width:none;
  height:auto;
  pointer-events:none;
  user-select:none;
}

/* Tickets (premium) */
.ticket-banner__art--tickets{
  width: 280px;
  left: -96px;
  top: -48px;
  transform: rotate(-18deg);
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.18));
  filter: drop-shadow(2px 2px 5px black);
}

/* ✅ Avión corregido:
   - achicado
   - menos negativo en left (para tu PNG que viene “corrida”)
   - sigue entrando desde afuera */
.ticket-banner__art--plane{
  width: 150px;     /* ✅ más chico */
  left: -26px;     /* ✅ muestra fuselaje, no solo ala */
  bottom: -4px;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.12));
  filter: drop-shadow(2px 2px 5px black);
}

/* =========================
   Responsive
========================= */

@media (max-width: 991.98px){
  .tickets__title{ font-size: 32px; }

  .ticket-card__img{ height: 155px; padding: 14px; }
  .ticket-card__img::before{ inset: 14px; }

  .ticket-banner{
    padding: 18px 18px;
    grid-template-columns: 180px 1fr auto;
  }

  .ticket-banner__media{ width: 180px; height: 84px; }

  .ticket-banner__art--tickets{
    width: 255px;
    left: -88px;
    top: -44px;
  }

  .ticket-banner__art--plane{
    width: 150px;     /* ✅ más chico */
  left: -18px;     /* ✅ muestra fuselaje, no solo ala */
  bottom: -4px;
  }
}

@media (max-width: 767.98px){
  .tickets__title{ font-size: 28px; }
  .ticket-btn{ width: 100%; }

  .ticket-banner{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ticket-banner__cta{ justify-self: stretch; }
  .ticket-banner__btn{ width: 100%; }

  .ticket-banner__media{
    width: 220px;
    height: 95px;
  }

  .ticket-banner__art--tickets{
    width: 260px;
    left: -92px;
    top: -46px;
  }

  .ticket-banner__art--plane{
   width: 150px;     /* ✅ más chico */
  left: -18px;     /* ✅ muestra fuselaje, no solo ala */
  bottom: -4px;
  }
}


/* =========================
   SECTION: "No es solo ver el MASTER..."
========================= */

.lev-story{
  background:#ffffff;
  padding: 64px 0 78px;
}

.lev-story__grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: 72px;
  align-items: center;
}

/* Copy */
.lev-story__copy{
  padding-left: 34px; /* margen como en el ejemplo */
}

.lev-story__title{
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: 28px;
  color:#0c3b4f;
}

.lev-story__title-strong{
  font-weight: 900;
}

.lev-story__p{
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.35;
  color:#2b2b2b;
  max-width: 520px;
}

.lev-story__btn{
  display:inline-block;
  margin-top: 34px;
  background:#3b8edc;
  color:#fff;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 0;
  width: 120px;
  text-align:center;
  border-radius: 2px;
  text-decoration:none;
  box-shadow: 0 1px 0 rgba(0,0,0,.10);
}

.lev-story__btn:hover{
  background:#2f7fc8;
  color:#fff;
  text-decoration:none;
}

/* Media */
.lev-story__media{
  display:flex;
  justify-content:center;
}

.lev-story__imgwrap{
  width: 360px;
  height: 320px;
  border-radius: 14px;
  overflow:hidden;
  background: #d9d9d9;
}

.lev-story__img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px){
  .lev-story{
    padding: 56px 0 64px;
  }

  .lev-story__grid{
    column-gap: 44px;
  }

  .lev-story__copy{
    padding-left: 10px;
  }

  .lev-story__imgwrap{
    width: 330px;
    height: 300px;
  }
}

@media (max-width: 767.98px){
  .lev-story{
    padding: 44px 0 54px;
  }

  .lev-story__grid{
    grid-template-columns: 1fr;
    row-gap: 26px;
  }

  .lev-story__copy{
    padding-left: 0;
  }

  .lev-story__p{
    max-width: none;
  }

  .lev-story__imgwrap{
    width: 100%;
    max-width: 420px;
    height: 280px;
  }

  .lev-story__btn{
    width: 140px;
  }
}


/* =========================
   SECTION: CASE + VIDEO + THUMBS
========================= */

.lev-case{
  background:#e9e9e9;
  padding: 58px 0 52px;
}

.lev-case__head{
  text-align:center;
  max-width: 920px;
  margin: 0 auto 26px;
}

.lev-case__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  color:#0c3b4f;
  font-size: 34px;
  line-height: 1.12;
}

.lev-case__meta{
  margin-top: 12px;
  font-size: 11px;
  color:#0c3b4f;
  opacity: .9;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
}

.lev-case__metaicon{
  display:inline-flex;
  width: 18px;
  height: 18px;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  transform: translateY(-1px);
}

.lev-case__desc{
  margin: 14px 0 0;
  font-size: 12px;
  color:#2b2b2b;
  opacity: .9;
}

/* PLAYER */
.lev-case__player{
  position: relative;
  margin: 22px auto 18px;
  width: min(980px, 100%);
  background:#8f8f8f;
  border-radius: 10px;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  aspect-ratio: 16 / 9; /* mantiene proporción como el ejemplo */
}

/* “play” suave como placeholder del ejemplo */
/*.lev-case__player::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Ccircle cx='70' cy='70' r='54' fill='none' stroke='%23000000' stroke-opacity='.20' stroke-width='10'/%3E%3Cpath d='M60 52 L96 70 L60 88 Z' fill='%23000000' fill-opacity='.20'/%3E%3C/svg%3E")
    center/110px no-repeat;
  opacity: .9;
}*/

.lev-case__player::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    url("data:image/svg+xml,...")
    center/110px no-repeat;
  opacity: .9;
  transition: opacity .2s ease;
}

/* 🔥 ocultar overlay cuando es youtube */
.lev-case__player.is-youtube::after{
  opacity: 0;
}


/* cuando reproduce video, oculto el icono */
.lev-case__player.is-playing::after{
  opacity: 0;
}

.lev-case__media{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  background:#8f8f8f;
}

.lev-case__media--img{
  object-fit: cover;
}

/* THUMBS */
.lev-case__thumbs{
  width: min(980px, 100%);
  margin: 0 auto;
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:center;
  overflow-x: auto;
  padding: 8px 2px 11px;
  scroll-snap-type: x mandatory;
}

.lev-case__thumbs::-webkit-scrollbar{ height: 8px; }
.lev-case__thumbs::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.12);
  border-radius: 20px;
}

.lev-thumb{
  position: relative;
  border: 0;
  padding: 0;
  width: 150px;
  height: 86px;
  border-radius: 10px;
  overflow:hidden;
  background:#d7d7d7;
  flex: 0 0 auto;
  cursor:pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  scroll-snap-align: start;
}

.lev-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.lev-thumb.is-active{
  outline: 3px solid #3b8edc;
  outline-offset: 2px;
}

.lev-thumb__play{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.lev-thumb__play::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%,-50%);
  border-radius: 999px;
  background: rgba(0,0,0,.35);
}

.lev-thumb__play::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-42%,-50%);
  width:0; height:0;
  border-left: 14px solid rgba(255,255,255,.9);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991.98px){
  .lev-case__title{ font-size: 30px; }
  .lev-thumb{ width: 140px; height: 82px; }
}

@media (max-width: 767.98px){
  .lev-case{ padding: 44px 0 44px; }
  .lev-case__title{ font-size: 26px; }
  .lev-case__player{ border-radius: 12px; }
  .lev-case__thumbs{ justify-content:flex-start; padding-left: 6px; }
  .lev-thumb{ width: 132px; height: 78px; }
}


/* =========================
   SECTION: FAQ
========================= */

.lev-faq{
  background:#ffffff;
  padding: 72px 0 92px;
}

.lev-faq__grid{
  display:grid;
  grid-template-columns: 260px 1fr;
  column-gap: 80px;
  align-items: start;
}

/* Left */
.lev-faq__kicker{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color:#3b8edc;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lev-faq__title{
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 900;
  color:#0c3b4f;
}

/* Right list */
.lev-faq__list{
  max-width: 520px;   /* como el ejemplo: no ocupa todo el ancho */
}

/* Accordion item */
.lev-acc{
  position: relative;
  background:#f3f3f3;
  border-radius: 2px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.lev-acc__btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align:left;
}

.lev-acc__q{
  font-size: 12px;
  font-weight: 700;
  color:#0c3b4f;
}

/* Chevron (como flechita) */
.lev-acc__chev{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  position: relative;
}

.lev-acc__chev::before{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(12,59,79,.70);
  border-bottom: 2px solid rgba(12,59,79,.70);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform .18s ease;
}

.lev-acc.is-open .lev-acc__chev::before{
  transform: rotate(-135deg);
}

/* Panel (animación) */
.lev-acc__panel{
  max-height: 0px;
  overflow: hidden;
  transition: max-height .22s ease;
}

.lev-acc__answer{
  padding: 0 18px 16px;
}

.lev-acc__label{
  font-size: 10px;
  color: rgba(12,59,79,.70);
  margin: 8px 0 8px;
}

.lev-acc__text{
  font-size: 12px;
  line-height: 1.45;
  color: rgba(12,59,79,.85);
}

/* Blue bar bottom (solo abierto) */
.lev-acc__bar{
  height: 3px;
  width: 100%;
  background: #3b8edc;
  opacity: 0;
  transform: scaleX(.75);
  transform-origin: left;
  transition: opacity .18s ease, transform .18s ease;
}

.lev-acc.is-open .lev-acc__bar{
  opacity: 1;
  transform: scaleX(1);
}

/* =========================
   Responsive
========================= */

@media (max-width: 991.98px){
  .lev-faq__grid{
    column-gap: 46px;
  }
  .lev-faq__title{
    font-size: 32px;
  }
}

@media (max-width: 767.98px){
  .lev-faq{
    padding: 52px 0 64px;
  }
  .lev-faq__grid{
    grid-template-columns: 1fr;
    row-gap: 22px;
  }
  .lev-faq__list{
    max-width: 100%;
  }
}

/* =========================
   FOOTER
   ========================= */
.lev-footer{
  background: #ffffff;
  border-top: 1px solid rgba(12, 47, 60, 0.10);
  padding: 16px 0;
}

.lev-footer__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #1f4a5b;
  font-size: 13px;
  line-height: 1.4;
}

.lev-footer__left,
.lev-footer__right{
  white-space: nowrap;
}

.lev-footer__link{
  color: #2f7dbd;            /* mismo feeling que tus botones */
  text-decoration: none;
  font-weight: 700;
}

.lev-footer__link:hover{
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 575.98px){
  .lev-footer{
    padding: 14px 0;
  }

  .lev-footer__row{
    flex-direction: column;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .lev-footer__left,
  .lev-footer__right{
    white-space: normal;
  }
}


/* =========================
   SECTION: PACK PREMIUM
   (¿Qué incluye el Pack Premium?)
========================= */

.lev-pack{
  background:#ffffff;
  padding: 64px 0 72px;
}

.lev-pack__head{
  text-align:center;
  max-width: 920px;
  margin: 0 auto 28px;
}

.lev-pack__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--title);
  font-size: 34px;
  line-height: 1.12;
}

.lev-pack__subtitle{
  margin: 12px auto 0;
  max-width: 760px;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
}

.lev-pack__subtitle--strong{
  margin-top: 8px;
  font-weight: 600;
  opacity: .95;
}

/* Grid */
.lev-pack__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

/* Card base */
.lev-pack__card{
  border-radius: 6px;
  overflow:hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  padding: 26px 26px 24px;
  min-height: 520px;
}

.lev-pack__cardtitle{
  margin: 0 0 18px;
  text-align:center;
  font-weight: 900;
  color: var(--title);
  font-size: 18px;
}

/* Base = gris claro */
.lev-pack__card--base{
  background:#e9e9e9;
}

/* Premium = celeste */
.lev-pack__card--premium{
  background:#bfe5ff;
  position: relative;
}

/* Image (fanbox) */
.lev-pack__image{
  width: 100%;
  max-width: 520px;
  margin: 0 auto 16px;
  border-radius: 6px;
  overflow:hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.lev-pack__image img{
  display:block;
  width: 100%;
  height: auto;
}

/* Included line */
.lev-pack__included{
  margin: 14px 0 14px;
  text-align:center;
  color: rgba(12,59,79,.88);
  font-size: 12px;
  font-weight: 700;
}

/* List */
.lev-pack__list{
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(12,59,79,.92);
  font-size: 12px;
  line-height: 1.35;
}

.lev-pack__list li{
  position: relative;
  padding-left: 16px;
  margin: 10px 0;
}
/*
.lev-pack__list li::before{
  content:"";
  position:absolute;
  left:0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(12,59,79,.45);
}*/

/*.lev-pack__card--premium .lev-pack__list li::before{
  background: rgba(12,59,79,.55);
}*/

/* CTA */
.lev-pack__cta{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

.lev-pack__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 130px;
  height: 36px;
  background: var(--btn);
  color:#fff;
  text-decoration:none;
  font-weight: 800;
  font-size: 12px;
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(0,0,0,.10);
}

.lev-pack__btn:hover{
  filter: brightness(.96);
  color:#fff;
  text-decoration:none;
}

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px){
  .lev-pack{
    padding: 56px 0 64px;
  }

  .lev-pack__title{
    font-size: 30px;
  }

  .lev-pack__grid{
    gap: 18px;
  }

  .lev-pack__card{
    padding: 22px 18px 20px;
    min-height: 0;
  }
}

@media (max-width: 767.98px){
  .lev-pack{
    padding: 44px 0 54px;
  }

  .lev-pack__title{
    font-size: 26px;
  }

  .lev-pack__grid{
    grid-template-columns: 1fr;
  }

  .lev-pack__image{
    max-width: 520px;
  }

  .lev-pack__btn{
    width: 140px;
  }
}

@media (max-width: 575.98px){
  .lev-pack__subtitle{
    font-size: 12.5px;
    line-height: 1.22;
  }

  .lev-pack__cardtitle{
    font-size: 17px;
  }

  .lev-pack__list{
    font-size: 12px;
  }

  .lev-pack__btn{
    width: 100%;
    max-width: 280px;
    height: 40px;
  }
}

/* =========================
   SECTION: COMPRÁ TUS TICKETS (lev-buy)
========================= */

.lev-buy{
  background:#e9e9e9;
  padding: 56px 0 64px;
}

/* Header */
.lev-buy__head{
  text-align:center;
  margin-bottom: 32px;
}

.lev-buy__title{
  margin:0;
  font-size: 34px;
  font-weight: 900;
  color:#111;
}

.lev-buy__subtitle{
  margin-top: 8px;
  font-size: 13px;
  color:#1f4758;
}

/* =========================
   BANNERS (Full + Premium)
========================= */

.lev-buy__banner{
  background:#ffffff;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  padding: 22px 26px;
  display:grid;
  grid-template-columns: 180px 1fr auto;
  align-items:center;
  gap: 22px;
  margin-bottom: 22px;
}

.lev-buy__banner-media img{
  width:100%;
  max-width: 160px;
  height:auto;
  display:block;
}

.lev-buy__banner-title{
  font-size: 20px;
  font-weight: 800;
  color:#0c3b4f;
  margin:0 0 4px;
}

.lev-buy__banner-strong{
  font-size: 13px;
  font-weight: 700;
  color:#0c3b4f;
  margin:0 0 6px;
}

.lev-buy__banner-desc{
  font-size: 12px;
  color:#0c3b4f;
  opacity:.85;
  line-height:1.3;
  margin:0;
}

.lev-buy__banner-cta{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}

.lev-buy__note{
  font-size:10px;
  color:#0c3b4f;
  opacity:.7;
}

/* =========================
   GRID CARDS
========================= */

.lev-buy__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.lev-buy__card{
  background:#ffffff;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  text-align:center;
}

.lev-buy__card-img{
  height: 200px;
  overflow:hidden;
}

.lev-buy__card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.lev-buy__card-body{
  padding: 20px 22px 24px;
}

.lev-buy__card-title{
  font-size:18px;
  font-weight:800;
  color:#0c3b4f;
  margin:0 0 8px;
}

.lev-buy__card-desc{
  font-size:12px;
  color:#0c3b4f;
  line-height:1.35;
  opacity:.85;
  margin:0 0 10px;
}

.lev-buy__card-small{
  font-size:11px;
  color:#0c3b4f;
  opacity:.8;
  margin-bottom:14px;
}

/* =========================
   BOTONES
========================= */

.lev-buy__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:130px;
  height:36px;
  background:#3b8edc;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:12px;
  border-radius:2px;
  box-shadow: 0 1px 0 rgba(0,0,0,.10);
  transition:.15s ease;
}

.lev-buy__btn:hover{
  background:#2f7fc8;
  color:#fff;
}

.lev-buy__btn--small{
  width:120px;
  margin:0 auto;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991.98px){

  .lev-buy__banner{
    grid-template-columns: 150px 1fr auto;
    gap:18px;
  }

  .lev-buy__grid{
    gap:18px;
  }

}

@media (max-width: 767.98px){

  .lev-buy{
    padding: 44px 0 54px;
  }

  .lev-buy__grid{
    grid-template-columns: 1fr;
  }

  .lev-buy__banner{
    grid-template-columns: 1fr;
    text-align:center;
  }

  .lev-buy__banner-cta{
    align-items:center;
  }

  .lev-buy__banner-media{
    display:flex;
    justify-content:center;
  }

  .lev-buy__btn{
    width:160px;
  }

}

@media (max-width: 575.98px){

  .lev-buy__title{
    font-size:28px;
  }

  .lev-buy__subtitle{
    font-size:12px;
  }

  .lev-buy__card-img{
    height:160px;
  }

}


.lev-case__media{
  position:relative;
  width:100%;
  height:100%;
  background:#000;
  cursor:pointer;
}

/* thumbnail como fondo */
.lev-case__media.is-thumb{
  background-size: cover;
  background-position: center;
}

/* botón play */
.lev-case__media.is-thumb::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:68px;
  height:68px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background: rgba(0,0,0,.55);
}

.lev-case__media.is-thumb::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-40%,-50%);
  border-left:22px solid #fff;
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
}


/* ===== Experiencias: más cuadrado + mostrar imagen completa ===== */
 

/* menos aire entre cards */
.lev-exp__rail{ gap: 6px; }       /* antes 22/24 */
.lev-exp__set{  gap: 6px; }       /* si tu set es flex */
.exp-col{       gap: 6px; display: grid;}       /* separación vertical entre fila 1 y 2 */

/* que cada columna sea más angosta => todo se ve más chico */
.exp-col{
  width: 220px;    /* probá 260px si querés aún más chico */
}

/* cards: mantiene tu cuadrado 1/1 pero visualmente más “compacto” */
.exp-card{
  border-radius: 12px;
}

/* cuadrado + sin deformar */
.exp-card img{
  aspect-ratio: 1 / 1;   /* equivalente a 2/2 */
  object-fit: cover;     /* si querés ver TODO: contain */
}

.lev-exp__title {
    text-align: center;
    font-weight: 800;
    color: rgb(12, 59, 79) !important;
    font-size: 28px;
    letter-spacing: -0.01em;
    margin: 0px;
}

.lev-exp__desc {
    text-align: center;
    
    color: rgb(47, 86, 103) !important;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 600;
    margin: 14px auto 0px;
}