.section-estados .section-heading {
  margin-bottom: 28px;
}

.states-map-wrap {
  width: 100%;
  margin: 0 auto 24px;
}


.mapamex {
  width: 100%;
  margin: 0 auto 28px;
  padding: 0;
}

.mapamex svg {
  display: block;
  width: 100%;
  height: auto;
}

.mapamex path {
  stroke: rgba(120, 98, 82, 0.72);
  stroke-width: 1px;
  transition: fill 0.18s ease, stroke 0.18s ease, opacity 0.18s ease;
  cursor: pointer;
}

.mapamex path:hover {
  stroke: var(--rojo);
  stroke-width: 1.2px;
  opacity: 0.92;
}

.map-state-link.is-active path {
  stroke: var(--rojo);
  stroke-width: 1.4px;
}

.states-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.state-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(120, 98, 82, 0.14);
  color: var(--cafe-texto);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.state-pill:hover {
  color: var(--rojo);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(201, 17, 17, 0.18);
  box-shadow: var(--sombra-xs);
  transform: translateY(-1px);
}

.state-pill.is-active {
  color: var(--blanco);
  background: var(--rojo);
  border-color: var(--rojo);
}

.map-state-link.is-highlighted path {
  stroke: var(--rojo);
  stroke-width: 1.8px;
  opacity: 1;
  filter: brightness(0.98);
}

.state-pill.is-highlighted {
  color: var(--blanco);
  background: var(--rojo);
  border-color: var(--rojo);
  box-shadow: 0 10px 20px rgba(201, 17, 17, 0.16);
}

/* videos  */

.videos-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.video-feature,
.videos-list {
  padding: 22px;
}

.video-embed-wrap {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(120, 98, 82, 0.12);
  box-shadow: var(--sombra-xs);
  margin-bottom: 18px;
}

.video-embed-wrap iframe,
.video-embed-wrap embed,
.video-embed-wrap object {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.video-feature-copy h3 {
  font-size: 24px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.videos-list {
  padding: 24px 22px;
}

.videos-list h3 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.12;
}

.videos-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.videos-list-items li {
  margin: 0;
}

.videos-list-items a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(120, 98, 82, 0.10);
  color: var(--cafe-texto);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.videos-list-items a::before {
  content: "▶";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(201, 17, 17, 0.08);
  color: var(--rojo);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.videos-list-items a:hover {
  color: var(--negro);
  background: rgba(255,255,255,0.62);
  border-color: rgba(201, 17, 17, 0.14);
  box-shadow: var(--sombra-xs);
  transform: translateY(-1px);
}

.videos-list-items a:hover::before {
  background: rgba(201, 17, 17, 0.14);
  transform: scale(1.04);
}

.videos-list-items .is-active a {
  background: linear-gradient(180deg, rgba(201, 17, 17, 0.10) 0%, rgba(201, 17, 17, 0.06) 100%);
  border-color: rgba(201, 17, 17, 0.18);
  color: var(--negro);
  box-shadow: var(--sombra-xs);
}

.videos-list-items .is-active a::before {
  background: var(--rojo);
  color: var(--blanco);
}

.video-placeholder {
  min-height: 420px;
}

@media (max-width: 1140px) {
  .videos-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .video-feature,
  .videos-list {
    padding: 18px;
  }

  .videos-list h3 {
    font-size: 22px;
  }

  .videos-list-items a {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
  }

  .videos-list-items a::before {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .video-embed-wrap iframe,
  .video-embed-wrap embed,
  .video-embed-wrap object,
  .video-placeholder {
    min-height: 240px;
  }
}

.videos-list-items li.is-active a {
  color: var(--negro);
  background: rgba(255,255,255,0.62);
  border-color: rgba(201, 17, 17, 0.14);
  box-shadow: var(--sombra-xs);
}

.videos-list-items li.is-active a::before {
  background: var(--rojo);
  color: var(--blanco);
}



.videos-list-items .video-list-copy {
  display: grid;
  gap: 4px;
}

.videos-list-items .video-list-copy small {
  color: var(--rojo);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.videos-list-items .video-list-copy strong {
  font-size: 15px;
  line-height: 1.35;
}


.single-entry-video {
  margin-bottom: 28px;
  padding: 16px;
}

.single-entry-video-embed {
  overflow: hidden;
  border-radius: calc(var(--radio) - 8px);
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(120, 98, 82, 0.12);
  box-shadow: var(--sombra-xs);
}

.single-entry-video-embed iframe,
.single-entry-video-embed embed,
.single-entry-video-embed object {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 0;
}

@media (max-width: 780px) {
  .single-entry-video {
    padding: 12px;
    margin-bottom: 22px;
  }
}


/* musica */

.music-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.music-feature,
.music-list {
  padding: 22px;
}

.music-feature-copy h3 {
  font-size: 26px;
  line-height: 1.12;
  margin-bottom: 16px;
}

.music-player-box {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(120, 98, 82, 0.12);
  box-shadow: var(--sombra-xs);
}

.music-player-box audio {
  width: 100%;
  display: block;
}

.music-progress {
  width: 100%;
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(120, 98, 82, 0.12);
  overflow: hidden;
}

.music-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rojo) 0%, #e45757 100%);
  transition: width 0.12s linear;
}

.music-list h3 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.12;
}

.music-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.music-list-items li {
  margin: 0;
}

.music-list-trigger {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(120, 98, 82, 0.10);
  color: var(--cafe-texto);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.music-list-trigger::before {
  content: "♪";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(201, 17, 17, 0.08);
  color: var(--rojo);
  font-size: 16px;
  font-weight: 800;
}

.music-list-trigger:hover {
  color: var(--negro);
  background: rgba(255,255,255,0.62);
  border-color: rgba(201, 17, 17, 0.14);
  box-shadow: var(--sombra-xs);
  transform: translateY(-1px);
}

.music-list-items li.is-active .music-list-trigger {
  background: linear-gradient(180deg, rgba(201, 17, 17, 0.10) 0%, rgba(201, 17, 17, 0.06) 100%);
  border-color: rgba(201, 17, 17, 0.18);
  color: var(--negro);
  box-shadow: var(--sombra-xs);
}

.music-list-items li.is-active .music-list-trigger::before {
  background: var(--rojo);
  color: var(--blanco);
}

.music-list-copy {
  display: grid;
  gap: 4px;
}

.music-list-copy small {
  color: var(--rojo);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.music-list-copy strong {
  font-size: 15px;
  line-height: 1.35;
}

@media (max-width: 1140px) {
  .music-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .music-feature,
  .music-list {
    padding: 18px;
  }

  .music-feature-copy h3,
  .music-list h3 {
    font-size: 22px;
  }

  .music-list-trigger {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
  }

  .music-list-trigger::before {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

.music-archive-card {
  padding: 18px;
}

.music-archive-copy h2 {
  font-size: 24px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.music-archive-copy .music-player-box {
  margin: 14px 0;
}

@media (max-width: 780px) {
  .music-archive-copy h2 {
    font-size: 22px;
  }
}

/* calendario  */

.calendar-card {
  padding: 24px;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.calendar-current {
  margin: 0;
  text-align: center;
  font-size: 28px;
  line-height: 1.1;
}

.calendar-nav-btn {
  min-height: 44px;
  border: 1px solid rgba(120, 98, 82, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--negro);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.calendar-nav-btn:hover {
  color: var(--rojo);
  border-color: rgba(201, 17, 17, 0.25);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.calendar-weekdays span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: var(--cafe-texto-suave);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.calendar-day {
  min-height: 130px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(120, 98, 82, 0.10);
  box-shadow: var(--sombra-xs);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calendar-day-empty {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.calendar-day-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(86, 79, 72, 0.08);
  color: var(--negro);
  font-size: 13px;
  font-weight: 800;
}

.calendar-day.has-events .calendar-day-number {
  background: rgba(201, 17, 17, 0.10);
  color: var(--rojo);
}

.calendar-day-events {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.calendar-event {
  display: block;
  color: var(--cafe-texto);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

.calendar-event:hover {
  color: var(--rojo);
  text-shadow: 0 0 0.01px currentColor;
}

@media (max-width: 1140px) {
  .calendar-grid,
  .calendar-weekdays {
    gap: 8px;
  }

  .calendar-day {
    min-height: 110px;
    padding: 10px;
  }
}

@media (max-width: 780px) {
  .calendar-card {
    padding: 18px;
  }

  .calendar-toolbar {
    grid-template-columns: 42px 1fr 42px;
    gap: 10px;
  }

  .calendar-current {
    font-size: 22px;
  }

  .calendar-weekdays span {
    min-height: 28px;
    font-size: 11px;
  }

  .calendar-grid {
    gap: 6px;
  }

  .calendar-day {
    min-height: 84px;
    padding: 8px;
    border-radius: 12px;
  }

  .calendar-day-number {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .calendar-event {
    font-size: 11px;
    line-height: 1.25;
  }
}


.calendar-day-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: default;
}

.calendar-day-count {
  display: none;
}

.calendar-day-bubbles {
  display: none;
}

@media (max-width: 999px) {
  .calendar-grid,
  .calendar-weekdays {
    gap: 6px;
  }

  .calendar-day {
    min-height: auto;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
  }

  .calendar-day-trigger {
    min-height: 58px;
    padding: 10px 10px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .calendar-day-empty {
    display: none;
  }

  .calendar-day-number {
    width: 32px;
    height: 32px;
    font-size: 13px;
    flex: 0 0 auto;
  }

  .calendar-day.has-events .calendar-day-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(201, 17, 17, 0.10);
    color: var(--rojo);
    font-size: 12px;
    font-weight: 800;
  }

  .calendar-day.has-events.is-open {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(201, 17, 17, 0.14);
  }

  .calendar-day.has-events .calendar-day-bubbles {
    display: none;
    padding: 0 10px 10px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .calendar-day.has-events.is-open .calendar-day-bubbles {
    display: flex;
  }

  .calendar-event-bubble {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(201, 17, 17, 0.08);
    border: 1px solid rgba(201, 17, 17, 0.12);
    color: var(--rojo);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  }

  .calendar-event-bubble:hover {
    background: var(--rojo);
    border-color: var(--rojo);
    color: var(--blanco);
    transform: translateY(-1px);
  }

  .calendar-day-events {
    display: none;
  }
}


.calendar-day-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: default;
}

.calendar-day-count {
  display: none;
}

.calendar-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.calendar-lightbox.is-open {
  display: block;
}

.calendar-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.55);
  backdrop-filter: blur(3px);
}

.calendar-lightbox-dialog {
  position: relative;
  width: min(560px, calc(100% - 32px));
  margin: 8vh auto 0;
  padding: 24px 22px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.22) 100%), var(--cafe-suave);
  border: 1px solid rgba(120, 98, 82, 0.14);
  box-shadow: var(--sombra-fuerte);
}

.calendar-lightbox-title {
  margin: 0 40px 16px 0;
  font-size: 28px;
  line-height: 1.08;
}

.calendar-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(120, 98, 82, 0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  color: var(--negro);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.calendar-lightbox-close:hover {
  color: var(--rojo);
  background: rgba(255,255,255,0.82);
  transform: translateY(-1px);
}

.calendar-lightbox-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calendar-lightbox-item {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(201, 17, 17, 0.08);
  border: 1px solid rgba(201, 17, 17, 0.12);
  color: var(--rojo);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.calendar-lightbox-item:hover {
  background: var(--rojo);
  border-color: var(--rojo);
  color: var(--blanco);
  transform: translateY(-1px);
}

body.calendar-lightbox-open {
  overflow: hidden;
}

@media (max-width: 999px) {
  .calendar-grid,
  .calendar-weekdays {
    gap: 6px;
  }

  .calendar-day {
    min-height: auto;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
  }

  .calendar-day-trigger {
    min-height: 58px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .calendar-day-empty {
    display: none;
  }

  .calendar-day-number {
    width: 32px;
    height: 32px;
    font-size: 13px;
    flex: 0 0 auto;
  }

  .calendar-day.has-events .calendar-day-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(201, 17, 17, 0.10);
    color: var(--rojo);
    font-size: 12px;
    font-weight: 800;
  }

  .calendar-day-events {
    display: none;
  }
}

@media (max-width: 780px) {
  .calendar-lightbox-dialog {
    width: min(100% - 20px, 560px);
    margin-top: 6vh;
    padding: 20px 18px 18px;
    border-radius: 18px;
  }

  .calendar-lightbox-title {
    font-size: 22px;
    margin-right: 34px;
  }

  .calendar-lightbox-item {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }
}