/* =============================================
   Venue Meli XP 2026 — Main Stylesheet
   ============================================= */

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
html { scroll-behavior: smooth; }

/* =============================================
   TOKENS / CUSTOM PROPERTIES
   ============================================= */
:root {
  /* Colors */
  --c-yellow:  #ffe600;
  --c-blue:    #0567ee;
  --c-dark:    #1a1a1a;
  --c-white:   #ffffff;
  --c-black:   #000000;
  --c-grey:    #666666;
  --c-text:    #2b2930;

  /* Typography */
  --font:      'proxima-nova', 'Helvetica Neue', Arial, sans-serif;
  --ls-base:   0.1px;

  /* Layout */
  --container: 1180px;
  --header-h:  72px;
  --bg-full:   1920px auto;

  /* Radii */
  --r-card:    32px;
  --r-pill:    999px;

  /* Motion */
  --trans:     0.2s cubic-bezier(0.16,1,0.3,1);
}

/* =============================================
   BASE
   ============================================= */
body {
  font-family: var(--font);
  color: var(--c-dark);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: filter var(--trans), transform var(--trans);
}
.btn:hover  { filter: brightness(0.9); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--blue    { background: var(--c-blue);   color: var(--c-white); border: 2px solid transparent; }
.btn--yellow  { background: var(--c-yellow); color: var(--c-black); border: 2px solid transparent; }
.btn--black   { background: var(--c-black);  color: var(--c-white); border: 2px solid transparent; }
.btn--outline { background: transparent; color: var(--c-white); border: 2px solid var(--c-white); }
.btn--outline:hover { background: rgba(255,255,255,0.1); filter: none; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--c-yellow);
  height: var(--header-h);
  box-shadow: 0px 4px 4px 0px #0000001A;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.header__nav a {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: var(--ls-base);
  color: var(--c-black);
  padding: 8px 16px;
  border-radius: 6px;
  transition: background var(--trans);
  text-align: center;
}
.header__nav a:hover { background: rgba(0,0,0,0.08); }
.header__nav a[aria-current="page"] {
  background: rgba(0,0,0,0.08);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}
.header__actions .btn {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: var(--ls-base);
  text-align: center;
  height: 40px;
  padding-inline: 16px;
  border-radius: 6px;
  gap: 8px;
  border: 1px solid transparent;
}
.header__actions .btn--blue {
  background: #0085FF;
  border-color: var(--c-blue);
}

/* Logo: desktop visible, mobile oculto por defecto */
.header__logo-img--mobile { display: none; }

/* Hamburger */
.header__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.header__hamburger-icon {
  width: 24px;
  height: 24px;
  display: block;
}
.header__hamburger-icon--close { display: none; }
.header__hamburger.is-open .header__hamburger-icon--open  { display: none; }
.header__hamburger.is-open .header__hamburger-icon--close { display: block; }

/* Mobile menu — panel derecho */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  width: 338px;
  max-width: 90vw;
  z-index: 9999;
  overflow-y: auto;
  border-bottom-left-radius: 50px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
  will-change: transform;
  isolation: isolate;
}
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

/* Overlay oscuro detrás del panel */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
}
.mobile-menu-overlay.is-open { display: block; }

/* Top: yellow section with SVG background */
.mobile-menu__top {
  background-color: var(--c-yellow);
  background-image: url('../images/bck-menu-mobile-top.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.mobile-menu__badge {
  width: 160px;
  height: auto;
  display: block;
}
.mobile-menu__logo {
  width: 220px;
  height: auto;
  display: block;
}

/* Nav: white section with bottom decoration */
.mobile-menu__nav {
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.mobile-menu__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  color: #000;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
  transition: background var(--trans), color var(--trans);
  text-decoration: none;
}
.mobile-menu__item:hover {
  background: rgba(53,131,250,0.07);
  color: #3583FA;
}
.mobile-menu__item[aria-current="page"] {
  background: transparent;
  color: #3583FA;
}
.mobile-menu__item:hover .mobile-menu__icon,
.mobile-menu__item[aria-current="page"] .mobile-menu__icon {
  filter: invert(46%) sepia(96%) saturate(900%) hue-rotate(199deg) brightness(102%);
}
.mobile-menu__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

/* Bottom background decoration */
.mobile-menu__bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}
.mobile-menu__bg img {
  width: 338px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   COUNTDOWN BAR
   ============================================= */
.countdown-bar {
  background: var(--c-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: var(--header-h);
  z-index: 200;
  height: 72px;
}
.countdown-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.countdown-bar__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 0;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}
.countdown__num {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--c-dark);
  font-variant-numeric: tabular-nums;
}
.countdown__lbl {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-top: 2px;
}
.countdown__sep {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-dark);
  padding-inline: 2px;
  margin-top: -6px;
}

/* =============================================
   CINTA / MARQUEE
   ============================================= */
.cinta {
  background: var(--c-blue);
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.cinta__track {
  display: flex;
  align-items: center;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.cinta__track:hover { animation-play-state: paused; }
.cinta__img {
  height: 31px;
  width: auto;
  flex-shrink: 0;
  margin-right: 60px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background-color: var(--c-yellow);
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/bck-home.svg');
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.hero__container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
  position: relative;
  z-index: 3;
}

.hero__content {
  position: relative;
  padding-top: 10px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 490px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  height: 65px;
  padding: 12px 16px;
  border-radius: 20px;
  background: linear-gradient(245.35deg, #F5F3ED -3.04%, #FFEF73 68.75%);
  box-shadow: 2px 2px 12px 0px #00000014, 0px 2px 4px 0px #00000012 inset;
  font-family: var(--font);
}
.hero__badge-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.hero__badge-date strong {
  font-size: 33.25px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05px;
  color: var(--c-black);
  text-align: center;
  display: block;
}
.hero__badge-date span {
  font-size: 19.62px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06px;
  color: var(--c-black);
  display: block;
  text-align: center;
}
.hero__badge-divider {
  width: 0;
  height: 40.41px;
  border-left: 0.65px solid rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.hero__badge-venue {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero__badge-venue span {
  font-size: 21.25px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06px;
  color: var(--c-black);
  text-transform: uppercase;
  display: block;
}
.hero__badge-venue strong {
  font-size: 31.29px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.07px;
  color: var(--c-black);
  text-transform: uppercase;
  display: block;
}

.hero__logo img {
  height: 140px;
  width: auto;
}

.hero__cta .btn {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: var(--ls-base);
  height: 40px;
  padding-inline: 16px;
  border-radius: 6px;
  border: 1px solid var(--c-blue);
  background: #0085FF;
  color: var(--c-white);
}

/* =============================================
   SECTION EXPERIENCE
   ============================================= */
.section-xp {
  background:
    url('../images/bck-home-exp2.svg') center top / cover no-repeat,
    linear-gradient(52.83deg, #DDF4FA 23.6%, #0567EE 70.39%);
  padding-block: 80px;
  min-height: 626px;
  position: relative;
  overflow: hidden;
}
.section-xp .container {
  display: block;
}

/* Layout dos columnas */
.section-xp__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Columna izquierda: stats */
.section-xp__stats-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-xp__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

/* Stat cards */
.stat--card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  width: 100%;
  height: 148px;
  background: url('/assets/images/bck-pasti-cua-exp.svg') center / cover no-repeat, linear-gradient(43.87deg, rgba(221,244,250,0.6) 15.51%, rgba(178,216,247,0.6) 26.81%, rgba(126,182,244,0.6) 41.89%, rgba(82,153,242,0.6) 57.9%, rgba(48,131,240,0.6) 72.04%, rgba(24,115,239,0.6) 86.17%, rgba(10,106,238,0.6) 99.36%, rgba(5,103,238,0.6) 109.72%);
  box-shadow: 0px 2.53px 2.53px 0px #00000040, 0px 1.26px 2.53px 0px #00000033 inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20.24px;
  padding: 15.24px 15.18px;
  box-sizing: border-box;
}
.stat--card-wide {
  grid-column: 1 / -1;
  width: 100%;
  background-image: url('/assets/images/bck-pasti-rect-exp.svg'), linear-gradient(43.87deg, rgba(221,244,250,0.6) 15.51%, rgba(178,216,247,0.6) 26.81%, rgba(126,182,244,0.6) 41.89%, rgba(82,153,242,0.6) 57.9%, rgba(48,131,240,0.6) 72.04%, rgba(24,115,239,0.6) 86.17%, rgba(10,106,238,0.6) 99.36%, rgba(5,103,238,0.6) 109.72%);
}

.stat--card .stat__num {
  font-family: var(--font);
  font-size: 80.95px;
  font-weight: 800;
  line-height: 36.05px;
  letter-spacing: 0.06px;
  text-align: center;
  color: #000;
}
.stat--card .stat__lbl {
  font-family: var(--font);
  font-size: 30.36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06px;
  text-align: center;
  color: #000;
}

/* Columna derecha: contenido */
.section-xp__content-col {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-left: 30px;
}

.section-xp__title {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  text-align: left;
}
.section-xp__title em   { font-style: normal; color: #fff; }
.section-xp__title span { color: #fff; }

.section-xp__wave { display: none; }

/* Description */
.section-xp__desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-xp__desc p {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1px;
  color: #000;
}
.section-xp__desc strong  { color: #000; font-weight: 700; }
.section-xp__desc .highlight { color: #000; }

/* Benefits grid — row propio debajo del layout */
.section-xp__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.section-xp__benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(316.51deg, #DDF4FA -10.13%, #0567EE 50.69%);
  border-radius: 14px;
  padding: 14px;
}
.section-xp__benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
}
.section-xp__benefit-icon svg { width: 40px; height: 40px; }
.section-xp__benefit p {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-white);
  margin: 0;
}

/* =============================================
   SECTION VIDEO / OTRAS EDICIONES
   ============================================= */
.section-otras {
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.section-otras::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/bck-home-otras-ediciones.svg');
  background-size: var(--bg-full);
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.otras__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.otras__gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.otras__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 1440px;
  margin-inline: auto;
  margin-bottom: 48px;
  min-height: 710px;
  position: relative;
  z-index: 3;
}

.otras__left {
  display: flex;
  flex-direction: column;
  padding: 183px 48px 60px 130px;
}
.otras__left-top  { display: flex; flex-direction: column; }
.otras__left-bottom { display: flex; }

.otras__ml-logo {
  width: 154.92px;
  height: 44px;
  object-fit: contain;
  object-position: left;
}
.otras__title {
  font-family: var(--font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-black);
  margin-top: 10px;
}
.otras__xp-logo {
  width: 282.44px;
  height: 80.11px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left;
  margin-top: 120px;
}

.otras__venue {
  overflow: hidden;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}
.otras__venue img {
  width: 100%;
  height: auto;
  display: block;
}
.otras__venue-gif {
  width: 100%;
  height: auto;
  display: block;
}

.section-otras > .container {
  position: relative;
  z-index: 3;
}

.otras__cards {
  display: grid;
  grid-template-columns: repeat(4, 276px);
  gap: 10px;
  justify-content: center;
}

.video-card {
  width: 276px;
  height: 320px;
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: transform var(--trans);
}
.video-card:hover { transform: translateY(-4px); }

.video-card__thumb {
  position: absolute;
  inset: 0;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
}
.video-card__play::after {
  content: '';
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  clip-path: polygon(38% 25%, 38% 75%, 80% 50%);
}
.video-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 16px 24px 16px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,0.18) 30%,
    rgba(0,0,0,0.55) 70%,
    rgba(0,0,0,0.72) 100%
  );
}
.video-card__label {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-white);
}

/* ====================================================
   MODAL YOUTUBE
   ==================================================== */
.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-modal[hidden] { display: none; }

.yt-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}

.yt-modal__box {
  position: relative;
  width: 90vw;
  max-width: 960px;
  z-index: 1;
}

.yt-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.yt-modal__close:hover { opacity: 1; }

.yt-modal__ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r-card);
  overflow: hidden;
  background: #000;
}
.yt-modal__ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.otras__solapa {
  display: flex;
  justify-content: center;
  padding-top: 62px;
  padding-bottom: 0;
}
.otras__solapa img {
  width: auto;
  height: 80px;
}

.otras__dots,
.oradores-grid__dots {
  display: none;
}

.otras__dot,
.oradores-grid__dot {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.25s, width 0.25s;
  flex-shrink: 0;
}
.otras__dot.is-active,
.oradores-grid__dot.is-active {
  background: var(--c-yellow);
  width: 24px;
  border-radius: 4px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--c-white);
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-block: 40px;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer__left { flex: 1; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  margin-bottom: 12px;
}
.footer__links a {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-dark);
  padding: 2px 14px;
  border-right: 1px solid rgba(0,0,0,0.18);
  transition: color var(--trans);
}
.footer__links a:first-child { padding-left: 0; }
.footer__links a:last-child  { border-right: none; }
.footer__links a:hover { color: var(--c-blue); }
.footer__copy {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: #888;
}
.footer__right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.footer__logo-img {
  display: block;
}
.footer__logo-img--desktop { width: 211.53px; height: 59.27px; }
.footer__logo-img--mobile  { display: none; }

/* =============================================
   TICKETS PAGE
   ============================================= */
.tickets-section {
  background-image: url('/assets/images/bck-tickets.svg');
  background-size: var(--bg-full);
  background-position: center top;
  background-repeat: no-repeat;
  min-height: calc(100vh - var(--header-h));
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.tickets-heading {
  margin-bottom: 48px;
}
.tickets-heading__title {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-black);
}
.tickets-heading__sub {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-black);
  margin-top: 8px;
}

.tickets-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ticket-card {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(52.83deg, rgba(237, 251, 255, 0.4) 23.6%, rgba(110, 171, 255, 0.6) 70.39%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
}

.ticket-card__header {
  position: relative;
  padding: 28px 32px 24px;
}
.ticket-card__header::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 60%;
  background: var(--c-yellow);
  border-top-left-radius: 28px;
  border-bottom-right-radius: 60px;
  box-shadow: -2px -2px 5px 0px #00000026 inset;
  z-index: 0;
}
.ticket-card__header > * {
  position: relative;
  z-index: 1;
}
.ticket-card__label {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-black);
  display: block;
  margin-bottom: 4px;
}
.ticket-card__name {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-black);
}
.ticket-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
  white-space: nowrap;
}
.ticket-card__amount {
  font-family: var(--font);
  font-size: 54px;
  font-weight: 800;
  line-height: 57px;
  letter-spacing: var(--ls-base);
  color: var(--c-black);
}
.ticket-card__currency {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-black);
}

.ticket-card__body {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
}
.ticket-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ticket-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: var(--ls-base);
  text-transform: capitalize;
  color: var(--c-black);
}
.ticket-card__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.ticket-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 111px;
  height: 48px;
  padding-inline: 24px;
  border-radius: 8px;
  gap: 8px;
  background: var(--c-yellow);
  color: var(--c-black);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: var(--ls-base);
  align-self: flex-start;
  white-space: nowrap;
  transition: filter var(--trans), transform var(--trans);
}
.ticket-card__cta:hover  { filter: brightness(0.92); transform: translateY(-1px); }
.ticket-card__cta:active { transform: translateY(0); }

/* =============================================
   ORADORES PAGE
   ============================================= */
.oradores-hero {
  background:
    url('/assets/images/bck-oradores.svg') center top / var(--bg-full) no-repeat;
  background-color: #fffbe8;
  overflow: hidden;
}

.oradores-hero__container {
  max-width: 1440px;
  margin-inline: auto;
  padding: 80px 60px 80px;
}

.oradores-hero__top {
  display: grid;
  grid-template-columns: repeat(4, 276px);
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.oradores-hero__left {
  grid-column: 1 / 3;
  padding-top: 100px;
}
.oradores-hero__right {
  grid-column: 3 / 5;
  padding-top: 0;
}

.oradores-hero__logo img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 32px;
}

.oradores-hero__title {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: var(--ls-base);
  color: #1a1a2e;
}

/* Featured speaker card */
.orador-featured {
  position: relative;
  overflow: visible;
  height: 475px;
}

.orador-featured__bg { display: none; }

.orador-featured__info {
  position: absolute;
  bottom: 132px;
  left: 32px;
  right: 310px;
  text-align: right;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.orador-featured__info.is-active { opacity: 1; }

.orador-featured__name {
  font-family: var(--font);
  font-size: 59.4px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.orador-featured__role {
  display: block;
  font-family: var(--font);
  font-size: 25.35px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(0,0,0,0.55);
}

.orador-featured__photo {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 110%;
  width: auto;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
.orador-featured__photo.is-active { opacity: 1; }

.orador-featured__photo img {
  height: 100%;
  width: auto;
  display: block;
}

.orador-featured__dots {
  position: absolute;
  bottom: 28px;
  left: 32px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.orador-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--c-yellow);
  background-color: transparent;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}
.orador-dot.is-active { background-color: var(--c-yellow); }

/* Speaker grid */
.oradores-grid {
  display: grid;
  grid-template-columns: repeat(4, 276px);
  gap: 20px;
  justify-content: center;
  padding-top: 150px;
}

.orador-card {
  position: relative;
  width: 276px;
  height: 320px;
  border-radius: var(--r-card);
  overflow: hidden;
  background: #1a1a2e;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform var(--trans), box-shadow var(--trans);
}
.orador-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.26);
}

.orador-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.orador-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}

.orador-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 16px 24px;
  z-index: 2;
}

.orador-card__name {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-white);
  display: block;
}

.orador-card__role {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 4px;
}

.orador-card--placeholder {
  background: rgba(26,26,46,0.55);
  border: 1px solid rgba(255,255,255,0.08);
}
.orador-card--placeholder .orador-card__name { color: var(--c-white); }
.orador-card--placeholder .orador-card__role { color: rgba(255,255,255,0.65); }

/* CTA section */
.oradores-cta {
  background:
    url('/assets/images/bck-oradores-2.svg') center top / var(--bg-full) no-repeat;
  background-color: #06090f;
  overflow: hidden;
}

.oradores-cta__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 1440px;
  margin-inline: auto;
  min-height: 560px;
  margin-bottom: 48px;
}

.oradores-cta__left {
  width: 578px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding-left: 100px;
}

.oradores-cta__title {
  font-family: var(--font);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-black);
}

.oradores-cta__btn {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  height: 48px;
  padding-inline: 28px;
  border-radius: 8px;
  align-self: flex-start;
}

.oradores-cta__photo {
  overflow: hidden;
  align-self: stretch;
}
.oradores-cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.oradores-cta .container {
  padding-bottom: 80px;
}

/* =============================================
   SPONSORS PAGE
   ============================================= */
.sponsors-section {
  background:
    url('/assets/images/bck-sponsors.svg') center top / var(--bg-full) no-repeat,
    linear-gradient(229.2deg, #2B2930 33.81%, #000000 87.38%);
  min-height: calc(100vh - var(--header-h));
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.sponsors-heading {
  margin-bottom: 56px;
}
.sponsors-heading__title {
  font-family: var(--font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-white);
}
.sponsors-heading__sub {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

.sponsor-tier {
  margin-bottom: 40px;
}
.sponsor-tier__hd {
  margin-bottom: 14px;
}
.sponsor-tier__name {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-white);
}
.sponsor-tier__support {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.sponsor-tier__grid {
  display: grid;
}
.sponsor-tier__grid--main     { grid-template-columns: repeat(3, 1fr);  gap: 24px; }
.sponsor-tier__grid--sm       { grid-template-columns: repeat(7, 1fr);  gap: 12px; }
.sponsor-tier__grid--platinum { grid-template-columns: repeat(6, 1fr);  gap: 12px; }

.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  transition: background var(--trans), border-color var(--trans);
}
.sponsor-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
}
.sponsor-card--main {
  aspect-ratio: 2 / 1;
  border-radius: 40px;
  padding: 0;
}
.sponsor-card--sm {
  aspect-ratio: 2 / 1;
  border-radius: 12px;
  padding: 14px 18px;
}
.sponsor-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =============================================
   COUNTDOWN FLOAT
   ============================================= */
.cd-float {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 32px;
  width: 1180px;
  height: 86px;
  padding-inline: 55px;
  border-radius: var(--r-card);
  background-color: transparent;
  background-image: url('/assets/images/bck-countdown.svg');
  background-repeat: no-repeat;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.cd-float__logo-tab {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cd-float__logo-tab img {
  width: 211.86px;
  height: 42px;
  display: block;
}

.cd-float__label {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-black);
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 40px;
}

.cd-float__countdown {
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex-shrink: 0;
}
.cd-float__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.cd-float__num {
  font-family: var(--font);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-black);
  font-variant-numeric: tabular-nums;
}
.cd-float__lbl {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-black);
  margin-top: 3px;
}
.cd-float__sep {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 800;
  color: var(--c-black);
  padding-inline: 8px;
  padding-bottom: 14px;
  align-self: flex-end;
}

.cd-float__cta {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding-inline: 28px;
  border-radius: 100px;
  background: var(--c-yellow);
  color: var(--c-black);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: filter var(--trans), transform var(--trans);
}
.cd-float__cta:hover  { filter: brightness(0.92); transform: translateY(-1px); }
.cd-float__cta:active { transform: translateY(0); }

.cd-float.is-dismissed {
  opacity: 0;
  transform: translateX(-50%) translateY(calc(100% + 40px));
  pointer-events: none;
}

.cd-float__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background var(--trans);
  flex-shrink: 0;
}
.cd-float__close:hover { background: rgba(0,0,0,0.85); }

/* =============================================
   MODAL CUPÓN (tickets.html)
   ============================================= */
.cupon-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cupon-modal[hidden] { display: none; }

.cupon-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  cursor: pointer;
}

/* SVG 352×460 — secciones: top 0→285.2 (62%), notch 285.2→333.5 (10.5%), bottom 333.5→460 (27.5%) */
.cupon-card {
  position: relative;
  z-index: 1;
  width: 300px;
  aspect-ratio: 352 / 460;
  background: url('/assets/images/bck-cupon.svg') center / 100% 100% no-repeat;
  box-shadow: 0px 0px 3.45px 0px #00000033, 0px 4.6px 9.2px 1.15px #00000026;
}

.cupon-card__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 26px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0;
  filter: drop-shadow(0px 0px 3.45px #00000033) drop-shadow(0px 4.6px 9.2px #00000026);
}

.cupon-card__top {
  height: 62%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px 8px;
  text-align: center;
  text-shadow: 0px 0px 3.45px #00000033, 0px 4.6px 9.2px #00000026;
}

.cupon-card__label {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.14px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cupon-card__big {
  font-family: var(--font);
  font-size: 94px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.14px;
}

.cupon-card__off {
  font-family: var(--font);
  font-size: 47px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.14px;
}

.cupon-card__notch {
  height: 10.5%;
}
.cupon-card__notch-line { display: none; }

.cupon-card__bottom {
  height: 27.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px 8px;
}

.cupon-card__code {
  background: #fff;
  border-radius: 100px;
  padding: 14px 20px;
  font-family: var(--font);
  font-size: 31px;
  font-weight: 700;
  color: #0567EE;
  letter-spacing: 0.13px;
  line-height: 1;
  display: block;
  width: 100%;
  text-align: center;
}

.cd-float__bottom { display: contents; }

/* =============================================
   MAPA HERO
   ============================================= */
.mapa-hero {
  background:
    url('/assets/images/bck-mapa.svg') center top / cover no-repeat;
  background-color: #06090f;
  overflow: hidden;
}

.mapa-hero__container {
  max-width: 1440px;
  margin-inline: auto;
  padding: 80px 60px 60px;
}

.mapa-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.mapa-hero__title {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-white);
  margin-bottom: 12px;
}

.mapa-hero__sub {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: rgba(255,255,255,0.6);
}

.mapa-hero__map {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-bottom: 48px;
}
.mapa-hero__map img {
  width: 100%;
  height: auto;
  display: block;
}

.mapa-legend {
  background: #0567EE66;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.mapa-legend__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mapa-legend__title {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-white);
  margin-bottom: 2px;
}

.mapa-legend__point {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.mapa-legend__point-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mapa-legend__point-name {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-white);
}
.mapa-legend__point-desc {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: #b5b5b5;
}

.mapa-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.mapa-legend__dot--yellow { background: var(--c-yellow); }
.mapa-legend__dot--blue   { background: var(--c-blue); }
.mapa-legend__dot--purple { background: #a855f7; }
.mapa-legend__dot--green  { background: #22c55e; }
.mapa-legend__dot--orange { background: #f97316; }
.mapa-legend__dot--white  { background: rgba(255,255,255,0.7); }

/* =============================================
   MAPA CTA
   ============================================= */
.mapa-cta {
  background:
    url('/assets/images/bck-mapa-02.webp') center top / var(--bg-full) no-repeat,
    linear-gradient(180deg, #FFFFFF 33.23%, #FFE600 170.62%);
  overflow: hidden;
}

.mapa-cta__inner {
  max-width: 1440px;
  margin-inline: auto;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.mapa-cta__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  width: 700px;
  height: 265px;
  padding-left: 100px;
  flex-shrink: 0;
}

.mapa-cta__title {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-black);
}

.mapa-cta__desc {
  font-size: 16px;
  font-family: var(--font);
  color: #3e3e3e;
  line-height: 1.5;
  max-width: 420px;
}

.mapa-cta__btn {
  align-self: flex-start;
}

/* =============================================
   AGENDA
   ============================================= */
.agenda-section {
  background:
    url('/assets/images/bck-agenda.svg') center top / auto no-repeat,
    linear-gradient(52.83deg, #FFFAD0 23.6%, #FFE600 70.39%);
  padding-block: 80px 100px;
}

.agenda-section__container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 100px;
}

/* Hero */
.agenda-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.agenda-hero__title {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-black);
}

.agenda-hero__event {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--c-black);
  margin-top: 6px;
  margin-bottom: 16px;
}

.agenda-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.agenda-vivo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-blue);
  border-radius: 20px;
  padding: 6px 14px 6px 10px;
  flex-shrink: 0;
}

.agenda-vivo__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-yellow);
  flex-shrink: 0;
  animation: vivo-pulse 1.8s ease-in-out infinite;
}

@keyframes vivo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.agenda-vivo__label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-white);
}

.agenda-vivo__time {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-white);
}

.agenda-hero__date {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-black);
}

.agenda-hero__stats {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.agenda-hero__stat {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  color: var(--c-black);
}

.agenda-hero__sep {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-black);
}

/* Featured */
.agenda-featured {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  max-width: 100%;
  min-height: 157px;
  background: linear-gradient(18.41deg, rgba(237,251,255,0.5) 25.63%, rgba(110,171,255,0.8) 82.95%);
  backdrop-filter: blur(13px);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: 6px 6px 12px 0px #00000026;
  margin-bottom: 48px;
}

.agenda-featured__time-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 15px;
  flex-shrink: 0;
  min-width: 140px;
  border-radius: 16px;
}

.agenda-featured__live-tag {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0B1340;
  text-transform: uppercase;
  opacity: 0.6;
}

.agenda-featured__time {
  font-family: var(--font);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: #0B1340;
}

.agenda-featured__tz {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #0B1340;
  opacity: 0.5;
}

.agenda-featured__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 14px 16px;
  gap: 6px;
  border-radius: 20.51px;
  border: 2px solid var(--c-blue);
  background: linear-gradient(76.05deg, rgba(255, 253, 230, 0.9) 3.27%, rgba(255, 230, 0, 0.9) 76.64%);
  box-shadow:
    0px 0.64px 1.92px 0px rgba(0, 0, 0, 0.30),
    0px 2.56px 5.13px 1.92px rgba(0, 0, 0, 0.15),
    0px 1.28px 2.56px 0px rgba(0, 0, 0, 0.15) inset;
  backdrop-filter: blur(10.26px);
}

.agenda-featured__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.agenda-featured__escenario {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-black);
}

.agenda-featured__escenario-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.agenda-featured__escenario-dot--blue   { background: var(--c-blue); }
.agenda-featured__escenario-dot--yellow { background: #f97316; }

.agenda-featured__status {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.agenda-featured__status--live,
.agenda-featured__status--next {
  background: var(--c-blue);
  color: var(--c-yellow);
  position: absolute;
  top: 0;
  right: 16px;
  transform: translateY(-50%);
}

.agenda-featured__title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-black);
  line-height: 1.2;
  flex: 1;
}

/* Speaker */
.agenda-speaker {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  flex-shrink: 0;
}

.agenda-speaker--sm .agenda-speaker__name { font-size: 13px; }

.agenda-speaker__name {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-black);
  white-space: nowrap;
}

.agenda-avatar-group {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
}

.agenda-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 300;
  color: var(--c-white);
  letter-spacing: 0.02em;
  border: 2px solid var(--c-white);
}

.agenda-avatar-group .agenda-avatar + .agenda-avatar { margin-left: -8px; }

.agenda-avatar--yellow { background: #d4a800; }
.agenda-avatar--blue   { background: var(--c-blue); }
.agenda-avatar--purple { background: #a855f7; }
.agenda-avatar--green  { background: #22c55e; }

/* Schedule */
.agenda-table-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agenda-table-header__pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--c-white);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text);
  white-space: nowrap;
}

.agenda-table-header__pill--wide {
  flex: 1;
  justify-content: center;
}

.agenda-table-header__spacer {
  width: 40px;
  flex-shrink: 0;
}

.agenda-schedule {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
  border-radius: var(--r-card);
  padding: 28px;
  background: linear-gradient(18.41deg, rgba(237, 251, 255, 0.5) 25.63%, rgba(110, 171, 255, 0.8) 82.95%);
  backdrop-filter: blur(13px);
  box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.15);
}

.agenda-block__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  margin-top: 15px;
}

.agenda-block__hour {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 700;
  color: var(--c-black);
  line-height: 1;
}

.agenda-block__count {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  white-space: nowrap;
}

.agenda-block__line {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.2);
}

.agenda-block__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Row */
.agenda-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  padding: 10px;
}

.agenda-escenario {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  background: var(--c-white);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--c-text);
  min-width: 160px;
}
.agenda-escenario--principal { border-left: 3px solid #f97316; }
.agenda-escenario--sala      { border-left: 3px solid var(--c-blue); }
.agenda-escenario--taller    { border-left: 3px solid #a855f7; }
.agenda-escenario--auditorio { border-left: 3px solid #22c55e; }

.agenda-row__time {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-black);
  min-width: 52px;
  flex-shrink: 0;
}

.agenda-row__title {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-black);
  flex: 1;
  line-height: 1.3;
}

.agenda-row__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  color: var(--c-text);
  text-decoration: none;
  transition: background 0.15s;
}
.agenda-row__btn:hover { background: #f0f4ff; color: var(--c-blue); }

/* Loading state */
.agenda-loading {
  padding: 48px 24px;
  text-align: center;
  font-family: var(--font);
  font-size: 15px;
  color: rgba(0,0,0,0.35);
  letter-spacing: 0.05em;
}

/* CTA */
.agenda-cta {
  padding: 40px 48px;
}

.agenda-cta__text {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-black);
  line-height: 1;
  letter-spacing: var(--ls-base);
  margin-bottom: 20px;
}

.agenda-cta__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.agenda-cta__list li {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 400;
  color: var(--c-black);
  line-height: 1;
  letter-spacing: var(--ls-base);
  padding-left: 32px;
  position: relative;
}

.agenda-cta__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-black);
  font-weight: 700;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  background:
    url('/assets/images/bck-faq.svg') right top / auto no-repeat,
    #ffffff;
  background-attachment: fixed, scroll;
  padding-block: 80px 100px;
}

.faq-section__container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 100px;
}

.faq-section__heading {
  margin-bottom: 48px;
}

.faq-section__title {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-black);
}

.faq-section__sub {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 500;
  color: #3e3e3e;
  margin-top: 10px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--c-yellow);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 3px 0px #00000033, 0px 4px 8px 1px #00000026;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-item__trigger:hover { background: rgba(0,0,0,0.04); }

.faq-item__question {
  font-family: var(--font);
  font-size: 19px;
  font-weight: 400;
  color: var(--c-black);
  line-height: 1.3;
}

.faq-item__icon {
  flex-shrink: 0;
  color: var(--c-black);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-item__body { max-height: 600px; }

.faq-item__answer {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  color: var(--c-black);
  line-height: 1.65;
  padding: 0 28px 24px;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .section-otras::after {
    background-image: url('../images/bck-home-otras-ediciones-m.svg');
    background-size: cover;
    background-position: top center;
  }
  .otras__top { grid-template-columns: 1fr; min-height: 480px; }
  .otras__left {
    padding: 40px 24px;
    justify-content: center;
    gap: 24px;
  }
  .otras__left-top { gap: 12px; }
  .otras__xp-logo { margin-top: 0; }
  .otras__venue { display: none; }
  .section-otras > .container { padding-inline: 0; overflow: visible; margin-top: 450px; }
  .otras__cards {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-inline: 20px;
    padding-bottom: 4px;
  }
  .otras__cards::-webkit-scrollbar { display: none; }
  .otras__cards .video-card {
    flex-shrink: 0;
    width: 220px;
    height: 260px;
    scroll-snap-align: start;
  }
  .otras__solapa { padding-inline: 20px; }
  .otras__dots,
  .oradores-grid__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    margin-top: 14px;
    width: fit-content;
    margin-inline: auto;
    background: rgba(0,0,0,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 100px;
  }

  .sponsor-tier__grid--sm,
  .sponsor-tier__grid--platinum { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .header__nav                { display: none; }
  .header__actions .btn       { display: none; }
  .header__hamburger          { display: flex; }
  .header__logo-img--desktop  { display: none; }
  .header__logo-img--mobile   { display: block; }
  .header__inner              { padding-inline: 20px; }

  .container { padding-inline: 20px; }

  .hero { padding-top: 400px; min-height: 560px; }
  .hero::after { background-image: url('../images/bck-home-m.svg'); background-position: top center; }
  .hero__container { padding-inline: 24px; }
  .hero__content { padding-block: 52px; max-width: 100%; gap: 16px; }
  .hero__media { display: block; }
  .hero__logo-brand { font-size: 1.4rem; }
  .hero__logo-xp    { font-size: 3.6rem; }
  .hero__logo-ed    { font-size: 1rem; }

  .countdown-bar { height: 60px; }
  .countdown-bar__label { display: none; }
  .countdown__num { font-size: 1.35rem; }

  /* cd-float mobile */
  .cd-float {
    width: 334px;
    max-width: calc(100vw - 24px);
    height: auto;
    padding: 10px 24px 12px;
    gap: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    background-image: url('/assets/images/bck-countdown-m.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    bottom: 16px;
  }
  .cd-float__logo-tab { display: none; }
  .cd-float__label {
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding-left: 0;
    margin-bottom: 16px;
  }
  .cd-float__bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .cd-float__countdown {
    flex: 1;
    align-items: flex-end;
  }
  .cd-float__unit { min-width: auto; }
  .cd-float__num  { font-size: 24px; }
  .cd-float__lbl  { font-size: 6px; }
  .cd-float__sep  { font-size: 20px; padding-inline: 2px; padding-bottom: 6px; }
  .cd-float__cta  { flex-shrink: 0; margin-left: auto; height: 34px; padding-inline: 11px; font-size: 11px; }

  .section-xp {
    padding-block: 40px;
    background-image: url('/assets/images/bck-home-exp-m.svg'), linear-gradient(52.83deg, #DDF4FA 23.6%, #0567EE 70.39%);
    background-size: cover, cover;
    background-position: top center, center;
  }
  .section-xp__layout { grid-template-columns: 1fr; gap: 32px; }
  .section-xp__stats-grid { grid-template-columns: 1fr 1fr; }
  .stat--card .stat__num { font-size: 60px; }
  .stat--card .stat__lbl { font-size: 20px; }
  .section-xp__title { font-size: 36px; text-align: center; }
  .section-xp__benefits { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }

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

  .tickets-section {
    background-image: url('/assets/images/bck-tickets-m.svg');
    background-size: cover;
  }
  .tickets-cards { grid-template-columns: 1fr; }

  .sponsors-section { background-image: url('/assets/images/bck-sponsors-m.svg'); background-size: cover; background-position: top center; }
  .sponsors-heading__title { font-size: 40px; }
  .sponsors-heading__sub   { font-size: 24px; }
  .sponsor-tier__grid--main { grid-template-columns: 1fr; }
  .sponsor-tier__grid--sm,
  .sponsor-tier__grid--platinum { grid-template-columns: repeat(3, 1fr); }

  .oradores-hero {
    background-image: url('/assets/images/bck-oradores-m.svg');
    background-size: cover;
    background-position: top center;
  }
  .oradores-hero__container { padding: 32px 24px 48px; }
  .oradores-hero__top { grid-template-columns: 1fr; gap: 24px; }
  .oradores-hero__left  { grid-column: auto; }
  .oradores-hero__right { grid-column: auto; margin-top: 50px; }
  .oradores-hero__logo img { margin-bottom: 16px; }
  .oradores-hero__title { font-size: 36px; line-height: 1; }
  .orador-featured { height: 380px; }
  .orador-featured__info {
    bottom: 116px;
    left: 20px;
    right: 170px;
    text-align: left;
  }
  .orador-featured__name { font-size: 32px; }
  .orador-featured__role { font-size: 16px; }
  .orador-featured__dots { bottom: 20px; left: 20px; }
  .orador-featured__photo { height: 100%; }
  .oradores-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-inline: 0;
    margin-inline: -24px;
    padding-bottom: 4px;
    justify-content: unset;
    padding-top: 40px;
  }
  .oradores-grid::-webkit-scrollbar { display: none; }
  .oradores-grid .orador-card {
    flex-shrink: 0;
    width: calc(50vw - 6px);
    height: 240px;
    scroll-snap-align: start;
  }
  .oradores-grid__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 14px;
  }
  .oradores-cta {
    background:
      url('/assets/images/bck-oradores-2-m.svg') top center / cover no-repeat,
      url('/assets/images/img-bck-map-2-ok.jpg') bottom center / cover no-repeat;
  }
  .oradores-cta__top { grid-template-columns: 1fr; min-height: auto; margin-bottom: 0; }
  .oradores-cta__left { width: 100%; padding: 48px 24px 32px; }
  .oradores-cta__title { font-size: 28px; }
  .oradores-cta__photo { display: none; }
  .oradores-cta .container { margin-top: 520px; padding-inline: 0; padding-bottom: 40px; overflow: visible; }
  .oradores-cta .otras__cards {
    padding-inline: 0;
    gap: 12px;
  }
  .oradores-cta .otras__cards .video-card {
    width: calc(50vw - 6px);
    height: 260px;
    scroll-snap-align: start;
  }

  .footer__inner              { flex-direction: column; gap: 24px; }
  .footer__links              { gap: 4px 0; }
  .footer__links a            { padding-inline: 12px; border-right: none; font-size: 14px; }
  .footer__links a:first-child { padding-left: 0; }
  .footer__copy               { margin-top: 8px; line-height: 1.5; }
  .footer__right              { align-items: flex-start; }
  .footer__logo-img--desktop  { display: none; }
  .footer__logo-img--mobile   { display: block; width: 260px; height: auto; }

  .mapa-hero { background-image: url('/assets/images/bck-mapa-m.svg'); background-size: cover; background-position: top center; }
  .mapa-cta { background-image: url('/assets/images/bck-mapa-02-m.webp'); background-size: cover; background-position: top center; min-height: 1100px; }
  .mapa-hero__container { padding: 40px 24px 32px; }
  .mapa-hero__top { flex-direction: column; gap: 12px; margin-bottom: 24px; }
  .mapa-hero .hero__badge { display: none; }
  .mapa-hero__title { font-size: 32px; }
  .mapa-hero__sub { font-size: 18px; }
  .mapa-hero__map { max-width: 100%; padding-bottom: 24px; }
  .mapa-legend {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 16px;
    gap: 16px;
  }
  .mapa-legend__title { font-size: 13px; }
  .mapa-legend__point { gap: 6px; }
  .mapa-legend__point-name { font-size: 11px; }
  .mapa-legend__point-desc { font-size: 10px; }
  .mapa-legend__dot { width: 8px; height: 8px; flex-shrink: 0; }
  .mapa-cta__inner { min-height: auto; padding-top: 100px; padding-bottom: 48px; padding-inline: 24px; padding-left: 71px; }
  .mapa-cta__left { width: 100%; height: auto; padding: 0; gap: 20px; }
  .mapa-cta__title { font-size: 28px; }
  .mapa-cta__desc { max-width: 100%; font-size: 14px; }

  .agenda-section {
    background:
      url('/assets/images/bck-agenda-m.svg') center top / cover no-repeat,
      linear-gradient(52.83deg, #FFFAD0 23.6%, #FFE600 70.39%);
    padding-block: 48px 64px;
  }
  .agenda-section__container { padding-inline: 24px; }

  /* Hero */
  .agenda-hero { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
  .agenda-hero__left { width: 100%; }
  .agenda-hero__title { font-size: 32px; }
  .agenda-hero__event { font-size: 20px; margin-bottom: 10px; }
  .agenda-hero__meta { flex-wrap: wrap; gap: 8px; margin-top: 10px; }
  .agenda-hero__date { font-size: 13px; }
  .agenda-hero__stats { padding-bottom: 0; }
  .agenda-hero__stat { font-size: 15px; }
  .agenda-hero__sep { font-size: 15px; }

  /* Featured */
  .agenda-featured { flex-direction: column; gap: 12px; padding: 16px; margin-bottom: 24px; }
  .agenda-featured__time-col { flex-direction: row; align-items: center; gap: 12px; padding: 8px 12px; min-width: unset; border-radius: 12px; background: rgba(255,255,255,0.3); }
  .agenda-featured__live-tag { font-size: 10px; }
  .agenda-featured__time { font-size: 36px; }
  .agenda-featured__tz { font-size: 12px; }
  .agenda-featured__title { font-size: 15px; }

  /* Schedule */
  .agenda-table-header { display: none; }
  .agenda-schedule { padding: 16px; gap: 16px; margin-bottom: 40px; }
  .agenda-block__hour { font-size: 22px; }
  .agenda-block__count { font-size: 10px; }

  /* Row: escenario full-width on top, time+title+btn in middle, speaker at bottom */
  .agenda-row { flex-wrap: wrap; gap: 6px; padding: 10px 12px; align-items: center; border-radius: 20px; }
  .agenda-escenario { width: 100%; min-width: unset; order: 1; font-size: 11px; padding: 5px 12px; }
  .agenda-row__time { order: 2; min-width: auto; font-size: 13px; font-weight: 700; }
  .agenda-row__title { order: 2; flex: 1; font-size: 13px; }
  .agenda-row__btn { order: 2; margin-left: auto; flex-shrink: 0; }
  .agenda-speaker { order: 3; width: 100%; min-width: unset; }
  .agenda-speaker__name { font-size: 13px; white-space: normal; }

  /* CTA */
  .agenda-cta { padding: 24px 0; }
  .agenda-cta__text { font-size: 17px; line-height: 1.3; }
  .agenda-cta__list li { font-size: 15px; padding-left: 24px; }

  .faq-section { padding-block: 48px 64px; background-image: url('/assets/images/bck-faq-m.svg'); background-size: cover; background-position: top center; background-attachment: scroll; }
  .faq-section__container { padding-inline: 24px; }
  .faq-section__title { font-size: 28px; }
  .faq-section__sub { font-size: 20px; }
  .faq-section__heading { margin-bottom: 32px; }
  .faq-item__trigger { padding: 18px 20px; }
  .faq-item__question { font-size: 15px; }
  .faq-item__answer { font-size: 14px; padding: 0 20px 20px; }
}

@media (max-width: 480px) {
  .hero__logo-xp { font-size: 2.8rem; }
  .otras__cards  { grid-template-columns: 1fr 1fr; }
  .sponsor-tier__grid--sm,
  .sponsor-tier__grid--platinum { grid-template-columns: repeat(2, 1fr); }
}
