@font-face {
  font-family: 'Youth';
  src: local('Youth Regular'), local('Youth-Regular'),
    url('../fonts/Youth-Regular.woff2') format('woff2'),
    url('../fonts/Youth-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Youth Bold';
  src: local('Youth Bold'), local('Youth-Bold'),
    url('../fonts/Youth-Bold.woff2') format('woff2'),
    url('../fonts/Youth-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  align-items: center;
  color: #ffffff;
  background: #000;
  box-sizing: border-box;
  display: flex;
  font-family: 'Youth', sans-serif;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  min-height: 100%;
  /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);*/
  text-align: center;
  padding: 60px 0 0;
  width: 100%;
}

h2 {
  color: #ffffff;
  font-family: 'Youth Bold', sans-serif;
  font-size: 2em;
  margin: 1em 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  color: #ffffff;
  font-family: 'Youth Bold', sans-serif;
  font-size: 1.5em;
  margin: 0px 0 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /*background-color: rgb(79, 0, 188);*/
    background-color: rgb(0, 0, 0);
    z-index: 1000;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Header layout: center logo, hamburger on right */
.sticky-header .header-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center; /* centers the logo link */
}

.sticky-header .header-logo {
  display: inline-flex;
    margin-top: 10px;
}

.sticky-header .hamburger {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 36px;
  background: transparent;
  border: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.sticky-header .hamburger .bar {
  height: 3px;
  width: 100%;
  background: #ADFF2F;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Menu dropdown */
.sticky-header .menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background: #000;
  border: 1px solid rgba(173,255,47,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  border-radius: 10px;
  overflow: hidden;
  min-width: 200px;
  display: none;
}

.sticky-header .menu.open {
  display: block;
}

.sticky-header .menu ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.sticky-header .menu ul.secondary-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0px;
}

.sticky-header .menu li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sticky-header .menu li:last-child {
  border-bottom: none;
}

.sticky-header .menu a {
  display: block;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
    font-size: 1em;
    font-family: 'Youth', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.sticky-header .menu a:hover {
  background: rgba(173,255,47,0.08);
  color: #ADFF2F;
}

/* Hamburger active state (optional X animation) */
.sticky-header .hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.sticky-header .hamburger[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.sticky-header .hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.sticky-header img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Estilos de Secciones */
section {
  width: 100%;
  padding: 60px 20px;
  min-height: 90dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10px;
}

/* Separador horizontal */
.separator {
  width: 100%;
  height: 80px;
  background-color: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}
/* Color variants extracted from inline styles */
.separator--lila { color: rgba(188, 172, 255, 1) }
.separator--verde { color: rgba(79, 255, 203, 1) }
.separator--rosa { color: rgba(255, 101, 134, 1) }
.separator--claro { color: rgba(246, 201, 201, 1) }
.separator-stach {color: rgb(246, 201, 201)}
.separator-faqs {color: rgb(246, 201, 201) }
.separator-trip { color: rgb(79, 255, 203) }
.separator-policies { color: rgb(188, 172, 255) }

.separator span {
  font-size: 0.8em;
  font-family: 'Youth', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.separator span:first-child {
  margin-bottom: 20px;
  padding-left: 20px;
}

.separator span:last-child {
  margin-top: 20px;
  padding-right: 20px;
}

.separator img {
  height: 24px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.separator .logo {
  width: 20px;
  height: 20px;
}

/* Sección 1: Poster */
.section-poster {
    background: linear-gradient(0deg,
        rgba(142, 255, 0, 0.8),
        rgba(142, 255, 0, 0.6),
        rgba(79, 0, 188, 0.8)), url(/img/noise.svg);
    color: rgba(79, 0, 188, 0.8);
    margin-top: -40px;
    padding-top: 0;
    text-align: center;
}
.section-poster .container {
    text-align: center;
}
.section-poster img {
    text-align: center;
}
.cartel-image {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.2em;
    border-radius: 10px;
}
.buy-button {
    background-color: #4F00BC;
    color: #ADFF2F;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Youth Bold', sans-serif;
    margin-top: 1.6em;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(79, 0, 188, 0.3);
}
.buy-button:hover {
    background-color: #4F00BC;
    color: #ADFF2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 0, 188, 0.4);
}
.buy-button:active {
    transform: translateY(0);
}

/* Sección 2: Line up sábado 188, 172, 255 */
.section-lineup-sabado {
  background: linear-gradient(0deg,
        rgba(65, 79, 0, 1),
        rgba(65, 79, 0, 0.2),   
        rgba(188, 172, 255, 1)
      ), url(/img/noise.svg);
  color: #4F00BC;
}

.section-lineup-sabado h2 {
    color: rgba(65, 79, 0, 1);
    font-family: 'Youth', sans-serif;
    font-size: 1.4em;
    padding-bottom: 1em;
}

.artist-info {
    display: none;
    position: relative;
    transition: opacity 220ms ease, transform 220ms ease;
}
/* Estado oculto/visible con animación */
.artist-info.is-hidden {
    display: block; /* mantiene en flujo para poder animar opacity/transform */
    opacity: 0;
    transform: translateY(-300px) scale(0.98);
    pointer-events: none;
}
.artist-info.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Transiciones suaves */
@media (prefers-reduced-motion: reduce) {
  .artist-info { transition: none; }
}
.close-artist-info {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(188, 172, 255, 1);
    background: rgba(65, 79, 0, 1);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 1em;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.close-artist-info:hover { filter: brightness(1.1); }
.close-artist-info:focus { outline: 3px solid rgba(188, 172, 255, 0.6); outline-offset: 2px; }
.artist-info img {
    border: rgb(188, 172, 255) 6px solid;
    border-radius: 10px;
    height: auto;
    min-height: 200px;
    min-width: 100%;
    width: 100%;
}
.artist-info h3 {
    color: rgba(65, 79, 0, 1);
    font-family: 'Youth', sans-serif;
    font-size: 1.4em;
    padding-top: 1em;
    padding-bottom: 0;
    letter-spacing: 0;
    text-align: left;
}
.artist-info p {
    color: white;
    font-size: 0.8em;
    text-align: left;
    letter-spacing: 0;
}

#artists-sabado {
    position: relative;
    width: 100%;
    height: 80dvh;
    background-color: rgba(142, 255, 0, 0);
    overflow: hidden; /* evitar que salgan del contenedor */
}

.section-lineup-sabado h3 {
    color:rgb(188, 172, 255);
    font-family: 'Youth', sans-serif;
    font-size: 1.4em;
}
.section-lineup-sabado h4 {
    color:rgb(188, 172, 255);
    font-family: 'Youth', sans-serif;
    font-size: 1.4em;
    margin-bottom: 0;
    text-align: left;
    text-transform: uppercase;
}

/* Círculos base */
#artists-sabado > div {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(188, 172, 255, 1);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    will-change: transform;
    z-index: 2; /* ensure artist circles above background */
}

/* Background floating circles (decorative) */
.bg-floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(188, 172, 255, 0.18);
    border: 1px solid rgba(188, 172, 255, 0.35);
    filter: blur(3px);
    pointer-events: none; /* not clickable */
    will-change: transform;
    z-index: 0;
}

/* Tamaños */
.artist-circle-1 { width: 136px; height: 136px; }
.artist-circle-2 { width: 84px; height: 84px; }
.artist-circle-3 { width: 62px; height: 62px; }

/* Distribución aproximada según la referencia */
#artist-1 { left: 6%;  top: 8% }
#artist-2 { right: 6%; top: 14% }
#artist-3 { left: 22%; top: 36% }
#artist-4 { right: 10%; top: 38% }
#artist-5 { left: 8%;  top: 56% }
#artist-6 { left: 22%; top: 66% }
#artist-7 { right: 10%; top: 66% }
#artist-8 { right: 14%; bottom: 10% }
#artist-9 { left: 10%;  bottom: 18% }
#artist-10{ left: 38%; bottom: 8% }
#artist-11{ left: 50%; top: 28%; }

/* Responsivo básico */
@media (min-width: 768px) {
  .artist-circle-1 { width: 156px; height: 156px; }
  .artist-circle-2 { width: 94px; height: 94px; }
  .artist-circle-3 { width: 74px; height: 74px; }
}

/* Sección 3: Line up domingo rgba(79, 255, 203, 1) */
.section-lineup-domingo {
  background: linear-gradient(0deg,
      rgba(79, 255, 203, 1),
        rgba(107, 0, 45, 0.2),
        rgba(107, 0, 45, 1)
      ), url(/img/noise.svg);
  color: white;
}


.section-lineup-domingo h2 {
    color: rgb(79, 255, 203);
    font-family: 'Youth', sans-serif;
    font-size: 1.4em;
    padding-bottom: 1em;
}
.section-lineup-domingo h3 {
    color:rgb(107, 0, 45 );
    font-family: 'Youth', sans-serif;
    font-size: 1.4em;
}
.section-lineup-domingo h4 {
    color:rgb(79, 255, 203);
    font-family: 'Youth', sans-serif;
    font-size: 1.4em;
    text-align: left;
    text-transform: uppercase;
}
.close-artist-info-domingo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(107, 0, 45, 0.4);
    background: rgba(114, 87, 104, 1);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 1em;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.close-artist-info-domingo:hover { filter: brightness(1.1); }
.close-artist-info-domingo:focus { outline: 3px solid rgba(107, 0, 45, 0.6); outline-offset: 2px; }

/* Domingo: contenedor y círculos (replica del sábado) */
#artists-domingo {
    position: relative;
    width: 100%;
    height: 80dvh;
    background-color: rgba(79, 255, 203, 0);
    overflow: hidden;
}
#artist-image-domingo  {
    border: rgb(107, 0, 45) 6px solid;
    border-radius: 10px;
    height: auto;
    min-height: 200px;
    min-width: 100%;
    width: 100%;
}

#artists-domingo > div {
    align-items: center;
    background-color: rgba(107, 0, 45, 0.8);
    clip-path: polygon(50% 0%, 56.3% 27.6%, 75% 8%, 66.8% 33.2%, 92% 25%, 72.4% 43.7%, 100% 50%, 72.4% 56.3%, 92% 75%, 66.8% 66.8%, 75% 92%, 56.3% 72.4%, 50% 100%, 43.7% 72.4%, 25% 92%, 33.2% 66.8%, 8% 75%, 27.6% 56.3%, 0% 50%, 27.6% 43.7%, 8% 25%, 33.2% 33.2%, 25% 8%, 43.7% 27.6%);
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 2;
}
#artists-domingo > div > span {
    /*background-image: url("img/lineup-domingo/dinosaur-jr.png");*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    clip-path: polygon(50% 0%, 56.3% 27.6%, 75% 8%, 66.8% 33.2%, 92% 25%, 72.4% 43.7%, 100% 50%, 72.4% 56.3%, 92% 75%, 66.8% 66.8%, 75% 92%, 56.3% 72.4%, 50% 100%, 43.7% 72.4%, 25% 92%, 33.2% 66.8%, 8% 75%, 27.6% 56.3%, 0% 50%, 27.6% 43.7%, 8% 25%, 33.2% 33.2%, 25% 8%, 43.7% 27.6%);
    cursor: pointer;
    will-change: transform;
}
#artists-domingo > div > span {
    transform: scale(0.90);
}
.bg-floating-stars--domingo
{
    background: rgba(79, 255, 203, 0.3) !important;
    /*background-color: rgba(107, 0, 45, 0.9) !important;*/
    pointer-events: none;
    will-change: transform;
    z-index: 0;
}

/* Sección 4: Venue */
.section-venue {
  background: linear-gradient(0deg,
        rgba(0, 133, 121, 1),
        rgba(255, 101, 134, 0.2),
        rgba(255, 101, 134, 1)), url(/img/noise.svg);
  color: #ffffff;
}

/* Venue layout */
.venue { max-width: 1100px; margin: 0 auto; padding: 30px 16px 60px; text-align: left; }
.venue-icon { display: block; margin: 0 auto 24px; max-width:20px }
.venue-gallery { max-width: 920px; margin: 0 auto; }
.venue-photo { width: 100%; display: block; border-radius: 6px; box-shadow: 0 6px 24px rgba(0,0,0,.35); margin: 0 auto 24px; }
.venue-address { font-size: 0.8rem; line-height: 1.1; margin: 10px auto 28px; max-width: 920px; }
.venue-how h2, .venue-parking h2 {
    color: rgba(255, 101, 134, 1);
    font-family: 'Youth Bold', sans-serif;
    text-transform: uppercase; letter-spacing: 1px;
    font-size: 1.2em;
}

.transport-list { list-style: none; padding: 0; margin: 10px auto 30px; max-width: 920px; }
.transport-list li { display: grid; grid-template-columns: 130px 1fr; gap: 10px; margin: 14px 0; }
.transport-type { padding-left:4em; font-family: 'Youth Bold', sans-serif; text-transform: uppercase; font-size: 0.8rem; line-height: 0.9; }
.transport-desc { padding-left:4em; font-family: 'Youth', sans-serif; font-size: 0.8rem; line-height: 1.1; }

.venue-parking { max-width: 920px; margin: 10px auto 0; }
.venue-parking p { margin-top: 10px; padding-left:4em;font-size: 0.8rem; line-height: 1.1; }

.venue-map-btn {
    display: inline-block;
    margin: 28px auto 0;
    background: rgba(255,101,134,1);
    color: rgb(0, 133, 121);
    padding: 16px 34px;
    border-radius: 999px;
    font-family: 'Youth Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0,0,0,.3);
}
.venue-map-btn:hover { filter: brightness(1.05); }

.zig-zag-line {
    --a: 90deg; /* control the angle */
    --s: 50px; /* size of the zig-zag */
    --b: 20px;  /* control the thickness */

    margin-top: 1em;

    background: rgb(255, 101, 134);
    height: calc(var(--b) + var(--s)/(2*tan(var(--a)/2)));
    width: 150%;
    margin-left: -20px;
    --_g:var(--s) repeat-x conic-gradient(from calc(var(--a)/-2) at bottom,
    #0000,#000 1deg calc(var(--a) - 1deg),#0000 var(--a));
    mask: 50% calc(-1*var(--b))/var(--_g) exclude,50%/var(--_g);

    z-index: 100;
}
.zig-zag-background {
    display: block;
    background: linear-gradient(
            0deg,
            rgba(255, 101, 134, 0) 10%,
            rgba(255, 101, 134, 1) 80%
    );
    height: 140px;
    margin-top: -25px;
    margin-left: -20%;
    width: 140%;
}

@media (max-width: 768px) {
  .transport-list li { grid-template-columns: 1fr; }
  .venue { padding: 24px 16px 50px; }
}


/* Sección 5: Boletos */
.section-tickets {
  background: linear-gradient(0deg,
        rgba(0, 50, 50, 1),
        rgba(246,201, 201, 0.2),
        rgba(246, 201, 201, 1)), url(/img/noise.svg);
  color: rgba(246, 201, 201, 1);
}

.section-tickets h2 {
    color: rgb(0, 50, 50);
    font-family: 'Youth Bold', sans-serif;
    font-size: 1.2em;
    text-transform: uppercase;
}
.section-tickets h2.label {
    color: rgb(0, 50, 50);
    font-family: 'Youth Bold', sans-serif;
    font-size: 2em;
    margin-top: 0.2em;
}
.section-tickets h2.sub-title {
    color: #ffffff;
    font-family: 'Youth', sans-serif;
    font-size: 1em;
    text-transform: uppercase;
    margin-top: 0.2em;
}

.section-tickets h3 {
    color: rgb(246, 201, 201);
    font-family: 'Youth Bold', sans-serif;
    font-size: 1.2em;
    text-transform: uppercase;
}
.section-tickets h3.label {
    color: rgb(246, 201, 201);
    font-family: 'Youth Bold', sans-serif;
    font-size: 2em;
    margin-top: 0.2em;
}
.section-tickets p {
    color: #ffffff;
    font-size:0.8rem;
    line-height: 1.1;
}
table {
    color: white;
    border-collapse: collapse;
    width: 90%;
    max-width: 340px !important;
    font-family: 'Youth', sans-serif;
    font-size: 0.7em;
}

th, td {
    padding: 10px;
    text-align: left;
    border: none;
}

th {
    border-bottom: 2px solid white;
    color:rgb(0, 50, 50);
}

td {

}

td:first-child {
    border-right: 2px solid white;
    color:rgb(0, 50, 50);
}
th:first-child {
    color:#ffffff;
    border-right: 2px solid white;
}
.empty-cell {
}
.tickets-logo-container {
    text-align: left;
    width: 100%;
}
.tickets-logo-container img {
    max-width: 100px;
    margin-top: 1em;
    margin-bottom: 1em;
}
.tickets-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
.tickets-btn {
    display: inline-block;
    margin: 28px auto 0;
    background: rgba(246, 201, 201);
    color: rgb(0, 50, 50);
    padding: 16px 34px;
    border-radius: 999px;
    font-family: 'Youth Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0,0,0,.3);
}
.tickets-btn:hover { filter: brightness(1.05); }

.ticket-type {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ADFF2F;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
}

.price {
    font-size: 1.5em;
    font-weight: bold;
    color: #ADFF2F;
    margin: 10px 0;
}


/* Sección 6: Merch */
.section-merch {
  background: linear-gradient(0deg,
        rgba(65, 79, 0, 1),
        rgba(65, 79, 0, 0.2),
        rgba(188, 172, 255, 1)), url(/img/noise.svg);
    color: rgba(188, 172, 255, 1);
}
.section-merch h2 {
    color: rgba(65, 79, 0, 1);
    font-family: 'Youth', sans-serif;
    font-size: 1.4em;
}
.section-merch p {
    font-family: 'Youth', sans-serif;
    font-size: 0.8em;
    text-align: center;
    line-height: 1.1;
}
.section-merch img {
    max-width: 100%;
}
.highlight {
    color: #ADFF2F;
    font-weight: bold;
}

/* Estilos para el carrusel con scroll snapping */
.merch-gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.merch-gallery {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.merch-gallery::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.merch-gallery .swiper-wrapper {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
}

.merch-gallery .swiper-slide {
    flex: 0 0 80%;
    max-width: 600px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hacer que el enlace dentro del slide ocupe todo el espacio del slide
   para mejorar la usabilidad táctil (permite tocar cualquier lugar del slide) */
.merch-gallery .swiper-slide {
    position: relative;
}

.merch-gallery .swiper-slide > a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

/* Asegurar que la imagen llene correctamente el contenedor del enlace */
.merch-gallery .swiper-slide > a img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

/* Indicador de foco accesible para navegación por teclado */
.merch-gallery .swiper-slide > a:focus {
    outline: 3px solid rgba(188, 172, 255, 0.6);
    outline-offset: 4px;
}

.merch-gallery .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.merch-gallery .swiper-slide img:hover {
    transform: scale(1.02);
}

/* Botones de navegación redondos */
.carousel-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.9);
    color: rgba(188, 172, 255, 1);
    border: 2px solid rgba(188, 172, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-btn:hover {
    background: rgba(65, 79, 0, 1);
    border-color: rgba(188, 172, 255, 0.8);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .merch-gallery-container {
        gap: 0.5rem;
        padding: 0 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .merch-gallery .swiper-slide {
        flex: 0 0 90%;
    }
}

.merch-btn {
    display: inline-block;
    margin: 1em auto;
    background: rgba(188, 172, 255, 1);
       color: rgba(65, 79, 0, 1);
    padding: 16px 34px;
    border-radius: 999px;
    font-family: 'Youth Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0,0,0,.3);
}
.merch-btn:hover { filter: brightness(1.05); }

/* Sección 7: Stach */
.section-stach {
    background: linear-gradient(0deg,
    rgba(0, 51, 50, 0.8),
    rgba(0, 51, 50, 0.4),
    rgba(246, 201, 201, 1)
    ), url(/img/noise.svg);
    color: rgba(246, 201, 201, 0.8);
    margin-top: -20px;
    padding-top: 0;
    text-align: center;
}
.section-stach .container {
    margin-top: 2em;
}
.section-stach h1,
.section-stach h2,
.section-stach h3 {
    color: rgb(0, 51, 50);
    font-family: 'Youth Bold', sans-serif;
    font-size: 1.4em;
    letter-spacing: 1px;
    margin: 1em 0;
    text-align: left;
    text-transform: uppercase;
}
.section-stach h1.secondary,
.section-stach h2.secondary,
.section-stach h3.secondary {
    color: rgb(246, 201, 201);
}
.section-stach p {
    color: #ffffff;
    font-size: 0.8em;
    line-height: 1.5;
    margin: 0 2em 1em 2em;
    padding-left: 2em;
    text-align: left;
}
.section-stach ul {
    list-style: disc;
    padding: 0;
    margin: 1em 2em;
    text-align: left;
}
.section-stach ol {
    margin: 1em 2em;
    padding-left: 2em;
    text-align: left;
}
.section-stach li::marker {
    color: rgb(246, 201, 201);
}
.section-stach li {
    color: #ffffff;
    font-size: 0.9em;
    line-height: 1.2;
    margin-bottom: 1em;
}
.section-stach .buy-button {
    background-color: rgb(246, 201, 201);
    color: rgb(0, 51, 50);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Youth Bold', sans-serif;
    margin-top: 1.6em;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(246, 201, 201, 0.3);
}
.section-stach .buy-button:hover {
    background-color: rgba(246, 201, 201, 0.8);
    color: rgb(0, 51, 50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 201, 201, 0.4);
}
.section-stach .buy-button:active {
    transform: translateY(0);
}

/* Sección 8: FAQ */
.section-faqs {
    background: linear-gradient(0deg,
        rgba(246, 201, 201, 0.8),
        rgba(246, 201, 201, 0.4),
        rgba(0, 51, 50, 1)
    ), url(/img/noise.svg);
    color: rgba(246, 201, 201, 0.8);
    margin-top: -20px;
    padding-top: 0;
    text-align: center;
}
.section-faqs .container {
    margin-top: 2em;
}
.section-faqs h1,
.section-faqs h2 {
    color: rgb(246, 201, 201);
    font-family: 'Youth Bold', sans-serif;
    font-size: 1.4em;
    margin: 1em 0 0;
    letter-spacing: 1px;
    text-align: left;
    text-transform: uppercase;
}
.section-faqs p {
    color: #ffffff;
    font-size: 0.8em;
    line-height: 1.5;
    margin: 0 2em 1em;
    text-align: left;
}
.section-faqs ul {
    list-style: disc;
    padding: 0;
    margin: 1em 2em;
    text-align: left;
}
.section-faqs li::marker {
    color: rgb(246, 201, 201);
}
.section-faqs li {
    color: #ffffff;
    font-size: 0.9em;
    line-height: 1.2;
    margin-bottom: 1em;
}
.section-faqs .question {
    color: rgb(255, 255, 255);
    display: inline-block;
    font-family: 'Youth Bold', sans-serif;
    margin-bottom: 0.8em;
    text-transform: uppercase;
}
.section-faqs .highlight {
    color: rgb(246, 201, 201);
    font-family: 'Youth Bold', sans-serif;
}
.section-faqs .highlight-secondary {
    color: rgb(0, 51, 50);
}

/* Sección 9: Buen Trip Mal Trip */
.section-trip {
    background: linear-gradient(0deg,
        rgba(0, 133, 21, 0.8),
        rgba(0, 133, 21, 0.4),
        rgba(255, 101, 134, 1)
    ), url(/img/noise.svg);
    color: rgba(255, 101, 134, 0.8);
    margin-top: -20px;
    padding-top: 0;
    text-align: center;
}
.section-trip .container {
    margin-top: 2em;
}
.section-trip h1,
.section-trip h2 {
    color: rgb(0, 133, 21);
    font-family: 'Youth Bold', sans-serif;
    font-size: 1.4em;
    margin: 1em 0 0;
    letter-spacing: 1px;
    text-align: right;
    text-transform: uppercase;
}
.section-trip h1.secondary,
.section-trip h2.secondary {
    color: rgb(255, 101, 134);
}
.section-trip ul {
    list-style: disc;
    padding: 0;
    margin: 1em 2em;
    text-align: left;
}
.section-trip li {
    color: #ffffff;
    font-size: 0.9em;
    line-height: 1.5; /* Added line-height for better readability */
}
.section-trip .flex-row-gap {
    display: flex;
    gap: 0;
}

/* Sección 10: Políticas de privacidad */
.section-policies {
    background: linear-gradient(0deg,
    rgba(65, 79, 0, 0.8),
    rgba(65, 79, 0, 0.4),
    rgba(188, 172, 255, 1)
    ), url(/img/noise.svg);
    color: rgba(255, 255, 255, 1);
    margin-top: -20px;
    padding-top: 0;
    text-align: center;
}
.section-policies .container {
    margin-top: 2em;
}
.section-policies h1,
.section-policies h2,
.section-policies h3 {
    color: rgb(65, 79, 0);
    font-family: 'Youth Bold', sans-serif;
    font-size: 1.4em;
    margin: 1em 0 0;
    letter-spacing: 1px;
    text-align: left;
    text-transform: uppercase;
}
.section-policies h1.secondary,
.section-policies h2.secondary,
.section-policies h3.secondary {
    color: rgb(188, 172, 255);
}
.section-policies p {
    color: #ffffff;
    font-size: 0.8em;
    line-height: 1.5;
    margin: 0 2em 1em;
    text-align: left;
}
.section-policies ul {
    list-style: disc;
    padding: 0;
    margin: 1em 2em;
    text-align: left;
}
.section-policies li {
    color: #ffffff;
    font-size: 0.9em;
    line-height: 1.2;
    margin-bottom: 1em;
}
.section-policies li::marker {
    color: rgb(65, 79, 0);
}
.section-policies ul.secondary {
    list-style: disc;
    padding: 0;
    margin: 1em 2em;
    text-align: left;
}
.section-policies ul.secondary li::marker {
    color: rgb(188, 172, 255);
}


/* Estilos para listas de artistas */
.artist-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: center;
}

.artist-list li {
  font-size: 1.3em;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Youth Bold', sans-serif;
}

@media (min-width: 769px) {
  body {
    padding-top: 60px;
  }

  #desktop-image {
    display: block;
    max-width: 90%;
  }
  
  .tickets-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .sticky-header {
    padding: 8px 15px;
  }

  .sticky-header img {
    height: 35px;
  }
  
  .hamburger-menu {
    right: 15px;
  }

  body {
    padding-top: 60px;
  }

  #mobile-image {
    display: block;
    max-width: 95%;
  }

  .buy-button {
    padding: 16px 32px;
    font-size: 1.1em;
  }

  .bundle-image {
    max-width: 95%;
    margin: 15px 0;
  }
  
  section {
    padding: 40px 15px;
  }
  
  .separator {
    height: 60px;
    padding: 0 10px;
  }
  
  .separator span:first-child,
  .separator span:last-child {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .container {
    padding: 0 5px;
  }
}

/* Footer Styles */
.site-footer {
  width: 100%;
  height: 80px;
  background-color: #000000;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  overflow-x: hidden;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-right {
  display: flex;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-circle {
  width: 22px;
  height: 22px;
  background-color: #ACFF3A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #000;
}

.social-circle:hover {
  background-color: #8EFF00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(172, 255, 58, 0.3);
}

.social-circle svg {
  width: 10px;
  height: 10px;
}


.hidden-content {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (min-width: 769px) {
    body {
        padding-top: 100px;
    }

    #desktop-image {
        display: block;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .sticky-header {
        padding: 8px 15px;
    }

    .sticky-header img {
        height: 35px;
    }

    body {
        padding-top: 70px;
        /* Adjusted for mobile */
    }

    #mobile-image {
        display: block;
        max-width: 95%;
    }

    .buy-button {
        padding: 16px 32px;
        font-size: 1.1em;
    }

    .bundle-image {
        max-width: 95%;
        margin: 15px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .buy-button {
        transition: none;
    }

    .buy-button:hover {
        transform: none;
    }

    .bundle-image {
        transition: none;
    }

    .bundle-image:hover {
        transform: none;
    }
}

/* Utilities extracted from inline styles */
.flex-row-gap { display: flex; gap: 20px; }
.col-10 { flex: 0 0 10%; }
.col-20 { flex: 0 0 20%; }
.col-30 { flex: 0 0 30%; }
.col-40 { flex: 0 0 40%; }
.col-50 { flex: 0 0 50%; }
.col-60 { flex: 0 0 60%; }
.col-70 { flex: 0 0 70%; }
.col-80 { flex: 0 0 80%; }
.col-90 { flex: 0 0 90%; }
.col-100 { flex: 0 0 100%; }
.flex-col-between { display: flex; flex-direction: column; justify-content: space-between; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.pl-1em { padding-left: 1em; }
.full-center { width: 100%; text-align: center; }
.min-h-400 { min-height: 400px; }
.h-100 { height: 100%; }
.mt-2em { margin-top: 2em; }

/* Responsive footer */
@media (max-width: 768px) {
  .site-footer {
    height: 70px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-logo {
    height: 30px;
  }
  
  .social-links {
    gap: 6px;
  }
  
  .social-circle {
    width: 24px;
    height: 24px;
  }
  
  .social-circle svg {
    width: 8px;
    height: 8px;
  }
}