/* ================================================================
   ALACERO SUMMIT 2026 — Global Stylesheet  v5.0
   ================================================================ */

/* 1. RESET & VARIABLES */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue:      #0061b3;   /* Azul Alacero */
  --green:     #006847;   /* Verde México */
  --red:       #cd1226;   /* Rojo México */
  --dark:      #0A1628;
  --light:     #F4F7FB;
  --accent:    #00D97E;   /* SOLO para "2026" y "LIVE" */
  --white:     #ffffff;
  --body-fg:   #4a4a6a;
  --radius-btn: 50px;
  --ease:       0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rubik', system-ui, sans-serif;
  background: var(--white);
  color: var(--body-fg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ================================================================
   2. SHARED BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-block;
  background: var(--green); color: var(--white);
  padding: 14px 34px; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius-btn); border: none;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover {
  background: #005238; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,104,71,.35);
}

.btn-ghost {
  display: inline-block; background: transparent; color: var(--white);
  padding: 13px 32px; font-size: 12px; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius-btn); border: 1.5px solid rgba(255,255,255,.4);
  transition: border-color var(--ease), background var(--ease);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); }

.btn-outline-blue {
  display: inline-block; background: transparent; color: var(--blue);
  padding: 12px 30px; font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius-btn); border: 1.5px solid var(--blue);
  transition: background var(--ease), color var(--ease);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

.btn-video-red {
  display: inline-block;
  background: var(--red); color: var(--white);
  padding: 13px 36px; font-size: 14px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: var(--radius-btn); border: none;
  transition: background var(--ease), transform var(--ease);
}
.btn-video-red:hover { background: #a50e1f; transform: translateY(-2px); }

.sec-badge {
  display: inline-block; font-size: 16px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--green); border-bottom: 2px solid var(--green);
  padding-bottom: 4px; margin-bottom: 22px;
}

.sec-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: .06em; line-height: 1;
}

/* ================================================================
   3. NAVBAR
   ================================================================ */
header {
  position: sticky; top: 0; z-index: 100;
}

.site-nav {
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 5%;
  min-height: 95px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }

.nav-logo { height: 80px; width: auto; object-fit: contain; }

.nav-right {
  display: flex; align-items: center; gap: 28px;
}

.nav-link {
  font-size: 14px; font-weight: 400; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.82);
  transition: color var(--ease);
}
.nav-link:hover { color: var(--white); }

.lang-group { display: flex; gap: 3px; }
.lang-btn {
  font-size: 11px; font-weight: 600; letter-spacing: .07em;
  padding: 4px 10px; border-radius: 3px;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.72); background: transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.lang-btn:hover, .lang-btn.active {
  background: rgba(255,255,255,.18); color: var(--white);
  border-color: rgba(255,255,255,.6);
}

.btn-nav-summit {
  display: inline-block;
  background: var(--red); color: var(--white);
  padding: 12px 18px; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: var(--radius-btn);
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap; border: none;
}
.btn-nav-summit:hover { background: #a50e1f; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .28s, opacity .28s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-panel {
  display: none; position: fixed;
  top: 95px; left: 0; right: 0;
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 24px 6%; z-index: 99;
  flex-direction: column; gap: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.nav-mobile-panel.open { display: flex; }
.nav-mobile-panel .nav-link { font-size: 14px; }

/* ================================================================
   4. HERO — 4 capas
   ================================================================ */
.hero {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 82vh;
  position: relative;
  overflow: hidden;
  background: #f5f5f3;
}

.hero-texture-bg {
  position: absolute;
  inset: -25% 0;
  background: url('images/bkg_textura.webp') center / 950px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero-left {
  padding: 80px 9% 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-flag-dots {
  display: flex; gap: 9px; align-items: center; margin-bottom: 30px;
}
.fd {
  width: 13px; height: 13px; border-radius: 50%;
  display: inline-block;
}
.fd-green { background: var(--green); }
.fd-white { background: transparent; border: 2px solid #bbb; }
.fd-red   { background: var(--red); }

.hero-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(58px, 9.5vw, 108px);
  color: var(--blue);
  line-height: .88;
  letter-spacing: .01em;
  margin-bottom: 14px;
  animation: heroSlide .85s .05s ease both;
}

.hero-rule {
  width: 68px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 18px;
  animation: heroSlide .85s .2s ease both;
}

.hero-dates {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400; color: #777;
  letter-spacing: .03em;
  margin-bottom: 28px;
  animation: heroSlide .85s .32s ease both;
}

.hero-loc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 11px 22px; border-radius: 6px;
  font-size: 16px; font-weight: 500; letter-spacing: .03em;
  align-self: flex-start;
  transition: background var(--ease);
  animation: heroSlide .85s .42s ease both;
}
.hero-loc-btn:hover { background: #005238; }

/* ── Hero CTA row: two buttons side by side ── */
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  animation: heroSlide .85s .42s ease both;
}
.btn-hero-ticket,
.btn-hero-hotel {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 15px; font-weight: 600; letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.btn-hero-ticket {
  background: var(--green); color: var(--white);
  border: 2px solid var(--green);
}
.btn-hero-ticket:hover { background: #005238; border-color: #005238; transform: translateY(-2px); }
.btn-hero-hotel {
  background: var(--white); color: var(--green);
  border: 2px solid var(--green);
}
.btn-hero-hotel:hover { background: #f0f9f5; transform: translateY(-2px); }

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-hero-ticket, .btn-hero-hotel { width: 100%; justify-content: center; }
}

.hero-scroll-btn {
  position: absolute; bottom: 32px; left: 8%;
  background: none; border: none;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: var(--blue); opacity: .55;
  font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  transition: opacity var(--ease);
  animation: heroSlide .85s .6s ease both;
}
.hero-scroll-btn:hover { opacity: .9; }
.hero-scroll-btn svg {
  width: 30px; height: 30px; stroke: var(--blue); stroke-width: 1.5;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  45%       { transform: translateY(10px); }
}
@keyframes heroSlide {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-right {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.hero-forma {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 102%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 1;
  animation: heroFade 1s .1s ease both;
}

.hero-city-photo {
  position: absolute;
  bottom: -25px;
  left: 19%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
  z-index: 2;
  animation: heroFade 1s .3s ease both;
}

/* Capa 4: mexico_city_02 — ancho mayor que el contenedor para dar
   espacio al parallax horizontal sin mostrar huecos */
.hero-city-top {
  position: absolute;
  top: 25px;
  bottom: 0px;
  left: -30%;
  width: 116%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  z-index: 3;
  animation: heroFade 1s .5s ease both;
  will-change: transform;
}

/* ================================================================
   5. COUNTDOWN
   ================================================================ */
.countdown-section {
  background: #006847;
  padding: 30px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.countdown-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/bkg_textura.webp') center / 320px;
  opacity: .06; pointer-events: none;
}

.cd-label {
  font-size: 14px; font-weight: 500; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  align-self: center; margin-right: 10px;
}

.cd-units { display: flex; align-items: stretch; }

.cd-unit {
  text-align: center; padding: 6px 26px; position: relative;
}
.cd-unit + .cd-unit { border-left: 1px solid rgba(255,255,255,.14); }

.cd-number {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(60px, 9.5vw, 80px);
  line-height: 1; color: var(--white); display: block; letter-spacing: .02em;
}

.cd-unit-label {
  font-size: 12px; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.8); margin-top: 2px;
}

.cd-ended {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 28px; color: rgba(255,255,255,.55); letter-spacing: .12em;
}

/* ================================================================
   6. INTRO / ABOUT
   ================================================================ */
.intro-section {
  padding: 96px 7%;
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.intro-ring {
  position: absolute; pointer-events: none;
  border-radius: 50%;
}
.intro-ring-1 {
  left: -90px; bottom: -70px;
  width: 240px; height: 240px;
  opacity: 1;
  animation: floatRing 7s ease-in-out infinite;
}
.intro-ring-2 {
  right: -70px; top: -50px;
  width: 190px; height: 190px;
  opacity: 1;
  animation: floatRing 9s ease-in-out infinite reverse;
}
.intro-ring-3 {
  right: 14%; bottom: -30px;
  width: 100px; height: 100px;
  opacity: 1;
  animation: floatRing 5.5s ease-in-out infinite;
}

@keyframes floatRing {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%       { transform: translate(10px, -16px) rotate(18deg); }
  66%       { transform: translate(-7px, -10px) rotate(-12deg); }
}

.intro-inner {
  max-width: 900px; margin: 0 auto;
  position: relative; z-index: 1;
}

.intro-lead {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 50px;
  color: var(--blue);
  letter-spacing: .04em; line-height: 1.06; margin-bottom: 24px;
}

.intro-body {
  font-size: 17px; font-weight: 300;
  line-height: 1.9; color: var(--body-fg);
  max-width: 700px; margin: 0 auto;
}

/* ================================================================
   7. FRANJA "DESDE 1962"
   ================================================================ */
.since-strip {
  background: linear-gradient(90deg, #00a07a 0%, #0061b3 100%);
  padding: 22px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.since-strip p {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.6;
  position: relative; z-index: 1;
}

/* ================================================================
   8. TOPICS
   ================================================================ */
.topics-section {
  background: var(--light);
  padding: 88px 5%;
  position: relative; overflow: hidden;
}
.topics-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/bkg_textura.webp') center / 440px;
  opacity: .04; pointer-events: none;
}

.sec-header { text-align: center; margin-bottom: 52px; position: relative; z-index: 1; }
.sec-header .sec-title { color: var(--green); }

.topics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1080px; margin: 0 auto;
  position: relative; z-index: 1;
}

.topic-card {
  background: var(--white);
  border-radius: 16px;
  padding: 50px 30px 35px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 16px rgba(0,0,0,.048);
  position: relative; overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease;
}
.topic-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 52px rgba(0,97,179,.13);
}

/* Línea de color inferior al hacer hover — cada card diferente */
.topic-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  border-radius: 0 0 16px 16px;
}
.topic-card:hover::after { transform: scaleX(1); }

.topic-card-green::after { background: var(--green); }
.topic-card-white::after { background: #b0bec5; }
.topic-card-red::after   { background: var(--red); }

.topic-badge {
  position: absolute; top: 0; right: 0;
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--green) 0%, #004a6a 100%);
  border-radius: 0 16px 0 90px;
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 14px 14px 0 0;
}
.topic-badge img {
  width: 50px; height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.topic-title-row {
  display: flex; align-items: flex-start; gap: 11px; margin-bottom: 12px;
}
.topic-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--red); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; margin-top: 2px;
  font-style: normal; font-weight: 700;
}

.topic-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 34px;
  letter-spacing: .06em; color: var(--blue);
  line-height: 1.1;
}

.topic-body {
  font-size: 16px; font-weight: 300;
  line-height: 1.8; color: #6a6a84;
  margin-left: 45px;
}

/* ================================================================
   8b. AGENDA SECTION
   ================================================================ */
.agenda-section {
  background: var(--white);
  padding: 80px 7%;
}
.agenda-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,.09);
}
.agenda-day-row {
  display: flex;
  align-items: stretch;
}
.agenda-day-row + .agenda-day-row {
  border-top: 3px solid #d0d8e4;
}
.agenda-day-label {
  width: 180px;
  min-width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  color: var(--white);
}
.agenda-day-label--green  { background: var(--green); }
.agenda-day-label--blue   { background: var(--blue); }
.agenda-day-label--dark   { background: #3d4f63; }

.agenda-day-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: .06em;
  line-height: 1; text-transform: uppercase;
}
.agenda-day-date {
  font-size: 17px; font-weight: 300;
  opacity: .85; margin-top: 6px;
  text-transform: capitalize;
}
.agenda-day-events {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.agenda-event-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 28px;
  border-bottom: 1px solid #e8edf4;
  transition: background var(--ease), padding-left var(--ease);
}
.agenda-event-row:hover {
  background: #f0f5fb;
  padding-left: 36px;
}
.agenda-event-row:hover .agenda-time {
  color: var(--blue);
}
.agenda-event-row:first-child { padding-top: 28px; }
.agenda-event-row:last-child  { border-bottom: none; padding-bottom: 28px; }
.agenda-time {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  white-space: nowrap;
  min-width: 90px;
  flex-shrink: 0;
}
.agenda-desc {
  font-size: 16px; line-height: 1.5;
  color: var(--body-fg);
}
.agenda-note {
  display: block; font-size: 12px; color: #999; margin-top: 2px;
}

/* ================================================================
   9. STATS — fondo museo_somaya con parallax
   ================================================================ */
.stats-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Imagen de fondo — movida por JS al scroll */
.stats-bg-layer {
  position: absolute;
  inset: -20% 0;
  background: url('images/museo_somaya.webp') center / cover no-repeat;
  will-change: transform;
}

/* Overlay oscuro para legibilidad */
.stats-overlay-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,10,30,.82) 0%,
    rgba(0,40,100,.70) 50%,
    rgba(0,80,60,.65) 100%
  );
}

.stats-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 5%;
  width: 100%;
}

.stats-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 48px; display: block;
}

.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 20px 30px;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,.18);
}

.stat-number {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(52px, 7.5vw, 80px);
  line-height: 1; color: var(--white); display: block;
  animation: countPop .6s ease both;
}
.stat-number.live {
  color: var(--accent);
  font-size: clamp(34px, 5vw, 52px); padding-top: 10px;
}

.stat-label {
  font-size: 14px; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  margin-top: 8px; display: block;
}

@keyframes countPop {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ================================================================
   10. VIDEO
   ================================================================ */
.video-section {
  padding: 88px 7%; text-align: center; background: var(--white);
}

.video-wrapper {
  width: 100%; max-width: 800px; aspect-ratio: 16 / 9;
  margin: 38px auto 30px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.13); background: var(--dark);
  position: relative;
}
.video-wrapper iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* ================================================================
   11. CONTACT
   ================================================================ */
.contact-section {
  background: var(--light); padding: 88px 7%; text-align: center;
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/bkg_textura.webp') center / 440px;
  opacity: .04; pointer-events: none;
}

.contact-inner { max-width: 660px; margin: 0 auto; position: relative; z-index: 1; }

.contact-subtitle {
  font-size: 16px; font-weight: 300; color: var(--body-fg);
  margin-top: 10px; margin-bottom: 36px; line-height: 1.7;
}

.hs-form-wrapper {
  background: var(--white); border-radius: 0px;
  padding: 38px 36px; box-shadow: 0 6px 32px rgba(0,0,0,.07); text-align: left;
  margin-top: 36px;
}

/* ================================================================
   12. SPONSOR CTA
   ================================================================ */
.sponsor-section {
  position: relative;
  background: linear-gradient(110deg, var(--dark) 0%, var(--blue) 40%, var(--green) 100%);
  padding: 80px 7%; overflow: hidden;
}
.sponsor-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/bkg_textura.webp') center / 360px;
  opacity: .06; mix-blend-mode: overlay; pointer-events: none;
}
.sponsor-section::after {
  content: ''; position: absolute;
  right: -80px; top: 50%; transform: translateY(-50%);
  width: 380px; height: 380px; border-radius: 50%;
  border: 60px solid rgba(255,255,255,.04);
  pointer-events: none;
}

.sponsor-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto;
}

.sponsor-headline {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 50px;
  color: var(--white); letter-spacing: .04em; line-height: .92;
}

.btn-sponsor {
  display: inline-block;
  background: var(--red); color: var(--white);
  padding: 16px 44px; font-size: 14px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--radius-btn);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  flex-shrink: 0;
}
.btn-sponsor:hover {
  background: #a50e1f; transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* Línea roja separadora entre sponsor y footer */
.sponsor-footer-divider {
  height: 3px;
  background: var(--red);
}

/* ================================================================
   13. SIDEBAR
   ================================================================ */
.sidebar-trigger {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,61,122,.38);
  transition: background var(--ease), transform var(--ease);
}
.sidebar-trigger:hover { background: #005238; transform: scale(1.08); }
.sidebar-trigger svg {
  width: 30px; height: 30px; fill: none;
  stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.48); z-index: 201;
  opacity: 0; pointer-events: none; transition: opacity .32s ease;
}
.sidebar-overlay.visible { opacity: 1; pointer-events: all; }

.sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 440px; max-width: 95vw; background: var(--white);
  z-index: 202; transform: translateX(100%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 50px rgba(0,0,0,.2);
}
.sidebar.open { transform: translateX(0); }

.sidebar-header {
  padding: 22px 24px 20px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--blue); flex-shrink: 0;
}
.sidebar-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 22px; letter-spacing: .1em; color: var(--white);
}
.sidebar-close {
  background: none; border: none; color: rgba(255,255,255,.65);
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
  transition: background var(--ease), color var(--ease);
}
.sidebar-close:hover { background: rgba(255,255,255,.12); color: var(--white); }

.sidebar-body { flex: 1; overflow-y: auto; padding: 30px 24px; }

/* ================================================================
   14. FOOTER
   ================================================================ */
.site-footer {
  background: var(--dark); padding: 64px 7% 30px;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/bkg_textura.webp') center / 360px;
  opacity: .05; pointer-events: none;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 28px; position: relative; z-index: 1;
}

.footer-logo {
  height: 60px; width: auto; object-fit: contain;
  margin-bottom: 16px; filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.36); line-height: 1.8; margin-bottom: 20px;
}

.social-row { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.52); font-size: 15px;
  transition: background var(--ease), color var(--ease);
}
.social-btn:hover { background: rgba(255,255,255,.13); color: var(--white); }

.footer-heading {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 13px; letter-spacing: .18em; color: rgba(255,255,255,.28); margin-bottom: 16px;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer-list a:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,.24); }
.footer-lang { display: flex; gap: 4px; }
.footer-lang a {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.38);
  padding: 3px 8px; border-radius: 3px; border: 1px solid rgba(255,255,255,.12);
  transition: color var(--ease), border-color var(--ease);
}
.footer-lang a:hover, .footer-lang a.active { color: var(--white); border-color: rgba(255,255,255,.44); }

/* ================================================================
   15. SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .14s; }
.reveal-delay-2 { transition-delay: .28s; }
.reveal-delay-3 { transition-delay: .42s; }
.reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Entrada suave desde escala */
.reveal-scale {
  opacity: 0; transform: scale(.94);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ================================================================
   16. RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 48% 52%; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-inner { flex-direction: column; align-items: center; text-align: center; }
  .stats-grid-new { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; }
  .stat-item:nth-child(odd) + .stat-item { border-left: 1px solid rgba(255,255,255,.18); }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 6% 60px; }
  .hero-right { min-height: 56vw; max-height: 340px; }
  .hero-city-photo { position: relative; width: 100%; height: 100%; bottom: 0; left: 0; object-position: bottom center; }
  .hero-forma { left: 0; width: 100%; }
  .hero-city-top { top: 0; right: 0; width: 100%; height: 100%; }
  .hero-scroll-btn { bottom: 16px; left: 6%; }

  .nav-right .nav-link,
  .nav-right .lang-group,
  .nav-right .btn-nav-summit { display: none; }
  .nav-hamburger { display: flex; }

  .topics-grid { grid-template-columns: 1fr; }
  .agenda-day-row { flex-direction: column; }
  .agenda-day-label { width: auto; min-width: auto; flex-direction: row; align-items: baseline; gap: 12px; padding: 18px 20px; }
  .agenda-day-name { font-size: 26px; }
  .agenda-event-row { padding: 14px 20px; }
  .stats-grid-new { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(2n) { border-left: 1px solid rgba(255,255,255,.18); }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .social-row { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-lang { justify-content: center; }

  .cd-unit { padding: 6px 14px; }
  .cd-number { font-size: clamp(50px, 12vw, 78px); }
  .cd-label { width: 100%; text-align: center; margin-right: 0; }
  .countdown-section { flex-direction: column; padding: 28px 4%; }

  .sponsor-section::after { display: none; }
  .intro-ring-3 { display: none; }
  .intro-lead { font-size: 38px; }
}

@media (max-width: 480px) {
  .hero-right { max-height: 260px; }
  .hero-city-top { display: block; }
  .hs-form-wrapper { padding: 24px 18px; }
  .sidebar { width: 100%; max-width: 100%; }
  .video-wrapper { border-radius: 8px; }
  .cd-unit { padding: 4px 10px; }
  .cd-number { font-size: clamp(44px, 13vw, 64px); }
  .intro-ring-1, .intro-ring-2 { width: 150px; height: 150px; }
  .intro-lead { font-size: 32px; }
  .sponsor-headline { font-size: 40px; }
  .stats-grid-new { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,.18); }
}

/* ================================================================
   SPONSORS PAGE — hero fiel al original WordPress
   ================================================================ */

.sp-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--white);
}

/* Textura de fondo */
.sp-hero-bg {
  position: absolute; inset: 0;
  background: url('images/bkg_textura.webp') center / 950px repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

/* Columna izquierda: logo + texto */
.sp-hero-left {
  position: relative; z-index: 1;
  flex: 0 0 50%;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 60px 5% 60px 6%;
}

.sp-hero-logo {
  width: auto; max-width: 320px; height: auto;
}

.sp-hero-eyebrow {
  font-family: 'Rubik', sans-serif;
  font-size: 13px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--body-fg);
  margin-bottom: 8px;
}

.sp-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.05;
  color: var(--blue);
}

/* Columna derecha: imagen alineada al fondo */
.sp-hero-right {
  position: relative; z-index: 1;
  flex: 0 0 50%;
  display: flex; align-items: flex-end; justify-content: flex-end;
}

.sp-hero-img {
  display: block;
  max-height: 420px;
  width: auto;
  object-fit: contain;
  object-position: right bottom;
}

@media (max-width: 768px) {
  .sp-hero { flex-direction: column; min-height: auto; }
  .sp-hero-left { flex: none; padding: 50px 6% 30px; }
  .sp-hero-right { flex: none; justify-content: center; }
  .sp-hero-img { max-height: 260px; }
}

@media (max-width: 480px) {
  .sp-hero-logo { max-width: 220px; }
  .sp-hero-img { max-height: 180px; }
}

/* ================================================================
   SEDE Y VIAJEROS
   ================================================================ */

/* ── Hero ── */
.sede-hero {
  position: relative;
  height: 60vh; min-height: 480px; max-height: 560px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}

.sede-hero-bg {
  position: absolute;
  inset: -30% 0 -30%;
  background: url('images/foto_ppal_hotel.webp') center 35% / cover no-repeat;
  will-change: transform;
}
#agenda-hero-bg {
  background-image: url('images/foto_hero_agenda.webp');
  background-position: center center;
}

.sede-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,22,40,.18) 0%,
    rgba(10,22,40,.55) 60%,
    rgba(10,22,40,.88) 100%
  );
}

.sede-hero-content {
  position: relative; z-index: 2;
  padding: 0 7% 60px;
}

.sede-hero-badge {
  display: inline-block;
  font-size: 14px; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.99);
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px; margin-bottom: 20px;
}

.sede-hero-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(60px, 10vw, 110px);
  font-weight: 400;
  line-height: .9; letter-spacing: .02em;
  color: var(--white);
  margin-bottom: 16px;
  animation: heroSlide .85s .05s ease both;
}

.sede-hero-dates {
  font-size: 17px; font-weight: 400;
  letter-spacing: .06em; color: rgba(255,255,255,.72);
  margin-bottom: 28px;
}

.sede-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--white);
  padding: 12px 26px; border-radius: 6px;
  font-size: 14px; font-weight: 500; letter-spacing: .04em;
  transition: background var(--ease);
}
.sede-hero-cta:hover { background: #005238; }
.sede-hero-cta .ti { font-size: 16px; }

/* ── CDMX section ── */
.cdmx-section {
  padding: 96px 7%;
  background: var(--white);
  position: relative; overflow: hidden;
}

.cdmx-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center;
}

.cdmx-lead {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: var(--body-fg); margin-bottom: 20px;
}
.cdmx-body {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--body-fg); margin-bottom: 16px;
}

.cdmx-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.cdmx-grid-item {
  border-radius: 10px; overflow: hidden;
}
.cdmx-grid-item img {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.cdmx-grid-item:hover img { transform: scale(1.04); }
.cdmx-grid-big {
  grid-column: 1 / -1;
}
.cdmx-grid-big img { height: 260px; }

/* ── Hotel section ── */
.hotel-section {
  background: var(--light);
  padding: 88px 7%;
  position: relative; overflow: hidden;
}
.hotel-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/bkg_textura.webp') center / 440px;
  opacity: .04; pointer-events: none;
}

.hotel-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.hotel-header { margin-bottom: 48px; }
.hotel-lead { margin-left: auto; margin-right: auto; }

.hotel-address {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: #888; margin-bottom: 20px;
}
.hotel-address .ti { color: var(--red); font-size: 16px; }

.hotel-lead {
  font-size: 17px; font-weight: 300; line-height: 1.85;
  color: var(--body-fg); max-width: 720px;
}

/* Carousel */
.hotel-carousel-wrap {
  position: relative; display: flex;
  align-items: center; gap: 16px;
  margin-bottom: 16px;
}

.hotel-carousel {
  flex: 1; overflow: hidden; border-radius: 14px;
}

.hotel-carousel-track {
  display: flex;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}

.hotel-slide {
  flex: 0 0 100%;
}
.hotel-slide img {
  width: 100%; height: 460px;
  object-fit: cover; display: block;
}

.carousel-btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%; border: 2px solid var(--blue);
  background: var(--white); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer;
  transition: background var(--ease), color var(--ease);
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.carousel-btn:hover { background: var(--blue); color: var(--white); }
.carousel-btn .ti { line-height: 1; }

.carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 40px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 2px solid var(--blue); background: transparent;
  cursor: pointer; transition: background var(--ease);
  padding: 0;
}
.carousel-dot.active { background: var(--blue); }

.hotel-cta-row {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-top: 32px;
}
.hotel-cta-row .btn-outline-blue {
  display: inline-flex; align-items: center; gap: 8px;
}

/* Hotel YouTube video embed */
.hotel-video-wrap {
  position: relative; width: 100%; max-width: 960px;
  margin: 40px auto 0;
  padding-bottom: min(56.25%, 540px); /* 16:9, capped at 960px wide */
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.18);
}
.hotel-video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* Agency info block below packages — wrapper + label + row */
.pkg-agency-wrap {
  width: fit-content; max-width: 100%;
  margin: 32px auto 0;
  border-radius: 14px; overflow: hidden;
  border: 1px solid #e8edf4;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.pkg-agency-label {
  background: #6d6d6d; color: var(--white);
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 9px 24px; text-align: center;
}
.pkg-agency-info {
  display: flex; flex-direction: row; align-items: center; gap: 24px;
  background: var(--white);
  padding: 24px 36px;
}
.pkg-agency-logo {
  height: 80px; width: auto; object-fit: contain; flex-shrink: 0;
}
.pkg-agency-info .pkg-agency-name {
  font-weight: 700; color: var(--blue); font-size: 16px;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px;
}
.pkg-agency-info .pkg-agency-contact {
  font-size: 13px; color: var(--body-fg); display: flex; align-items: center;
  gap: 6px; flex-wrap: wrap;
}
.pkg-agency-info .pkg-agency-contact a { color: var(--blue); }

/* ── Reservas section ── */
.reservas-section {
  background: var(--white);
  padding: 88px 7%;
}

.reservas-inner { max-width: 1060px; margin: 0 auto; text-align: center; }

.reservas-intro {
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: var(--body-fg); max-width: 680px;
  margin: 0 auto 40px;
}

.res-tabs {
  display: inline-flex; gap: 0; margin-bottom: 40px;
  border-bottom: 2px solid #e2e8f0;
}
.res-tabs-wrap { display: flex; justify-content: center; }

.res-tab-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; font-size: 14px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  border: none; background: transparent;
  color: #888; cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color var(--ease), border-color var(--ease);
}
.res-tab-btn .ti { font-size: 16px; }
.res-tab-btn:hover { color: var(--blue); }
.res-tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }

.res-panel { display: none; animation: fadeUp .35s ease both; }
.res-panel.active { display: block; }

/* ── Unified reservas block ── */
.res-block {
  display: flex; align-items: stretch;
  border-radius: 16px; overflow: hidden;
  border: 1px solid #e8edf4;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  margin: 0 auto 32px;
  max-width: 900px; text-align: left;
}
.res-block-left {
  background: var(--light);
  border-right: 4px solid var(--green);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 10px;
  min-width: 220px; flex-shrink: 0;
}
.res-code-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: #888;
}
.res-code-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: .08em;
  color: var(--blue);
}
.res-code-inline {
  font-family: 'Rubik', monospace;
  font-size: 17px; font-weight: 600;
  letter-spacing: .1em; color: var(--blue);
  background: rgba(0,97,179,.08);
  padding: 8px 14px; border-radius: 6px;
  display: inline-block; align-self: flex-start;
}
.res-block-right {
  padding: 36px 32px;
  display: flex; align-items: center;
  gap: 36px; flex: 1;
  background: var(--white); flex-wrap: wrap;
}
.res-block-info {
  flex: 1; display: flex;
  flex-direction: column; gap: 12px;
  min-width: 200px;
}
.res-option-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: .06em;
  color: var(--blue); margin-bottom: 0;
}
.res-option-meta {
  font-size: 13px; font-weight: 300; line-height: 1.7;
  color: #888; margin-bottom: 0;
}
.res-block-qr {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; flex-shrink: 0;
}
.res-block-qr-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
}
.res-block-info .btn-primary {
  display: block; text-align: center;
}

.res-notice {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff8e6; border: 1px solid #f5d76a;
  border-radius: 10px; padding: 16px 20px;
}
.res-notice .ti { color: #d4a017; font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.res-notice p { font-size: 13px; line-height: 1.6; color: #6a5500; }

/* ── Paquetes section ── */
.paquetes-section {
  background: var(--light);
  padding: 88px 7%;
  position: relative; overflow: hidden;
}
.paquetes-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/bkg_textura.webp') center / 440px;
  opacity: .04; pointer-events: none;
}

.paquetes-inner { max-width: 1100px; margin: 0 auto; }

.paquetes-intro {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: var(--body-fg); max-width: 600px; margin: 0 auto 52px;
}

.paquetes-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}

.pkg-card {
  border-radius: 16px; overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pkg-card:hover, .pkg-card:focus {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,97,179,.14);
  outline: none;
}

.pkg-card-img {
  position: relative; overflow: hidden;
}
.pkg-card-img img {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.pkg-card:hover .pkg-card-img img { transform: scale(1.06); }

.pkg-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,22,60,.42);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s ease;
}
.pkg-card:hover .pkg-card-overlay { opacity: 1; }
.pkg-card-overlay .ti {
  font-size: 36px; color: var(--white);
}

.pkg-card-body { padding: 20px 22px 24px; }
.pkg-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: .06em;
  color: var(--blue); margin-bottom: 4px;
}
.pkg-card-sub {
  font-size: 13px; font-weight: 400;
  color: #999; letter-spacing: .04em;
}

/* Package modal */
.pkg-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.pkg-modal[hidden] { display: none; }

.pkg-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,22,40,.7);
  backdrop-filter: blur(4px);
}

.pkg-modal-box {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 20px;
  max-width: 800px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 120px rgba(0,0,0,.4);
  animation: scaleIn .28s ease both;
}

.pkg-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(0,0,0,.08);
  color: var(--dark); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.pkg-modal-close:hover { background: rgba(0,0,0,.18); }

.pkg-modal-img-wrap { overflow: hidden; border-radius: 20px 0 0 20px; }
.pkg-modal-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.pkg-modal-content {
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 16px;
}

.pkg-modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; letter-spacing: .06em;
  color: var(--blue); line-height: 1;
}

.pkg-modal-desc {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--body-fg);
}

.pkg-modal-includes {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.pkg-modal-includes li {
  font-size: 14px; color: var(--body-fg);
  display: flex; align-items: center; gap: 8px;
}
.pkg-modal-includes li::before {
  content: ''; display: block; flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
}

.pkg-modal-agency {
  margin-top: 8px;
  font-size: 13px; color: #888; line-height: 1.7;
  border-top: 1px solid #eee; padding-top: 16px;
}

/* ── Conoce section ── */
.conoce-section {
  position: relative;
  padding: 88px 7%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, #004d8a 40%, var(--green) 100%);
}

.conoce-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}

.conoce-subtitle {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,.72);
  letter-spacing: .04em;
  margin-bottom: 52px;
}

.conoce-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  text-align: left;
}

.conoce-card {
  background: rgba(255,255,255,.92);
  border-radius: 16px; padding: 32px 28px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.5);
}

.conoce-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}

.conoce-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: .06em;
  color: var(--blue); margin-bottom: 8px;
}

.conoce-card-text {
  font-size: 14px; font-weight: 300; line-height: 1.75;
  color: var(--body-fg);
}

/* ── Conoce sub-blocks (hospitales / restaurantes) ── */
.conoce-subblock {
  margin-top: 64px; text-align: left;
}

.conoce-subheading {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: .08em;
  color: var(--white); margin-bottom: 24px;
}
.conoce-subheading .ti { font-size: 22px; opacity: .8; }

.info-cards-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.info-cards-rest { grid-template-columns: repeat(3,1fr); }

.info-card {
  background: rgba(255,255,255,.93);
  border-radius: 14px; padding: 24px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.5);
  transition: transform .22s ease, box-shadow .22s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

.info-card-icon {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.info-card-icon-rest { background: var(--blue); }
.info-card-icon-bar  { background: var(--green); }

.info-card-body { flex: 1; min-width: 0; text-align: left; }

.info-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: .06em;
  color: var(--dark); margin-bottom: 6px;
}

.info-card-addr {
  display: flex; align-items: flex-start; gap: 5px;
  font-size: 12px; color: #888; line-height: 1.5;
  margin-bottom: 4px;
}
.info-card-addr .ti { font-size: 12px; flex-shrink: 0; margin-top: 2px; }

.info-card-meta {
  font-size: 13px; font-weight: 300;
  color: var(--body-fg); line-height: 1.5;
  margin-bottom: 10px;
}

.info-card-tel {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--blue);
  transition: color var(--ease);
}
.info-card-tel:hover { color: var(--green); }
.info-card-tel .ti { font-size: 13px; }

.info-card-price {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  color: var(--green);
}

/* ── cdmx video ── */
.cdmx-video {
  width: 100%; height: 100%; min-height: 260px;
  object-fit: cover; display: block;
}

/* ── Reservation QR card ── */
.res-qr-img {
  width: 100%; max-width: 160px;
  height: auto; aspect-ratio: 1;
  object-fit: contain;
  border: 1px solid #e2e8f0; border-radius: 10px;
  margin-top: 4px; display: block;
}

/* ── Conoce climate cards grid ── */
.conoce-climate-grid {
  grid-template-columns: repeat(3,1fr);
  text-align: left; margin-bottom: 0;
}

/* ── Package modal meta ── */
.pkg-modal-meta { margin: 20px 0; }
.pkg-meta-row {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; color: var(--body-fg);
  margin-bottom: 8px; line-height: 1.5;
}
.pkg-meta-row .ti { font-size: 15px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.pkg-meta-row strong { font-weight: 600; }

.pkg-agency-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: .06em;
  color: var(--blue); margin-bottom: 6px;
}
.pkg-agency-contact {
  font-size: 13px; color: var(--body-fg);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.pkg-agency-contact .ti { color: var(--green); }
.pkg-agency-contact a { color: var(--blue); }
.pkg-agency-contact a:hover { color: var(--green); }

/* ── Modal image slider ── */
.modal-slider {
  position: relative; overflow: hidden;
  border-radius: 20px 0 0 20px;
  height: 100%;
}
.modal-slider-track {
  display: flex; height: 100%;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.modal-slider-track .pkg-modal-img {
  flex-shrink: 0; width: 100%;
}
.modal-slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.82); border: none;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: background .2s;
  z-index: 2;
}
.modal-slide-btn:hover { background: var(--white); }
.modal-slide-prev { left: 10px; }
.modal-slide-next { right: 10px; }
.modal-slider-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}

/* ── Accordion slider ── */
.acc-slider-section { overflow: hidden; background: var(--dark); }

.acc-slider {
  display: flex;
  height: 440px;
}

.acc-panel {
  flex: 1;
  min-width: 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex .55s cubic-bezier(.4,0,.2,1);
  outline: none;
}
.acc-panel:hover,
.acc-panel:focus,
.acc-panel.acc-active {
  flex: 5;
}

.acc-panel img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  pointer-events: none;
  transition: transform .55s ease;
}
.acc-panel:hover img,
.acc-panel.acc-active img {
  transform: scale(1.04);
}

/* ── Mexico photo strip ── */
.mexico-strip {
  overflow: hidden; background: var(--dark);
  height: 220px; display: flex; align-items: center;
}
.mexico-strip-track {
  display: flex; gap: 6px;
  animation: stripScroll 28s linear infinite;
  width: max-content;
}
.mexico-strip-track img {
  height: 220px; width: auto;
  object-fit: cover; flex-shrink: 0;
  border-radius: 0;
}
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   HERO — city text label
───────────────────────────────────────── */
.hero-city-text {
  font-size: 15px; font-weight: 400;
  color: #777;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 10px;
}

/* ─────────────────────────────────────────
   TICKETS BANNER
───────────────────────────────────────── */
.tickets-banner-section {
  position: relative;
  background: linear-gradient(105deg, #0E5DB0 0%, #0a7a5a 55%, #006847 100%);
  padding: 0 5%;
  overflow: visible;
}
.tickets-banner-wrap {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 220px;
}
.tickets-img-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tickets-img {
  width: 695px;
  max-width: 695px;
  z-index: 99;
  margin-top: -48px;
  margin-bottom: -48px;
  transform: rotate(-5deg);
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.45));
  display: block;
}
.tickets-content-col {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 40px 0;
}
.tickets-badge-box {
  display: inline-block;
  background: #0061B3;
  color: var(--white);
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
}
.tickets-percent {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.tickets-num {
  font-size: 94px;
  line-height: 1;
}
.tickets-suffix {
  font-size: 60px;
  line-height: 1;
}
.tickets-date-sub {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,.80);
  margin: 0;
}
.btn-tickets {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 50px;
  font-family: 'Rubik', sans-serif;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 6px;
  transition: background var(--ease), transform var(--ease);
}
.btn-tickets:hover { background: #a50e1f; transform: translateY(-2px); }

/* Tablet: escalar imagen proporcionalmente */
@media (max-width: 1080px) {
  .tickets-img {
    width: clamp(280px, 50vw, 520px);
    max-width: clamp(280px, 50vw, 520px);
  }
  .tickets-num  { font-size: clamp(60px, 7vw, 94px); }
  .tickets-suffix { font-size: clamp(38px, 4.5vw, 60px); }
}
@media (max-width: 768px) {
  .tickets-banner-wrap { gap: 24px; }
  .tickets-img {
    width: clamp(200px, 40vw, 320px);
    max-width: clamp(200px, 40vw, 320px);
  }
}
@media (max-width: 640px) {
  .tickets-banner-wrap {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
    padding: 30px 0 32px;
  }
  .tickets-img {
    width: 370px;
    max-width: 370px;
    margin-top: 20px;
    margin-bottom: -30px;
    transform: rotate(-3deg);
  }
  .tickets-num  { font-size: 72px; }
  .tickets-suffix { font-size: 46px; }
  .tickets-content-col {
    padding: 0 0 8px;
  }
  .footer-logo { display: block; margin: 0 auto 16px; }
}

/* ─────────────────────────────────────────
   RESERVAS — texto especial
───────────────────────────────────────── */
.res-nota {
  font-size: 15px;
  font-weight: 400;
  color: #6d6d6d;
}
.reservas-intro--bold {
  font-weight: 700;
  color: #6d6d6d;
}

/* ─────────────────────────────────────────
   CONOCE MÁS — TABS
───────────────────────────────────────── */
.conoce-tabs-wrap { width: 100%; }
.conoce-tab-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.conoce-tab-btn {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  color: rgba(255,255,255,.65);
  font-size: 15px; font-weight: 500;
  font-family: 'Rubik', sans-serif;
  padding: 12px 28px;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.conoce-tab-btn .ti { font-size: 17px; }
.conoce-tab-btn:hover {
  background: rgba(255,255,255,.16);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.conoce-tab-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.conoce-tab-panel { display: none; }
.conoce-tab-panel.active { display: block; }

/* ─────────────────────────────────────────
   MODAL — Agency block
───────────────────────────────────────── */
.modal-agency-sep {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 20px 0 16px;
}
.modal-agency-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: 6px;
}
.modal-agency-contact {
  font-size: 14px; color: #444;
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 4px;
}
.modal-agency-contact .ti { color: var(--green); font-size: 15px; }
.modal-agency-email {
  font-size: 14px; font-weight: 500;
  color: var(--green);
  text-decoration: none;
  display: block;
}
.modal-agency-email:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   PAQUETES — SLIDER
───────────────────────────────────────── */
.paquetes-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.paquetes-slider-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: 8px;
}
.paquetes-slider-track {
  display: flex;
  gap: 20px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.paquetes-slider-track .pkg-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}
.paq-slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--white);
  color: var(--green);
  font-size: 24px; line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), color var(--ease);
  padding: 0;
}
.paq-slider-btn:hover { background: var(--green); color: var(--white); }
.paq-slider-btn:disabled { opacity: .3; cursor: default; pointer-events: none; }

/* ─────────────────────────────────────────
   AGENDA SEDE — NOTA AL PIE
───────────────────────────────────────── */
.agenda-note-footer {
  text-align: center;
  font-size: 13px;
  color: var(--body-fg);
  font-style: italic;
  margin-top: 20px;
  opacity: .7;
}

/* ─────────────────────────────────────────
   AGENDA PAGE — DAY TABS
───────────────────────────────────────── */
.agenda-page-section {
  padding: 72px 5% 80px;
  max-width: 960px;
  margin: 0 auto;
}
.agenda-day-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 5%;
  overflow-x: auto;
  scrollbar-width: none;
}
.agenda-day-tabs::-webkit-scrollbar { display: none; }
.agenda-day-tab-btn {
  background: transparent;
  border: 2px solid #c8d6e8;
  border-radius: 6px;
  padding: 11px 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .1em;
  color: #6e849c;
  cursor: pointer;
  transition: all .18s;
  text-transform: uppercase;
  white-space: nowrap;
}
.agenda-day-tab-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.agenda-day-tab-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.agenda-day-panel {
  display: none;
}
.agenda-day-panel.active {
  display: block;
}
/* Simultaneous events group */
.agenda-simultaneous {
  border-left: 4px solid var(--green);
  background: rgba(0,104,71,.05);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-bottom: 12px;
}
.agenda-simultaneous-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
/* Regular event rows */
.agenda-ev {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #edf2f7;
  align-items: flex-start;
}
.agenda-ev:last-child { border-bottom: none; }
.agenda-ev-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: .04em;
  color: var(--blue);
  min-width: 88px;
  padding-top: 2px;
}
.agenda-ev-body { flex: 1; }
.agenda-ev-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
.agenda-ev-note {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  background: rgba(0,104,71,.08);
  border-radius: 20px;
  padding: 2px 10px;
  margin-top: 5px;
}
.agenda-ev-sub {
  font-size: 13px;
  color: var(--body-fg);
  margin-top: 4px;
  opacity: .8;
}
/* Day header strip */
.agenda-day-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--blue);
}
.agenda-day-name-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 46px);
  color: var(--blue);
  letter-spacing: .04em;
}
.agenda-day-date-big {
  font-size: 16px;
  font-weight: 400;
  color: #888;
  letter-spacing: .05em;
}
/* Ticket bottom banner on agenda page */
.agenda-ticket-cta {
  background: var(--dark);
  text-align: center;
  padding: 48px 5%;
}
.agenda-ticket-cta p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  margin-bottom: 16px;
}

/* ─────────────────────────────────────────
   AGENDA — CALENDAR GRID
───────────────────────────────────────── */
.agenda-cal-outer {
  padding: 0 5%;
  max-width: 920px;
  margin: 0 auto;
  overflow-x: auto;
}
.agenda-cal-grid {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  grid-auto-rows: 44px;
  background: repeating-linear-gradient(
    to bottom,
    #ffffff 0px, #ffffff 44px,
    #f4f7fb 44px, #f4f7fb 88px
  );
  min-width: 440px;
  border: 1px solid #e8edf4;
  border-radius: 0;
  overflow: hidden;
}
.cal-time {
  grid-column: 1;
  font-size: 16px;
  color: #8898aa;
  text-align: right;
  padding-right: 14px;
  padding-left: 8px;
  display: flex;
  align-items: flex-start;
  padding-top: 10px;
  border-right: 1px solid #dde6f0;
}
.cal-event {
  border-radius: 0;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  margin: 2px;
  overflow: hidden;
}
.cal-event strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .06em;
  line-height: 1.2;
  display: block;
}
.cal-event span {
  font-size: 14px;
  opacity: .88;
  margin-top: 5px;
  display: block;
}
/* Brand palette for event blocks */
.cal-event--blue     { background: var(--blue); }       /* #0061B3 — Summit, Desafío */
.cal-event--green    { background: var(--green); }      /* #006847 — Comités exclusivos */
.cal-event--red      { background: var(--red); }        /* #CD1226 — Cóctel */
.cal-event--gray     { background: #6d6d6d; }           /* neutral — Almuerzo, Conferencia */
/* Exclusive members note inside event block */
.cal-excl-note {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 4px;
  padding: 3px 10px;
  margin-top: 7px;
  letter-spacing: .01em;
}
/* Gap/break row inside the calendar grid */
.cal-break {
  grid-column: 1 / -1;
  background: #eef2f7;
  border-top: 2px dashed #c8d6e8;
  border-bottom: 2px dashed #c8d6e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #9aa5b4;
  letter-spacing: .2em;
}
.agenda-cal-note {
  font-size: 13px;
  color: var(--body-fg);
  padding: 16px 5% 0;
  max-width: 920px;
  margin: 0 auto;
  opacity: .75;
}

/* ── Agenda calendar responsive ── */
@media (max-width: 600px) {
  .agenda-cal-grid {
    grid-auto-rows: 52px;
    min-width: 300px;
    background: repeating-linear-gradient(
      to bottom,
      #ffffff 0px, #ffffff 52px,
      #f4f7fb 52px, #f4f7fb 104px
    );
  }
  .cal-time {
    font-size: 12px;
    padding-top: 10px;
    padding-right: 8px;
  }
  .cal-event {
    padding: 6px 8px;
  }
  .cal-event strong {
    font-size: 15px;
    line-height: 1.1;
  }
  .cal-event span {
    font-size: 12px;
    margin-top: 2px;
  }
  .cal-excl-note {
    font-size: 11px;
    padding: 2px 6px;
    margin-top: 4px;
  }
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .res-options { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1024px) {
  .paquetes-grid { grid-template-columns: repeat(2,1fr); }
  .paquetes-slider-track .pkg-card { flex: 0 0 calc(50% - 10px); }
  .cdmx-inner { gap: 48px; }
  .hotel-slide img { height: 380px; }
  .info-cards-grid { grid-template-columns: repeat(2,1fr); }
  .info-cards-rest  { grid-template-columns: repeat(2,1fr); }
  .conoce-climate-grid { grid-template-columns: repeat(3,1fr); }
  .acc-slider { height: 340px; }
  .conoce-tab-btn { padding: 10px 18px; font-size: 14px; }
}

@media (max-width: 900px) {
  .conoce-grid { grid-template-columns: repeat(2,1fr); }
  .conoce-climate-grid { grid-template-columns: 1fr; }
  .res-options  { grid-template-columns: repeat(2,1fr); }
  .pkg-modal-box { grid-template-columns: 1fr; }
  .pkg-modal-img-wrap { border-radius: 20px 20px 0 0; }
  .pkg-modal-img { height: 260px; }
  .modal-slider { border-radius: 20px 20px 0 0; }
  .acc-slider { height: 260px; }
  .acc-panel { min-width: 24px; }
}

@media (max-width: 768px) {
  .sede-hero { height: 60vh; }
  .sede-hero-content { padding: 0 6% 40px; }
  .cdmx-inner { grid-template-columns: 1fr; gap: 36px; }
  .cdmx-gallery { order: -1; }
  .cdmx-grid-item img { height: 160px; }
  .cdmx-grid-big img { height: 200px; }
  .cdmx-video { min-height: 200px; }
  .hotel-slide img { height: 280px; }
  .paquetes-grid { grid-template-columns: repeat(2,1fr); }
  .conoce-grid { grid-template-columns: 1fr; }
  .info-cards-grid, .info-cards-rest { grid-template-columns: 1fr; }
  .res-options { grid-template-columns: 1fr; }
  .res-tabs { flex-direction: column; border-bottom: none; gap: 8px; }
  .res-tab-btn { border: 1px solid #e2e8f0; border-radius: 8px; margin-bottom: 0; width: 100%; justify-content: center; }
  .res-tab-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
  .acc-slider { height: 200px; }
  .acc-panel:hover, .acc-panel.acc-active { flex: 4; }
}

@media (max-width: 560px) {
  .paquetes-slider-track .pkg-card { flex: 0 0 80%; }
}

@media (max-width: 480px) {
  .paquetes-grid { grid-template-columns: 1fr; }
  .pkg-card-img img { height: 200px; }
  .paq-slider-btn { width: 36px; height: 36px; font-size: 20px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 18px; }
  .hotel-slide img { height: 220px; }
  .sede-hero-title { font-size: clamp(52px, 14vw, 80px); }
  .mexico-strip { height: 140px; }
  .mexico-strip-track img { height: 140px; }
  .res-block { flex-direction: column; }
  .res-block-left { border-right: none; border-bottom: 4px solid var(--green); min-width: auto; }
  .res-block-right { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .res-block-info { align-items: center; text-align: center; }
  .res-option-title { text-align: center; }
  .res-block-info .btn-primary { align-self: center; }
  .res-block-qr { align-items: center; }
  .res-qr-img { width: 180px; max-width: 180px; height: 180px; }
  .pkg-agency-info { flex-direction: column; align-items: center; text-align: center; }
  .acc-slider { height: 160px; }
  .acc-panel { min-width: 16px; }
}

/* ================================================================
   PROMO STRIP — Pre-venta 20% OFF (3-col: red ticket | text | cta)
   ================================================================ */
.promo-strip {
  background: linear-gradient(105deg, #003d27 0%, #005238 35%, #004d8a 100%);
  overflow: hidden;
}
.promo-strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr auto;
  align-items: center;
  min-height: 170px;
}

/* ── Col 1: red badge + floating ticket ── */
.promo-col-ticket {
  align-self: stretch;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  padding: 24px 18px 0;
  position: relative;
  flex-shrink: 0;
}
.promo-col-badge {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 16px; letter-spacing: .14em;
  color: var(--white); text-align: center;
  background: var(--red);
  border-radius: 4px;
  padding: 5px 16px;
  margin: 0 0 20px; line-height: 1.3;
  display: inline-block;
  white-space: nowrap;
  z-index: 5; position: relative;
}
.promo-ticket-img {
  width: 540px;
  transform: rotate(-10deg) translateY(16px);
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.55));
  position: relative; z-index: 2;
  will-change: transform;
  flex-shrink: 0;
}

/* ── Col 2: text ── */
.promo-col-text {
  padding: 36px 44px;
  display: flex; flex-direction: column;
  align-items: center; gap: 0;
  text-align: center;
}
.promo-text-top {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(14px, 1.4vw, 18px); font-weight: 400;
  color: rgba(255,255,255,.80); margin: 0;
}
.promo-text-big {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(64px, 8vw, 102px); font-weight: 800;
  color: var(--white); line-height: 1; margin: 0;
  letter-spacing: -.02em;
}
.promo-text-date {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(14px, 1.2vw, 17px); font-weight: 400;
  color: rgba(255,255,255,.70); margin: 6px 0 0;
}

/* ── Col 3: CTA ── */
.promo-col-cta {
  padding: 36px 52px 36px 16px;
  flex-shrink: 0;
}
.btn-promo-cta {
  display: inline-block;
  background: var(--white); color: var(--blue);
  padding: 16px 38px; border-radius: 50px;
  font-family: 'Rubik', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.btn-promo-cta:hover {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .promo-strip-inner { grid-template-columns: 260px 1fr auto; }
  .promo-ticket-img { width: 320px; }
  .promo-col-cta { padding: 36px 32px 36px 16px; }
}
@media (max-width: 768px) {
  .promo-strip-inner {
    grid-template-columns: 160px 1fr;
    grid-template-rows: 1fr auto;
  }
  .promo-col-cta {
    grid-column: 1 / -1;
    padding: 0 24px 24px;
    display: flex; justify-content: center;
  }
  .promo-ticket-img { width: 220px; }
  .promo-col-text { padding: 28px 28px 20px; }
}
@media (max-width: 560px) {
  .promo-strip-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .promo-col-ticket {
    flex-direction: column; align-items: center;
    gap: 12px; padding: 24px 16px 0;
    min-height: auto;
  }
  .promo-col-badge { align-self: center; }
  .promo-ticket-img { width: 220px; transform: rotate(-8deg) translateY(0); }
  .promo-col-text { padding: 20px 24px 16px; }
  .promo-col-cta { padding: 0 24px 24px; }
  .btn-promo-cta { width: 100%; text-align: center; }
}

/* ── Promo strip city (foto izq | title img + red strip | cta) ── */
.promo-strip--city .promo-strip-inner {
  grid-template-columns: minmax(auto, 23%) 1fr auto;
  align-items: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
  min-height: 140px;
}
.promo-col-img {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  flex-shrink: 0;
}
.promo-city-img {
  height: 100%;
  min-height: 140px;
  max-height: 210px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: bottom left;
}
.promo-strip--city .promo-col-text {
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  text-align: left;
}
.promo-title-img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 480px;
}
.promo-red-strip {
  background: var(--red);
  padding: 7px 16px;
  border-radius: 3px;
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
  text-align: center;
}
.promo-red-strip p {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--white);
  font-size: clamp(14px, 1.3vw, 22px);
  letter-spacing: 0.1rem;
  margin: 0;
  white-space: nowrap;
}
.promo-strip--city .promo-col-cta {
  padding: 0 40px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .promo-city-img { max-height: 150px; }
  .promo-title-img { max-width: 380px; }
  .promo-strip--city .promo-col-text { padding: 18px 24px; gap: 7px; }
  .promo-strip--city .promo-col-cta { padding: 0 28px; }
  .promo-red-strip p { font-size: clamp(12px, 1.1vw, 15px); }
}
@media (max-width: 768px) {
  .promo-strip--city .promo-strip-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .promo-strip--city .promo-col-cta {
    grid-column: 1 / -1;
    padding: 0 20px 20px;
    display: flex;
    justify-content: center;
  }
  .promo-red-strip p { white-space: normal; }
  .promo-title-img { max-width: 100%; }
}
@media (max-width: 560px) {
  .promo-strip--city .promo-strip-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .promo-col-img { justify-content: center; }
  .promo-city-img { max-height: 130px; min-height: 0; }
  .promo-strip--city .promo-col-text { align-items: center; text-align: center; padding: 16px 20px; }
  .promo-strip--city .promo-col-cta { padding: 0 20px 24px; justify-content: center; }
  .promo-strip--city .btn-promo-cta { width: 100%; text-align: center; }
}

/* ================================================================
   TICKETS PAGE
   ================================================================ */

/* Tickets hero bg */
#tickets-hero-bg {
  background-image: url('images/foto_mexico_05.jpg');
  background-position: center 50%;
}

/* Lots section */
.lots-section {
  background: var(--light);
  padding: 80px 6%;
}
.lots-section-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.lots-section-inner .sec-title { margin-bottom: 36px; }
.lots-sub {
  font-size: 16px; color: #777; margin: 8px 0 48px;
}
.lots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.lot-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px 32px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.lot-card--active {
  border: 3px solid var(--green);
  box-shadow: 0 8px 40px rgba(0,104,71,.18);
  transform: translateY(-8px);
}
.lot-card:not(.lot-card--upcoming):hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 56px rgba(0,0,0,.16);
}
.lot-card--active:hover {
  box-shadow: 0 20px 56px rgba(0,104,71,.30);
}
.lot-card--upcoming:hover { opacity: .85; }
.lot-card--upcoming {
  opacity: .65;
  border: 2px solid #e0e8f0;
}
.lot-badge-pill {
  display: inline-block;
  background: var(--green); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px;
}
.lot-badge--upcoming {
  background: #8fa3b3;
}
.lot-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 42px; color: var(--blue);
  line-height: 1; margin: 4px 0;
}
.lot-period {
  font-size: 14px; color: #888; margin: 0;
  font-weight: 500;
}
.lot-divider {
  width: 100%; height: 1px;
  background: #e8eef5; margin: 8px 0;
}
.lot-price-row {
  width: 100%;
  display: flex; flex-direction: column; gap: 0;
}
.lot-price-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid #f0f4f8;
}
.lot-price-item:last-child { border-bottom: none; }
.lot-price-label {
  font-size: 14px; font-weight: 500; color: #555;
}
.lot-price-usd {
  font-size: 18px; font-weight: 700; color: var(--dark);
}
.lot-card--active .lot-price-usd { color: var(--green); }

/* Miembros row highlight */
.lot-price-item--members {
  background: #f0f9f4;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 4px;
  border: 1.5px solid #b3ddc8;
}
.lot-price-item--members .lot-price-label {
  font-weight: 700; color: var(--green);
}
.lot-price-item--members .lot-price-usd {
  font-size: 20px; font-weight: 800; color: var(--green);
}
.lot-card--upcoming .lot-price-item--members {
  background: #f5f5f5; border-color: #ddd;
}
.lot-card--upcoming .lot-price-item--members .lot-price-label,
.lot-card--upcoming .lot-price-item--members .lot-price-usd { color: #999; }

.btn-lot {
  display: inline-block;
  background: var(--green); color: var(--white);
  padding: 14px 36px; border-radius: 50px;
  font-weight: 700; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; margin-top: 8px;
  transition: background var(--ease), transform var(--ease);
}
.btn-lot:hover { background: #005238; transform: translateY(-2px); }

@media (max-width: 900px) {
  .lot-card { padding: 24px 16px 20px; }
  .lot-card--active { transform: translateY(-6px); }
}
@media (max-width: 640px) {
  .lots-grid { grid-template-columns: 1fr; max-width: 400px; margin: 8px auto 0; }
  .lot-card--active { transform: none; }
}

/* Ticket includes banner */
.ticket-includes-section {
  position: relative;
  padding: 72px 6%;
  overflow: hidden;
}
.ticket-includes-bg {
  position: absolute; inset: 0;
  background: url('images/summit2025.webp') center / cover no-repeat;
}
.ticket-includes-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,.82);
}
.ticket-includes-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.ticket-includes-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: var(--white);
  margin-bottom: 48px; line-height: 1.3;
}
.ticket-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.ticket-include-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.ticket-include-item .ti {
  font-size: 36px; color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.1);
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}
.ticket-include-item p {
  font-size: 15px; color: rgba(255,255,255,.85);
  line-height: 1.4; margin: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .ticket-includes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ticket-includes-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Payment methods */
.payment-section {
  background: var(--white);
  padding: 72px 6%;
  position: relative;
  overflow: hidden;
}
.payment-ring {
  position: absolute; pointer-events: none; border-radius: 50%; opacity: .06;
}
.payment-ring-1 {
  left: -80px; bottom: -60px;
  width: 280px; height: 280px;
  animation: floatRing 8s ease-in-out infinite;
}
.payment-ring-2 {
  right: -60px; top: -50px;
  width: 200px; height: 200px;
  animation: floatRing 10s ease-in-out infinite reverse;
}
.payment-ring-3 {
  right: 18%; bottom: -20px;
  width: 110px; height: 110px;
  animation: floatRing 6s ease-in-out infinite;
  opacity: .04;
}
.payment-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 36px 0 28px;
}
.payment-method-card {
  background: var(--light);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  text-align: center;
}
.payment-method-card .ti {
  font-size: 40px; color: var(--blue);
}
.payment-method-card h3 {
  font-size: 17px; font-weight: 700; color: var(--dark); margin: 0;
}
.payment-method-card p {
  font-size: 14px; color: #777; margin: 0;
}
.payment-legal {
  font-size: 13px; color: #888;
  border-top: 1px solid #e8eef5;
  padding-top: 20px; margin-top: 8px;
  font-style: italic;
}
@media (max-width: 560px) {
  .payment-methods-grid { grid-template-columns: 1fr; }
}

/* Packages contact banner */
.packages-cta-section {
  background: linear-gradient(100deg, #0061B3 0%, #0061B3 60%, #004a8c 100%);
  padding: 48px 6%;
}
.packages-cta-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  text-align: center;
}
.packages-cta-inner .ti {
  font-size: 44px; color: rgba(255,255,255,.80);
}
.packages-cta-inner strong {
  display: block;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700; color: var(--white);
}
.packages-cta-inner p {
  font-size: 16px; color: rgba(255,255,255,.80); margin: 4px 0 0;
}
.packages-cta-inner a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 560px) {
  .packages-cta-inner { align-items: center; }
}

/* Legal footnote */
.tickets-legal-section {
  background: #f8fafc;
  padding: 40px 6%;
  border-top: 1px solid #e8eef5;
}
.tickets-legal-inner {
  max-width: 900px; margin: 0 auto;
}
.tickets-legal-inner p {
  font-size: 13px; color: #888;
  line-height: 1.7;
}
.tickets-legal-inner strong {
  color: #666;
}
