:root {
  --blue: #1a789e;
  --orange: #e2831e;
  --purple: #761354;
  --red: #a21e00;
  --teal: #139da3;
  --cream: #f7f3ec;
  --light: #f5f5f5;
  --text: #17333d;
  --radius: 16px;
  --font-title: 'Cabinet Grotesk', 'Anton SC', 'Arial Black', system-ui, sans-serif;
  --font-body: 'General Sans', 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  max-width: 100%
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: 96%;
  max-width: 1800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.brand {
  display: flex;
  align-items: center;
  width: auto;
  height: 48px;
}

.brand img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .12));
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--blue)
}

.main-nav a {
  padding: 12px 16px;
  border-radius: 999px
}

.main-nav a:hover {
  background: rgba(26, 120, 158, .1)
}




.nav-ticket {
  background: transparent;
  color: inherit;
  font-weight: normal;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.media-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.media-slide.active {
  opacity: 1;
}

@keyframes kenburns {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

.zoom-effect {
  animation: kenburns 3s linear forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .32));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(580px, 80vw)
}

.hero-logo {
  width: 100%;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, .35))
}

/* Vistal-style Hero Scroll Track */
.hero-scroll-track {
  position: relative;
  height: 200vh;
  /* Scroll track height */
  background: #000;
}

.hero-sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-sticky-logo {
  position: absolute;
  top: 15%;
  /* Empieza desde más arriba */
  z-index: 2;
  width: min(580px, 80vw);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
  pointer-events: none;
}

.hero-content-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 80px;
  z-index: 3;
  color: #fff;
  opacity: 0;
  transform: translateY(60px);
  will-change: transform, opacity;
}

.hero-content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
}

.hero-content-wrap h1 {
  font-family: var(--font-title, 'Cabinet Grotesk', sans-serif);
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  color: var(--orange, #e2831e);
}

.hero-content-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-content-right p {
  font-size: 1.25rem;
  line-height: 1.45;
  margin: 0;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--orange, #e2831e);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s, opacity 0.2s;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.button-primary:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s, background 0.2s;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
}

/* Mobile responsive styles */
@media (max-width: 760px) {
  .hero-content-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-content-bottom {
    padding-bottom: 40px;
  }

  .hero-content-wrap h1 {
    font-size: 28px;
  }

  .hero-content-right p {
    font-size: 1rem;
  }

  .button-primary,
  .button-secondary {
    padding: 12px 24px;
    font-size: 0.9rem;
    flex: 1;
  }
}


.section-inner {
  width: min(1376px, calc(100% - 64px));
  margin-inline: auto
}

.section-inner.narrow {
  width: min(1160px, calc(100% - 64px))
}

section h2 {
  font-family: var(--font-title);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -.02em
}

.countdown-section {
  position: relative;
  background: var(--blue);
  padding: 90px 0;
  color: #fff;
  overflow: hidden
}

.countdown-section:before,
.newsletter:before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 25% 35%, rgba(255, 255, 255, .15), transparent 32%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, .12), transparent 26%);
  opacity: .7
}

.countdown-section .section-inner,
.expect-section .section-inner {
  position: relative;
  z-index: 1
}

.countdown-section::after,
.expect-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/textura%20fondo.png');
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.expect-section::after {
  opacity: 0.05;
}

.countdown-section h2 {
  color: var(--orange);
  margin-bottom: 42px
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center
}

.time-box strong {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(70px, 9vw, 128px);
  line-height: .85;
  color: #fff
}

.time-box span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em
}

.expect-section {
  position: relative;
  background: rgba(0, 166, 76, .05);
  padding: 130px 0;
  overflow: hidden
}

.expect-section h2 {
  color: var(--blue);
  margin-bottom: 58px
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
  align-items: center
}

.stat {
  min-height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center
}

.stat strong {
  font-family: var(--font-title);
  font-size: clamp(70px, 7vw, 96px);
  line-height: .9;
  color: var(--blue)
}

.stat span {
  font-family: var(--font-title);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue)
}

.stat.badge {
  background: #fff;
  border: 1px solid var(--blue);
  border-radius: 24px;
  overflow: hidden;
  justify-content: flex-end
}

.stat.badge strong {
  margin: auto 0
}

.stat.badge span {
  width: 100%;
  margin-top: 0;
  padding: 13px 14px;
  background: var(--blue);
  color: #fff
}

.primary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 32px) / 3);
  margin: 64px auto 0;
  padding: 22px 44px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  box-sizing: border-box;
}

.program-section {
  position: relative;
  background: rgba(0, 166, 76, .05);
  padding: 80px 0;
  overflow: hidden;
}

.program-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/textura%20fondo.png');
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.program-section .section-inner {
  position: relative;
  z-index: 1;
  width: min(1376px, calc(100% - 64px));
  max-width: 100%;
}

@media (max-width: 760px) {
  .program-section .section-inner {
    width: min(100% - 32px, 680px);
    max-width: 100%;
  }
}

.program-section h2 {
  color: var(--blue);
  margin-bottom: 56px
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1028px;
  margin: 0 auto;
  gap: 16px;
}

.play-card-wrapper {
  --c: var(--purple);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-card-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.play-card-wrapper.orange {
  --c: var(--orange);
}

.play-card-wrapper.red {
  --c: var(--red);
}

.play-card-wrapper.teal {
  --c: var(--teal);
}

.play-card {
  position: relative;
  height: 310px;
  display: block;
  flex-grow: 1;
}

.play-card .image-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  aspect-ratio: unset;
}

.play-card .carousel-track img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 95%);
  color: #fff;
  box-sizing: border-box;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.country-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.kids-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 12px;
}

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.card-meta h3 {
  font-family: var(--font-title);
  font-size: 18px;
  line-height: 1.1;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  white-space: normal;
}

.theatre-logos {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theatre-logos img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.theatre-logos img[alt="Koubek Center"],
.theatre-logos img[alt="Westchester Cultural Arts Center"] {
  height: 32px;
}

.theatre-logos img:hover {
  opacity: 1;
}

.ticket-btn {
  background: #fff;
  color: var(--c);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  pointer-events: auto;
}

.ticket-btn:hover {
  transform: scale(1.05);
  background-color: #f5f5f5;
}

.dates {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 0;
}

.dates>div {
  background: var(--c);
  color: #fff;
  text-align: center;
  padding: 8px 4px;
}

.dates span {
  display: block;
  font-size: 11px;
  font-weight: normal;
  text-transform: uppercase;
}

.dates strong {
  display: block;
  font-family: var(--font-title);
  font-size: 26px;
  line-height: .95;
}

.dates em {
  display: block;
  font-size: 11px;
  font-style: normal;
  font-weight: normal;
}

.dates .foro-label {
  display: block;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.85;
}

.play-img {
  width: 100%;
  height: 366px;
  object-fit: cover;
  object-position: center;
  margin-top: 0
}

.play-card:nth-child(6) .play-img {
  object-position: center 32%
}

.play-card:nth-child(7) .play-img {
  object-position: center 20%
}

.footer-wrapper {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.footer-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/textura%20fondo.png');
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.newsletter {
  position: relative;
  padding: 30px 24px 10px;
  text-align: center;
  z-index: 1;
  background: transparent !important;
}

.newsletter .section-inner {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px 40px 10px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter h2 {
  font-size: clamp(34px, 4vw, 48px);
  color: var(--blue);
  text-transform: none
}

.newsletter p {
  max-width: 760px;
  margin: 14px auto 38px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600
}

.signup {
  display: flex;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: #fff
}

.signup input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 14px 18px;
  font-size: 16px;
  color: var(--blue)
}

.signup button {
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 30px;
  cursor: pointer
}

.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent !important;
  color: #fff;
  padding: 10px 64px 30px;
  z-index: 1;
}

.site-footer .footer-logo {
  max-width: 250px;
  width: 250px;
}

.site-footer nav {
  display: flex;
  gap: 20px;
  font-weight: normal
}

@media (max-width:1100px) {
  .program-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .countdown {
    gap: 20px
  }

  .main-nav a:not(.nav-ticket) {
    display: none
  }

  .play-card {
    min-height: auto
  }

  .card-info {
    flex-direction: column;
    gap: 20px;
    min-height: unset;
  }

  .actions {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 16px;
  }

  .ticket {
    width: auto;
    font-size: 18px;
  }

  .logos-wrapper {
    flex-direction: row;
    gap: 12px;
    margin-top: 0;
  }
}

@media (max-width:760px) {
  .site-header {
    top: 12px
  }

  .brand {
    height: 40px;
  }

  .brand img {
    height: 100%;
    width: auto;
  }

  .main-nav {
    font-size: 14px
  }

  .nav-ticket {
    padding: 10px 12px !important
  }

  .section-inner,
  .section-inner.narrow {
    width: min(100% - 32px, 680px)
  }

  .hero {
    min-height: 82vh
  }

  .countdown-section,
  .expect-section {
    padding: 70px 0
  }

  .newsletter {
    padding: 30px 0 10px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px
  }

  .stats-grid {
    grid-template-columns: 1fr
  }

  .primary-cta {
    width: 50%;
    max-width: 240px;
    padding: 11px 22px;
    font-size: 18px;
    margin: 32px auto 0;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .play-card {
    height: auto;
    aspect-ratio: 7 / 5;
  }

  .card-content {
    padding: 20px;
  }

  .card-meta h3 {
    font-size: 22px;
  }

  .dates>div {
    padding: 12px 6px;
  }



  .signup {
    border-radius: 24px;
    flex-direction: column
  }

  .signup button {
    width: 100%
  }

  .site-footer {
    flex-direction: column;
    text-align: center
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: center
  }
}

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

/* ==========================================================================
   Subpages Style System
   ========================================================================== */

/* Subpage Banner styles */
.subpage-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.subpage-hero:before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 40%, rgba(255, 255, 255, .12), transparent 30%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .1), transparent 25%);
  opacity: .8;
}

.subpage-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(38px, 6vw, 64px);
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  color: var(--orange);
}

.subpage-hero p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Teatros styles */
.teatros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 80px 0;
}

.theater-card {
  background: #fff;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theater-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(26, 120, 158, 0.12);
}

.theater-card h3 {
  font-family: var(--font-title);
  font-size: 32px;
  color: var(--blue);
  margin: 0 0 15px;
  text-transform: uppercase;
}

.theater-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.theater-info p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.theater-info strong {
  color: var(--blue);
}

.theater-card .web-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  font-size: 16px;
  transition: color 0.2s;
}

.theater-card .web-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

/* Agenda styles */
.agenda-list {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.agenda-item {
  display: flex;
  background: #fff;
  border: 1px solid var(--c, var(--purple));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.agenda-item:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.agenda-item.purple {
  --c: var(--purple);
}

.agenda-item.orange {
  --c: var(--orange);
}

.agenda-item.red {
  --c: var(--red);
}

.agenda-item.teal {
  --c: var(--teal);
}

.agenda-dates-col {
  width: 160px;
  background: var(--c);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 15px;
  text-align: center;
  flex-shrink: 0;
}

.agenda-date-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  width: 100%;
}

.agenda-date-box:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.agenda-date-box span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.agenda-date-box strong {
  display: block;
  font-family: var(--font-title);
  font-size: 36px;
  line-height: 0.95;
}

.agenda-date-box em {
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  margin-top: 2px;
}

.agenda-content-col {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.agenda-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

.agenda-header h3 {
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
  color: var(--c);
}

.agenda-header .country-badge {
  background: var(--c);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
}

.agenda-meta {
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--text);
  opacity: 0.9;
  line-height: 1.4;
}

.agenda-meta p {
  margin: 4px 0;
}

.agenda-meta strong {
  color: var(--c);
}

.agenda-desc {
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 20px;
}

.agenda-extra {
  font-size: 14px;
  line-height: 1.4;
  background: rgba(226, 131, 30, 0.08);
  border-left: 3px solid var(--orange);
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  color: var(--text);
}

.agenda-foro-alert {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(226, 131, 30, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 6px;
}

.agenda-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
  margin-top: auto;
}

.agenda-logos {
  display: flex;
  gap: 12px;
}

.agenda-logos img {
  height: 35px;
  max-width: 90px;
  object-fit: contain;
}

.agenda-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--c);
  color: #fff;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s, filter 0.2s;
}

.agenda-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.agenda-img-col {
  width: 260px;
  position: relative;
  flex-shrink: 0;
}

.agenda-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Obra Interna Detail styles */
.obra-detail-section {
  padding: 80px 0;
}

.obra-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
  align-items: start;
}

.obra-image-box {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c, var(--purple));
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.obra-image-box.purple {
  --c: var(--purple);
}

.obra-image-box.orange {
  --c: var(--orange);
}

.obra-image-box.red {
  --c: var(--red);
}

.obra-image-box.teal {
  --c: var(--teal);
}

.obra-image-box img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.obra-info-box h2 {
  text-align: left;
  margin-bottom: 10px;
  font-size: clamp(36px, 5vw, 54px);
  color: var(--c);
}

.obra-info-box.purple {
  --c: var(--purple);
}

.obra-info-box.orange {
  --c: var(--orange);
}

.obra-info-box.red {
  --c: var(--red);
}

.obra-info-box.teal {
  --c: var(--teal);
}

.obra-country-pill {
  display: inline-block;
  background: var(--c);
  color: #fff;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 99px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 15px;
}

.obra-synopsis {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: var(--text);
}

.obra-cast-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  background: var(--light);
  margin-bottom: 30px;
}

.obra-cast-card h4 {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--c);
}

.obra-cast-card p {
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.4;
}

.obra-cast-card strong {
  color: var(--c);
}

.obra-dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.obra-date-card {
  background: var(--c);
  color: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  position: relative;
}

.obra-date-card span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.obra-date-card strong {
  display: block;
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 0.95;
  margin: 2px 0;
}

.obra-date-card em {
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.obra-date-card .foro-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(226, 131, 30, 0.4);
}

.obra-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 25px;
}

.obra-main-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  border-radius: 999px;
  background: var(--c);
  color: #fff;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}

.obra-main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Subpage Responsive overrides */
@media (max-width: 1100px) {
  .teatros-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .agenda-item {
    flex-direction: column;
  }

  .agenda-dates-col {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    padding: 15px;
  }

  .agenda-date-box {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0;
    padding-right: 15px;
  }

  .agenda-date-box:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .agenda-img-col {
    width: 100%;
    height: 250px;
    order: -1;
  }

  .obra-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .obra-image-box img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 760px) {
  .agenda-dates-col {
    flex-wrap: wrap;
    gap: 10px;
  }

  .agenda-date-box {
    border-right: 0;
    padding-right: 0;
    width: 45%;
  }

  .agenda-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .agenda-footer {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    text-align: center;
  }

  .agenda-logos {
    justify-content: center;
  }
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

/* Header scroll states */
.site-header {
  color: #fff;
}

.site-header .main-nav a {
  font-weight: normal;
  color: #fff;
  transition: color 0.3s ease;
}

.site-header.scrolled {
  color: var(--blue);
}

.site-header.scrolled .main-nav a {
  color: var(--blue);
}

/* Logo toggle */
.site-header .brand .logo-color {
  display: none;
}

.site-header.scrolled .brand .logo-white {
  display: none;
}

.site-header.scrolled .brand .logo-color {
  display: block;
}


/* Button Animations */
.ticket:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  filter: brightness(1.15);
}

.more:hover {
  background: var(--c);
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.ticket:active,
.more:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* Image Carousel Styles */
.image-carousel {
  width: 100%;
  aspect-ratio: 5 / 3;
  height: auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  scroll-snap-align: start;
}

.carousel-track img.is-portrait {
  object-position: center center;
}

.carousel-track img.is-landscape {
  object-position: center center;
}

/* Robinson Crusoe special play card overrides */
.play-card-wrapper.special .dates>div {
  padding: 10px 7px !important;
}

.play-card-wrapper.special .dates img[alt="Key Biscayne"] {
  width: auto !important;
  height: 32px !important;
}

.play-card-wrapper.special .dates img[alt="MDCA"] {
  height: 24px !important;
}

.play-card-wrapper.special .dates img[alt="Koubek Center"] {
  height: 20px !important;
}

.play-card-wrapper.special .dates .ticket {
  font-size: 13px !important;
  padding: 4px 14px !important;
}

/* Scroll Down Indicator Styles */
.scroll-down-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s ease;
}

.mouse-outline {
  width: 28px;
  height: 104px;
  border: 2.5px solid #ffffff;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 0 8px rgba(255, 255, 255, 0.25);
}

.mouse-arrow {
  width: 6px;
  height: 16px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
  animation: scrollArrowAnim 2s infinite ease-in-out;
}

.scroll-text {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

@keyframes scrollArrowAnim {
  0% {
    transform: translateY(0);
    opacity: 0.2;
  }

  20% {
    opacity: 1;
  }

  80% {
    transform: translateY(64px);
    opacity: 0;
  }

  100% {
    transform: translateY(64px);
    opacity: 0;
  }
}

/* Hero Intro Image Fade-out */
.hero-intro-img {
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
  background-color: #000;
}

.hero-intro-img img {
  object-fit: contain !important;
}

@media (max-width: 768px) {
  .hero-intro-img img {
    object-fit: cover !important;
  }
}

.hero-intro-img.fade-out {
  opacity: 0;
  pointer-events: none;
}