/* =============================================
   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 === */
:root {
  --c-yellow:   #ffe600;
  --c-blue:     #0567ee;
  --c-dark:     #1a1a1a;
  --c-white:    #ffffff;
  --c-black:    #000000;
  --c-grey:     #666666;
  --font: 'proxima-nova', 'Helvetica Neue', Arial, sans-serif;
  --container:  1180px;
  --header-h:   72px;
  --trans: 0.2s cubic-bezier(0.16,1,0.3,1);
}

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); }
.btn--yellow { background: var(--c-yellow); color: var(--c-black); }
.btn--black  { background: var(--c-black); color: var(--c-white); }

/* =============================================
   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;
}

/* Logo — izquierda, tamaño natural */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo-img {
  height: 34px;
  width: auto;
  display: block;
}

/* Nav — empujado a la derecha con margin-left: auto */
.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: 0.1px;
  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); }

/* Actions — CTA + hamburger, pegados al nav */
.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: 0.1px;
  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: #0567EE;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-black);
  transition: transform var(--trans), opacity var(--trans);
  transform-origin: center;
}
.header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--c-yellow);
  z-index: 290;
  padding: 28px 24px;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-black);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.mobile-menu .btn {
  margin-top: 20px;
  width: 100%;
}

/* =============================================
   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-image: url('../images/hero-bg-01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
}

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

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

/* 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-family: var(--font);
  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-family: var(--font);
  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-family: var(--font);
  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-family: var(--font);
  font-size: 31.29px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.07px;
  color: var(--c-black);
  text-transform: uppercase;
  display: block;
}

/* Logo SVG */
.hero__logo img {
  height: 140px;
  width: auto;
}

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

/* =============================================
   SECTION EXPERIENCE
   ============================================= */
.section-xp {
  background-color: #ddf4fa;
  background-image: url('../images/back-experience.svg');
  background-size: 1920px auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding-block: 60px;
  min-height: 626px;
  position: relative;
  overflow: hidden;
}

.section-xp .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Section title */
.section-xp__title {
  font-family: var(--font);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  text-align: center;
}
.section-xp__title em {
  font-style: normal;
  color: var(--c-yellow);
}
.section-xp__title span { color: var(--c-white); }

/* Stats grid */
.stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
}
.stats__row {
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 52px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; }
.stat__num {
  font-family: var(--font);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06px;
  text-align: center;
  color: #0567ee;
}
.stat__lbl {
  font-family: var(--font);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06px;
  color: #0567ee;
}

/* Description columns */
.section-xp__desc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.section-xp__desc p {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1px;
  color: #000000;
}
.section-xp__desc strong {
  color: #000000;
  font-weight: 700;
}
.section-xp__desc .highlight {
  color: #0668ee;
}

/* White wave at bottom */
.section-xp__wave {
  display: none;
}

/* =============================================
   SECTION VIDEO / OTRAS EDICIONES
   ============================================= */
.section-otras {
  background-color: #000;
  background-image: url('../images/bck-home-otras-ediciones.svg');
  background-size: 1920px auto;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* Top: contenido centrado a 1440px, imagen full-bleed */
.otras__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 1440px;
  margin-inline: auto;
  margin-bottom: 48px;
  min-height: 710px;
}

/* Left */
.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: 0.1px;
  color: #000000;
  margin-top: 10px;
}
.otras__xp-logo {
  width: 282.44px;
  height: 80.11px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left;
  margin-top: 120px;
}

/* Right venue photo — flush top, sin padding */
.otras__venue {
  overflow: hidden;
  align-self: stretch;
}
.otras__venue img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

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

.video-card {
  width: 276px;
  height: 320px;
  border-radius: 32px;
  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: 0.1px;
  color: #ffffff;
}

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

/* =============================================
   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: 0.1px;
  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: 0.1px;
  color: #888;
}
.footer__right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.footer__logo-img {
  width: 211.53px;
  height: 59.27px;
  display: block;
}

/* =============================================
   TICKETS PAGE
   ============================================= */
.tickets-section {
  background-image: url('/assets/images/bck-tickets.svg');
  background-size: 1920px auto;
  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;
}


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

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

/* Individual card */
.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;
}

/* Card header (yellow) */
.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: 0.1px;
  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: 0.1px;
  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: 0.1px;
  color: var(--c-black);
}
.ticket-card__currency {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1px;
  color: var(--c-black);
}

/* Card body */
.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: 0.1px;
  text-transform: capitalize;
  color: var(--c-black);
}
.ticket-card__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

/* CTA */
.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: 0.1px;
  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); }

/* =============================================
   ACTIVE NAV STATE
   ============================================= */
.header__nav a[aria-current="page"] {
  font-weight: 700;
  background: rgba(0,0,0,0.08);
}

/* =============================================
   SPONSORS PAGE
   ============================================= */
.sponsors-section {
  background:
    url('/assets/images/bck-sponsors.svg') center top / 1920px auto 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: 0.1px;
  color: var(--c-white);
}
.sponsors-heading__sub {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1px;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

/* Tier */
.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: 0.1px;
  color: var(--c-white);
}
.sponsor-tier__support {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* Grids */
.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;
}

/* Cards */
.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: 20px;
  padding: 32px 40px;
}
.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;

  display: flex;
  align-items: center;
  gap: 32px;

  width: 1180px;
  height: 86px;

  padding-inline: 55px;
  border-radius: 32px;

  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: #000000;
  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: #000000;
  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: #000000;
  margin-top: 3px;
}
.cd-float__sep {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 800;
  color: #000000;
  padding-inline: 8px;
  padding-bottom: 14px;
  align-self: flex-end;
}

.cd-float__cta {
  margin-left: auto;
  margin-right: 0;
  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); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .otras__top { grid-template-columns: 1fr; }
  .otras__left { padding: 48px 24px; }
  .otras__venue { display: none; }
  .otras__cards { grid-template-columns: repeat(2, 1fr); }

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

  .container { padding-inline: 20px; }

  .hero { min-height: 560px; }
  .hero__deco { width: 100%; opacity: 0.2; }
  .hero__content { padding-block: 52px; }
  .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; }

  .section-xp { padding-block: 40px; }
  .section-xp .container { gap: 24px; }

  .stats__row { flex-wrap: wrap; }
  .stat { padding: 8px 16px; flex: 1 1 45%; }
  .stat:first-child { padding-left: 0; }
  .stat:last-child  { padding-right: 0; }
  .stat__num  { font-size: 2.5rem; }
  .stat__lbl  { font-size: 1.75rem; }

  .section-xp__title { font-size: 28px; }
  .section-xp__desc { grid-template-columns: 1fr; gap: 16px; }

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

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

  .footer__inner { flex-direction: column-reverse; gap: 28px; }
  .footer__right { align-items: flex-start; }
  .footer__links a { padding-inline: 10px; }
}

@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); }
}
