: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;
  background: url('assets/4ebcd46707cabf9e2aa68542c977186e4f8ba4b4.png') center/cover no-repeat;
  transform: scale(1.05)
}

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

.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))
}

.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 {
  padding: 80px 0
}

.program-section .section-inner {
  width: calc(100% - 64px);
  max-width: 100%;
}

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

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px
}

.play-card {
  --c: var(--purple);
  background: #fff;
  border: 1px solid var(--c);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 780px;
  color: var(--c)
}

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

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

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

.country {
  background: var(--c);
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  padding: 12px 16px
}

.kids-day {
  background: var(--c);
  color: #fff;
  text-align: center;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 600;
  padding: 10px 22px
}

.card-info {
  display: flex;
  gap: 16px;
  padding: 24px 20px;
  min-height: 236px;
  flex: 1;
}

.copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.copy h3 {
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 1.04;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .02em
}

.copy p {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 14px
}

.more {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c);
  border-radius: 999px;
  background: var(--light);
  padding: 7px 14px;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600
}

.actions {
  width: 144px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.ticket {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 143px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--c);
  color: #fff;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600
}

.actions img {
  max-width: 122px;
  max-height: 58px;
  object-fit: contain
}

.logos-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.actions .wide-logo {
  max-width: 128px;
  max-height: 56px
}

.dates {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1px;
  background: #fff;
  border-top: 1px solid var(--c);
  margin-top: auto
}

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

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

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

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

.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(8) .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: 80px 24px 40px;
  text-align: center;
  z-index: 1;
  background: transparent !important;
}

.newsletter .section-inner {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  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: 20px 64px 60px;
  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(2, 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,
  .newsletter {
    padding: 70px 0
  }

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

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

  .primary-cta {
    width: 100%
  }

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

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

  .copy h3 {
    font-size: 24px
  }

  .actions {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .ticket {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    width: auto;
    font-size: 17px
  }

  .dates > div {
    padding: 14px 6px
  }

  .play-img {
    height: 300px
  }

  .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
  }
}

/* ==========================================================================
   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 / 4;
  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;
  scroll-snap-align: start;
}
