:root {
  --charcoal: #221c1c;
  --warm-white: #fffefb;
  --burgundy: #912230;
  --burgundy-dark: #700c0c;
  --ivory: #f6f4f3;
  --muted: #7a706a;
  --border: rgba(34, 28, 28, 0.18);
  --shadow: 0 16px 40px rgba(24, 19, 19, 0.12);
  --radius-soft: 18px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
}

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

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

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-light {
  background: var(--ivory);
}

.mission {
  background: var(--warm-white);
  padding-top: 40px;
  padding-bottom: 40px;
}

.intro-facts {
  padding-bottom: 40px;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.section-kicker i {
  margin-right: 6px;
}

.center-heading {
  text-align: center;
}

.section-kicker.light {
  color: rgba(255, 254, 251, 0.8);
}

h1, h2, h3 {
  margin: 0 0 20px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

h1, h2 {
  font-weight: 300;
}

h3 {
  font-weight: 300;
}

h1 {
  font-size: clamp(3.2rem, 5vw, 7rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.2rem, 3vw, 4rem);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 2rem);
}

.static-heading {
  margin: 0 0 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-size: clamp(2.2rem, 3vw, 4rem);
  color: var(--charcoal);
}

p {
  margin: 0 0 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(34, 28, 28, 0.8);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--burgundy);
  border-bottom: 1px solid rgba(255, 254, 251, 0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(17, 15, 15, 0.55) 0%, rgba(17, 15, 15, 0) 100%);
  border-bottom-color: transparent;
}

body.home .site-header.is-scrolled {
  background: var(--burgundy);
  border-bottom-color: rgba(255, 254, 251, 0.08);
  box-shadow: 0 10px 30px rgba(17, 15, 15, 0.18);
}

body.home .site-header:not(.is-scrolled) .header-cta,
body.home .site-header:not(.is-scrolled) .header-cta-mobile {
  background: var(--burgundy);
  box-shadow: 0 8px 22px rgba(145, 34, 48, 0.4);
}

body.home .site-header:not(.is-scrolled) .header-cta:hover,
body.home .site-header:not(.is-scrolled) .header-cta-mobile:hover {
  background: var(--burgundy-dark);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  color: var(--warm-white);
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  color: rgba(255, 254, 251, 0.82);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--warm-white);
}

.header-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: 4px;
  border: 1px solid rgba(255, 254, 251, 0.35);
  border-radius: 50%;
  color: var(--warm-white);
  font-size: 1rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.header-instagram:hover {
  background: rgba(255, 254, 251, 0.15);
  border-color: var(--warm-white);
}

.header-instagram-mobile {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 254, 251, 0.82);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-trigger:hover,
.nav-item.is-open .nav-trigger,
.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger {
  color: var(--warm-white);
}

.nav-caret {
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret,
.nav-item.is-open .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 40;
  min-width: 190px;
  margin: 14px 0 0;
  padding: 10px;
  list-style: none;
  background: var(--warm-white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--charcoal) !important;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-dropdown a:hover {
  background: var(--ivory);
  color: var(--burgundy) !important;
}

.nav-dropdown a.active {
  color: var(--burgundy) !important;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button.header-cta-mobile {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 300;
  font-size: 0.94rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--burgundy);
  color: var(--warm-white);
  box-shadow: 0 8px 22px rgba(145, 34, 48, 0.2);
}

.button-primary:hover {
  background: var(--burgundy-dark);
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 254, 251, 0.8);
  color: var(--warm-white);
}

.button-dark {
  background: var(--charcoal);
  color: var(--warm-white);
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slideshow-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.6s ease;
  will-change: opacity, transform;
}

.slideshow-layer.is-active {
  z-index: 1;
  opacity: 1;
}

.slideshow-layer.is-zooming {
  animation: slideshow-kenburns 5.6s linear forwards;
}

@keyframes slideshow-kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

.media-panel[data-slideshow] {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.media-panel.stacked-frame[data-slideshow] {
  min-height: 520px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 15, 15, 0.82) 0%, rgba(17, 15, 15, 0.45) 30%, rgba(17, 15, 15, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 860px;
  padding: 140px 0 80px;
}

.hero-copy {
  max-width: 760px;
  color: var(--warm-white);
}

.eyebrow {
  color: rgba(255, 254, 251, 0.8);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 22px;
}

.hero-copy h1 {
  max-width: 720px;
  color: var(--warm-white);
}

.hero-text {
  max-width: 610px;
  font-size: 1.2rem;
  color: rgba(255, 254, 251, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.stats-banner {
  position: relative;
  margin-top: -38px;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 10px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 28px 18px;
  background: rgba(255, 254, 251, 0.96);
  border: 1px solid rgba(34, 28, 28, 0.06);
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(34, 28, 28, 0.06);
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(34, 28, 28, 0.75);
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}

.value-prop {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.value-prop .section-kicker {
  margin-bottom: 18px;
}

.value-prop-title {
  margin-bottom: 0;
}

.value-prop-divider {
  width: 100%;
  height: 1px;
  margin: 34px 0;
  background: rgba(34, 28, 28, 0.14);
}

.value-prop-text {
  font-size: 1.1rem;
  color: rgba(34, 28, 28, 0.72);
}

.value-prop-text strong {
  color: var(--charcoal);
  font-weight: 700;
}

.sedes-section {
  padding-top: 50px;
  padding-bottom: 0;
}

.events-preview {
  padding-bottom: 50px;
}

.faq-section {
  padding-top: 50px;
}

.sedes-section .section-heading {
  margin-bottom: 44px;
}

.sedes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sede-tile {
  position: relative;
  display: block;
  height: 560px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.sede-tile.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sede-tile:nth-child(1) {
  transition-delay: 0s;
}

.sede-tile:nth-child(2) {
  transition-delay: 0.15s;
}

.sede-tile:nth-child(3) {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .sede-tile {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.testimonial-card.reveal:nth-child(1) {
  transition-delay: 0s;
}

.testimonial-card.reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.testimonial-card.reveal:nth-child(3) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.sede-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sede-tile:hover img,
.sede-tile:focus-visible img,
.sede-tile.is-active img {
  transform: scale(1.06);
}

.sede-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(34, 28, 28, 0) 40%, rgba(34, 28, 28, 0.85) 100%),
    rgba(34, 28, 28, 0.4);
  transition: background 0.4s ease;
}

.sede-tile:hover .sede-overlay,
.sede-tile:focus-visible .sede-overlay,
.sede-tile.is-active .sede-overlay {
  background:
    linear-gradient(180deg, rgba(34, 28, 28, 0) 40%, rgba(34, 28, 28, 0.85) 100%),
    rgba(34, 28, 28, 0.1);
}

.sede-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 30px;
  color: var(--warm-white);
  text-shadow: 0 2px 14px rgba(34, 28, 28, 0.55);
}

.sede-eyebrow {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 254, 251, 0.75);
}

.sede-info h3 {
  margin: 0 0 18px;
  color: var(--warm-white);
  font-size: 1.9rem;
}

.sede-more {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  background: var(--burgundy);
  color: var(--warm-white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
}

.sede-tile:hover .sede-more,
.sede-tile:focus-visible .sede-more,
.sede-tile.is-active .sede-more {
  opacity: 1;
  transform: translateY(0);
}

.sede-more:hover {
  background: var(--burgundy-dark);
}

.clases-section {
  padding-top: 40px;
  padding-bottom: 0;
}

.clases-section .section-heading {
  margin-bottom: 44px;
}

.clases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clase-tile {
  position: relative;
  display: block;
  height: 460px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.clase-tile.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.clase-tile:nth-child(1) { transition-delay: 0s; }
.clase-tile:nth-child(2) { transition-delay: 0.08s; }
.clase-tile:nth-child(3) { transition-delay: 0.16s; }
.clase-tile:nth-child(4) { transition-delay: 0.24s; }
.clase-tile:nth-child(5) { transition-delay: 0.32s; }
.clase-tile:nth-child(6) { transition-delay: 0.4s; }
.clase-tile:nth-child(7) { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .clase-tile {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.clase-tile-wide {
  grid-column: 1 / -1;
}

.clase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.clase-tile:hover img {
  transform: scale(1.06);
}

.clase-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(34, 28, 28, 0) 40%, rgba(34, 28, 28, 0.85) 100%),
    rgba(34, 28, 28, 0.35);
  transition: background 0.4s ease;
}

.clase-tile:hover .clase-overlay {
  background:
    linear-gradient(180deg, rgba(34, 28, 28, 0) 40%, rgba(34, 28, 28, 0.85) 100%),
    rgba(34, 28, 28, 0.1);
}

.clase-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 254, 251, 0.92);
  color: var(--charcoal);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clase-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 28px;
  color: var(--warm-white);
  text-shadow: 0 2px 14px rgba(34, 28, 28, 0.55);
}

.clase-info h3 {
  margin: 0 0 8px;
  color: var(--warm-white);
  font-size: 1.5rem;
}

.clase-info p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 254, 251, 0.85);
  max-width: 360px;
}

.clase-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--burgundy);
  color: var(--warm-white);
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: none;
  transition: background 0.25s ease;
}

.clase-cta:hover {
  background: var(--burgundy-dark);
}

.clase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.clase-actions .clase-cta {
  margin-top: 0;
}

.clase-cta-secondary {
  background: transparent;
  border: 1.5px solid rgba(255, 254, 251, 0.85);
  color: var(--warm-white);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.clase-cta-secondary:hover {
  background: var(--warm-white);
  border-color: var(--warm-white);
  color: var(--charcoal);
}

.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.location-card,
.event-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(34, 28, 28, 0.08);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 28px 24px;
}

.accent-border {
  border-top: 4px solid var(--burgundy);
}

.card-number {
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--burgundy);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: rgba(145, 34, 48, 0.08);
  color: var(--burgundy);
  font-size: 1.7rem;
}

.feature-schedule {
  background: linear-gradient(180deg, rgba(34, 28, 28, 0.03), rgba(34, 28, 28, 0.06));
}

.schedule-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: center;
}

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

.schedule-card {
  padding: 24px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 28, 28, 0.08);
  box-shadow: var(--shadow);
}

.featured-schedule {
  background: linear-gradient(180deg, rgba(145, 34, 48, 0.08), rgba(255, 255, 255, 0.94));
  transform: translateY(-8px);
}

.schedule-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(145, 34, 48, 0.08);
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-card h3 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.schedule-card p {
  margin: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.media-panel img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.stacked-frame img {
  min-height: 520px;
  border-radius: 30px 30px 0 30px;
}

.media-panel[data-slideshow] img {
  box-shadow: 0 24px 56px rgba(24, 19, 19, 0.28);
  transition: box-shadow 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  .media-panel[data-slideshow] img {
    transition: none;
  }

  .slideshow-layer {
    transition: none;
  }

  .slideshow-layer.is-zooming {
    animation: none;
  }
}

@media (min-width: 981px) {
  .mission .split-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .mission .media-panel img {
    min-height: 380px;
    max-width: 88%;
    margin-left: auto;
  }

  .what-is-barre .media-panel img {
    min-height: 420px;
  }

  .step-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
  }

  .step-qr img {
    background: var(--warm-white);
    padding: 10px;
    border-radius: 12px;
  }

  .step-qr-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 254, 251, 0.55);
  }
}

.check-list {
  padding-left: 18px;
  margin: 28px 0 30px;
}

.check-list li {
  margin-bottom: 12px;
  color: rgba(34, 28, 28, 0.8);
}

.text-link {
  color: var(--burgundy);
  font-weight: 700;
}

.section-dark {
  background: var(--charcoal);
  color: var(--warm-white);
}

.banner-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.banner-content p,
.banner-content h2 {
  color: var(--warm-white);
}

.feature-banner .button {
  margin-top: 18px;
}

.cta-hook {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  text-align: center;
  background-image: url('FOTOS/DSC02701.webp');
  background-size: cover;
  background-position: center 25%;
}

.cta-hook-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 28, 28, 0.55) 0%, rgba(34, 28, 28, 0.88) 100%);
}

.cta-hook-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  color: var(--warm-white);
}

.cta-hook-content .eyebrow {
  display: flex;
  justify-content: center;
}

.cta-hook-title {
  color: var(--warm-white);
}

.cta-hook-text {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 1.1rem;
  color: rgba(255, 254, 251, 0.85);
}

.offer-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 6px auto 36px;
  padding: 32px 52px;
  border-radius: 24px;
  background: rgba(17, 14, 14, 0.55);
  border: 1px solid rgba(255, 254, 251, 0.2);
  backdrop-filter: blur(6px);
}

.offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--burgundy);
  color: var(--burgundy);
}

.offer-caption {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--warm-white);
}

.offer-divider {
  width: 60px;
  height: 1px;
  background: var(--burgundy);
}

.offer-price {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--warm-white);
}

.offer-price span {
  font-size: 1.7rem;
  font-weight: 600;
  margin-left: 2px;
}

.cta-hook-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-hook-stats {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 254, 251, 0.2);
}

.cta-hook-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-hook-stats strong {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--warm-white);
}

.cta-hook-stats span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 254, 251, 0.7);
}

.section-heading {
  margin-bottom: 36px;
}

.location-card {
  overflow: hidden;
}

.location-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

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

.location-body a {
  display: inline-block;
  margin-top: 14px;
  color: var(--burgundy);
  font-weight: 700;
}

.centered-action {
  margin-top: 30px;
  text-align: center;
}

.bono-group + .bono-group {
  margin-top: 56px;
}

.bono-group-title {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.bono-group-subtitle {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.bono-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.bono-card {
  position: relative;
  display: flex;
  flex: 1 1 280px;
  max-width: 380px;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  min-height: 250px;
  padding: 28px 28px 26px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255, 254, 251, 0.12), transparent 55%),
    linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-dark) 55%, var(--charcoal) 140%);
  color: var(--warm-white);
}

.bono-promo-badge {
  position: absolute;
  top: 20px;
  left: -38px;
  width: 160px;
  padding: 6px 0;
  background: var(--charcoal);
  color: var(--warm-white);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(-45deg);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.bono-name {
  align-self: flex-end;
  margin: 0;
  max-width: 80%;
  color: var(--warm-white);
  text-align: right;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.bono-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.bono-price {
  margin: 0;
  color: var(--warm-white);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.bono-meta {
  margin: 0;
  color: rgba(255, 254, 251, 0.75);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bono-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: none;
  border-radius: 6px;
  background: var(--charcoal);
  color: var(--warm-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
}

.bono-buy:hover {
  background: var(--burgundy-dark);
}

.sede-selector {
  margin: 0 0 36px;
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
}

.sede-selector-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.sede-selector-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.sede-selector-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: var(--ivory);
}

.sede-pill {
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--charcoal);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sede-pill:hover {
  color: var(--burgundy);
}

.sede-pill.is-active {
  background: var(--burgundy);
  color: var(--warm-white);
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(145, 34, 48, 0.25);
}

.sede-pill.is-active:hover {
  color: var(--warm-white);
}

.sede-selector-note {
  margin: 16px 0 0;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 640px) {
  .sede-selector {
    padding: 20px;
  }

  .sede-selector-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sede-selector-pills {
    width: 100%;
  }

  .sede-pill {
    flex: 1 1 auto;
    padding: 10px 12px;
    text-align: center;
  }
}

.how-to-book {
  overflow: hidden;
}

.htb-kicker {
  position: relative;
  padding-bottom: 18px;
}

.htb-kicker::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--burgundy);
}

.htb-title {
  color: var(--warm-white);
  letter-spacing: 0;
}

.htb-subtitle {
  position: relative;
  margin: 0 auto 56px;
  padding-bottom: 24px;
  color: rgba(255, 254, 251, 0.72);
  font-size: 1.05rem;
}

.htb-subtitle::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--burgundy);
}

.reserve-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 20px;
}

.reserve-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 94px;
  color: rgba(255, 254, 251, 0.35);
}

.reserve-step {
  text-align: center;
  color: rgba(255, 254, 251, 0.75);
  padding: 34px 24px;
  border: 1px solid rgba(255, 254, 251, 0.18);
  border-radius: 18px;
  background: rgba(255, 254, 251, 0.03);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.reserve-step:hover {
  border-color: rgba(145, 34, 48, 0.55);
  background: rgba(255, 254, 251, 0.06);
}

.reserve-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border: 1px solid var(--burgundy);
  border-radius: 50%;
  color: var(--burgundy);
  font-weight: 700;
  font-size: 0.9rem;
}

.reserve-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-bottom: 18px;
  color: var(--burgundy);
}

.reserve-step h3 {
  margin-bottom: 10px;
  color: var(--warm-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.reserve-step p {
  margin: 0 auto;
  max-width: 220px;
  font-size: 0.9rem;
  color: rgba(255, 254, 251, 0.65);
}

.reserve-location-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.reserve-location-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 254, 251, 0.8);
}

.reserve-location-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--burgundy);
}

.step-app-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 254, 251, 0.3);
  border-radius: var(--radius-pill);
  color: var(--warm-white);
  font-size: 0.72rem;
  font-weight: 600;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.app-badge:hover {
  background: rgba(255, 254, 251, 0.08);
  border-color: var(--burgundy);
}

.step-qr {
  display: none;
}

.download-hero {
  padding-bottom: 90px;
}

.download-hero-text {
  max-width: 480px;
  margin: 0 auto;
  color: rgba(255, 254, 251, 0.72);
  font-size: 1.05rem;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
  margin-top: 56px;
}

.download-card {
  text-align: center;
}

.download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border: 1px solid var(--burgundy);
  border-radius: 50%;
  color: var(--burgundy);
}

.download-eyebrow {
  margin: 0 0 6px;
  color: var(--warm-white);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.download-card h2 {
  margin-bottom: 26px;
  color: rgba(255, 254, 251, 0.6);
  font-size: 1rem;
  font-weight: 400;
}

.download-divider {
  width: 1px;
  height: 160px;
  background: rgba(255, 254, 251, 0.14);
  justify-self: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid var(--burgundy);
  border-radius: var(--radius-pill);
  color: var(--warm-white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.25s ease;
}

.store-badge:hover {
  background: var(--burgundy);
}

.store-qr {
  display: none;
}

@media (min-width: 981px) {
  .store-badge {
    display: none;
  }

  .store-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .store-qr img {
    background: var(--warm-white);
    padding: 12px;
    border-radius: 14px;
  }

  .store-qr-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 254, 251, 0.6);
  }
}

.testimonial-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 24px;
  padding: 4px 4px 8px;
}

.testimonial-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 min(380px, 86vw);
  scroll-snap-align: center;
  padding: 34px 30px;
  background: var(--warm-white);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.testimonial-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.google-reviews-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--warm-white);
}

.testimonial-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-google {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: -14px;
}

.testimonial-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--charcoal);
}

.testimonial-stars {
  margin-top: 6px;
  color: var(--burgundy);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.testimonial-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(34, 28, 28, 0.78);
}

.testimonial-divider {
  height: 1px;
  margin: 26px 0 20px;
  background: rgba(34, 28, 28, 0.12);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: var(--warm-white);
  font-weight: 700;
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  color: var(--charcoal);
}

.testimonial-role {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(34, 28, 28, 0.22);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.testimonial-dot.is-active {
  background: var(--burgundy);
  transform: scale(1.25);
}

.carousel-dots {
  display: none;
}

.event-card {
  padding: 28px 22px;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.faq-intro h2 {
  margin-bottom: 18px;
}

.faq-intro-text {
  color: rgba(34, 28, 28, 0.72);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 20px;
  background: var(--ivory);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
  letter-spacing: normal;
  line-height: inherit;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 26px;
  border: none;
  background: transparent;
  color: var(--charcoal);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--charcoal);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
  color: rgba(34, 28, 28, 0.72);
}

.cta-band {
  padding: 0 0 90px;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 36px;
  background: linear-gradient(135deg, rgba(145, 34, 48, 0.08), rgba(34, 28, 28, 0.96));
  border-radius: 28px;
}

.cta-band-inner h2,
.cta-band-inner p {
  color: var(--warm-white);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button-secondary-light {
  background: transparent;
  border: 1px solid rgba(255, 254, 251, 0.7);
  color: var(--warm-white);
}

.site-footer {
  background: var(--charcoal);
  color: var(--warm-white);
  padding-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 254, 251, 0.15);
}

.footer-brand-block p,
.footer-column li,
.footer-column a,
.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 254, 251, 0.8);
}

.legal-links .legal-link-btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  color: rgba(255, 254, 251, 0.8);
}

.legal-links .legal-link-btn:hover {
  color: var(--warm-white);
}

.brand-footer {
  display: inline-block;
  color: var(--warm-white);
}

.brand-footer-logo {
  display: block;
  height: 52px;
  width: auto;
}

.footer-column-title {
  margin: 0 0 22px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--warm-white);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li + li {
  margin-top: 10px;
}

.footer-column li a i {
  width: 16px;
  margin-right: 8px;
  text-align: center;
  color: rgba(255, 254, 251, 0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 254, 251, 0.2);
  border-radius: 50%;
  color: var(--warm-white);
  font-size: 1rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 28px;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: rgba(72, 196, 109, 0.96);
  color: #fff;
  box-shadow: 0 10px 25px rgba(31, 133, 54, 0.32);
  transition: transform 0.25s ease, background 0.25s ease;
}

.whatsapp-float:hover {
  background: #3fb457;
  transform: scale(1.06);
}

.contacto-page .whatsapp-float {
  display: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.page-hero {
  padding: 90px 0 60px;
  background: linear-gradient(180deg, rgba(245, 239, 233, 0.85), rgba(255, 255, 255, 1));
}

.page-hero-content {
  max-width: 760px;
}

.content-block {
  display: grid;
  gap: 24px;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.info-list li {
  padding: 18px 20px;
  background: var(--ivory);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.page-card {
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
}

.table-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
}

.table-panel table {
  width: 100%;
  border-collapse: collapse;
}

.table-panel th,
.table-panel td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.table-panel th {
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--ivory);
}

.contact-card h2 {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  overflow-wrap: break-word;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.breadcrumb a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--burgundy);
}

.breadcrumb span[aria-current] {
  color: var(--charcoal);
  font-weight: 600;
}

.breadcrumb .breadcrumb-sep {
  color: rgba(34, 28, 28, 0.35);
}

.location-section {
  background: var(--ivory);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.location-address h3 {
  margin: 18px 0 10px;
  font-size: 1.4rem;
}

.location-address p {
  max-width: 360px;
  color: var(--muted);
}

.location-links {
  display: flex;
  flex-direction: column;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.location-links li {
  border-bottom: 1px solid var(--border);
}

.location-links li:last-child {
  border-bottom: none;
}

.location-links a {
  display: flex;
  align-items: center;
  padding: 14px 0;
  color: var(--charcoal);
  font-weight: 600;
  transition: color 0.2s ease;
}

.location-links a:hover {
  color: var(--burgundy);
}

.location-links i {
  width: 20px;
  margin-right: 10px;
  color: var(--burgundy);
  text-align: center;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--muted);
}

.hours-time {
  font-weight: 700;
  color: var(--charcoal);
}

.hours-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.85rem;
}

.map-section {
  padding: 0;
}

.map-frame {
  position: relative;
  width: 100%;
  padding-top: 38%;
  overflow: hidden;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 980px) {
  .nav-wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(40px, 1fr) auto minmax(auto, 1fr);
    align-items: center;
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: start;
  }

  .brand {
    justify-self: center;
  }

  .header-actions-mobile {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 12px;
  }

  .header-instagram-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 254, 251, 0.35);
    border-radius: 50%;
    color: var(--warm-white);
    font-size: 1rem;
  }

  .brand-logo {
    height: 60px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--burgundy);
    border: 1px solid rgba(255, 254, 251, 0.4);
    padding: 8px 24px 24px;
    box-shadow: 0 20px 30px rgba(17, 15, 15, 0.25);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 254, 251, 0.14);
  }

  .main-nav .header-cta,
  .main-nav .header-instagram {
    display: none;
  }

  .nav-item {
    display: flex;
    flex-direction: column;
  }

  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 254, 251, 0.14);
  }

  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 4px 0 8px 20px;
    border-left: 2px solid rgba(255, 254, 251, 0.15);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-item.is-open .nav-dropdown {
    display: block;
    transform: none;
  }

  .nav-dropdown li {
    margin: 0;
    padding: 0;
  }

  .nav-dropdown a {
    padding: 12px 0 12px 14px;
    border-bottom: 1px solid rgba(255, 254, 251, 0.08);
    color: rgba(255, 254, 251, 0.75) !important;
  }

  .nav-dropdown a:hover {
    background: transparent;
    color: var(--warm-white) !important;
  }

  .nav-dropdown a.active {
    color: var(--warm-white) !important;
  }

  .button.header-cta-mobile {
    display: inline-flex;
    justify-self: end;
    min-height: 42px;
    padding: 9px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .cards-three,
  .footer-top,
  .two-column,
  .split-layout,
  .banner-content,
  .page-grid,
  .contact-grid,
  .location-grid,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .location-grid {
    gap: 40px;
  }

  .mission .media-panel {
    order: -1;
  }

  .map-frame {
    padding-top: 80%;
  }

  .faq-wrap {
    gap: 32px;
  }

  .reserve-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reserve-arrow {
    display: none;
  }

  .download-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .download-divider {
    width: 80%;
    height: 1px;
    justify-self: center;
  }

  .testimonial-grid {
    margin: 0 -20px;
    padding: 4px 20px 8px;
    gap: 16px;
  }

  .testimonial-card {
    flex-basis: 80%;
  }

  .sedes-grid {
    grid-template-columns: 1fr;
  }

  .clases-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 4px 20px 8px;
  }

  .clases-grid::-webkit-scrollbar {
    display: none;
  }

  .clase-tile {
    flex: 0 0 78%;
    scroll-snap-align: center;
    border-radius: 18px;
  }

  .clase-tile-wide {
    grid-column: auto;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(34, 28, 28, 0.22);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .carousel-dot.is-active {
    background: var(--burgundy);
    transform: scale(1.25);
  }

  .sede-tile {
    height: 420px;
  }

  .clase-tile {
    height: 360px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    min-height: 700px;
  }

  .cta-hook {
    min-height: 560px;
  }

  .cta-hook-stats {
    gap: 26px;
  }

  .brand {
    font-size: 1.7rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    height: 72px;
    gap: 10px;
  }

  .header-actions-mobile {
    gap: 8px;
  }

  .header-instagram-mobile {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .button.header-cta-mobile {
    width: auto;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 160px 0 110px;
  }

  .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 16px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 2.15rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .button {
    width: auto;
    padding: 12px 20px;
  }

  .section {
    padding: 76px 0;
  }

  .clases-section {
    padding-top: 20px;
  }

  .mission {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .sedes-section {
    padding-top: 30px;
  }

  .events-preview {
    padding-bottom: 30px;
  }

  .faq-section {
    padding-top: 30px;
  }

  .cta-hook-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-hook-stats {
    flex-direction: column;
    gap: 18px;
  }

  .offer-card {
    padding: 26px 32px;
  }

  .offer-price {
    font-size: 2.8rem;
  }
}

@media (max-width: 400px) {
  .nav-wrap {
    gap: 6px;
  }

  .header-actions-mobile {
    gap: 6px;
  }

  .brand-logo {
    height: 48px;
  }

  .header-instagram-mobile {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .button.header-cta-mobile {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 0.64rem;
  }
}

/* Class ticker (home, below hero) */
.class-ticker {
  overflow: hidden;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.class-ticker-track {
  display: flex;
  width: max-content;
  animation: class-ticker-scroll 28s linear infinite;
}

.class-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.class-ticker-group span {
  white-space: nowrap;
}

.class-ticker-group > span:not(.class-ticker-sep) {
  padding: 0 22px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.class-ticker-sep {
  color: var(--burgundy);
  font-size: 0.9rem;
}

@keyframes class-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.class-ticker:hover .class-ticker-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .class-ticker-track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .class-ticker {
    padding: 12px 0;
  }

  .class-ticker-group > span:not(.class-ticker-sep) {
    padding: 0 14px;
    font-size: 0.7rem;
  }
}

/* Equipo page */
.team-section {
  background: var(--charcoal);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: #100d0d;
}

.team-tile {
  height: 460px;
}

.team-tile img {
  filter: grayscale(0.35) contrast(1.05);
  object-position: top center;
}

.team-info .team-name {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.team-info .team-role {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.78rem;
  color: #ff5468;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.team-tile .clase-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.92) 100%),
    rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-tile {
    height: 400px;
  }
}

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

  .team-tile {
    height: 420px;
  }
}

/* Eventos page */
.eventos-upcoming {
  padding: 40px 0;
}

.eventos-hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 4px;
}

.eventos-section-heading {
  margin-bottom: 32px;
}

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

.eventos-grid .clase-tile {
  height: 380px;
}

.eventos-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.eventos-grid-single .clase-tile {
  height: 440px;
}

@media (max-width: 980px) {
  .eventos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .eventos-grid .clase-tile,
  .eventos-grid-single .clase-tile {
    height: 340px;
  }
}

.collab-section {
  background: var(--warm-white);
  padding-top: 40px;
  padding-bottom: 80px;
}

.collab-heading {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.collab-heading h2 {
  margin-bottom: 12px;
}

.collab-sub {
  margin: 0;
  color: var(--muted);
}

.collab-marquee {
  margin-top: 44px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.collab-row + .collab-row {
  margin-top: 28px;
}

.collab-track-wrap {
  display: flex;
  width: max-content;
}

.collab-row-a .collab-track-wrap {
  animation: collab-scroll-left 42s linear infinite;
}

.collab-row-b .collab-track-wrap {
  animation: collab-scroll-right 42s linear infinite;
}

.collab-marquee:hover .collab-track-wrap {
  animation-play-state: paused;
}

.collab-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@keyframes collab-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes collab-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.collab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  border-right: 1px solid var(--border);
}

.collab-item img {
  height: 40px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  mix-blend-mode: multiply;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.collab-item:hover img {
  opacity: 1;
  filter: grayscale(0);
}

@media (prefers-reduced-motion: reduce) {
  .collab-row-a .collab-track-wrap,
  .collab-row-b .collab-track-wrap {
    animation: none;
  }
}

@media (max-width: 640px) {
  .collab-row + .collab-row {
    margin-top: 20px;
  }

  .collab-item {
    padding: 0 26px;
  }

  .collab-item img {
    height: 30px;
  }
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 60;
  width: min(420px, calc(100% - 40px));
  padding: 24px;
  border-radius: var(--radius-soft);
  background: var(--warm-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-text {
  margin: 0 0 18px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(34, 28, 28, 0.82);
  overflow-wrap: break-word;
}

.cookie-banner-text a {
  color: var(--burgundy);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  flex: 1 1 auto;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.cookie-btn-primary {
  background: var(--burgundy);
  color: var(--warm-white);
}

.cookie-btn-primary:hover {
  background: var(--burgundy-dark);
}

.cookie-btn-outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.cookie-btn-outline:hover {
  background: var(--charcoal);
  color: var(--warm-white);
}

.cookie-btn-ghost {
  flex: 0 0 auto;
  background: transparent;
  border-color: transparent;
  color: var(--muted);
  text-decoration: underline;
  padding: 11px 4px;
}

.cookie-btn-ghost:hover {
  color: var(--charcoal);
}

.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(24, 19, 19, 0.55);
}

.cookie-settings[hidden] {
  display: none;
}

.cookie-settings-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 34px 30px;
  border-radius: 22px;
  background: var(--warm-white);
  box-shadow: var(--shadow);
}

.cookie-settings-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--charcoal);
  cursor: pointer;
}

.cookie-settings-title {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.cookie-settings-intro {
  margin: 0 0 24px;
  font-size: 0.88rem;
  color: rgba(34, 28, 28, 0.72);
}

.cookie-category {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.cookie-category:last-of-type {
  border-bottom: 1px solid var(--border);
}

.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.cookie-category-name {
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--charcoal);
}

.cookie-category-status {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.cookie-category-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(34, 28, 28, 0.68);
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 44px;
  height: 26px;
  cursor: pointer;
}

.cookie-toggle input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-toggle-track {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  background: rgba(34, 28, 28, 0.22);
  transition: background 0.2s ease;
}

.cookie-toggle-track::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--warm-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-toggle-track {
  background: var(--burgundy);
}

.cookie-toggle input:checked + .cookie-toggle-track::before {
  transform: translateX(18px);
}

.cookie-toggle input:focus-visible + .cookie-toggle-track {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

.cookie-settings-note {
  margin: 6px 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
}

.cookie-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cookie-settings-actions .cookie-btn {
  flex: 1 1 auto;
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 18px 18px 0 0;
    padding: 20px 18px calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner-text {
    font-size: 0.82rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions .cookie-btn {
    width: 100%;
    box-sizing: border-box;
  }

  .cookie-btn-ghost {
    order: 3;
    text-align: center;
  }

  .cookie-settings-panel {
    padding: 28px 20px;
  }
}
