﻿@font-face {
  font-family: "Broadway";
  src: url("BROADW.TTF") format("truetype");
  font-display: swap;
}

:root {
  --crimson: #c0122a;
  --crimson-glow: rgba(192, 18, 42, 0.6);
  --ember: #e8501a;
  --gold: #d4a843;
  --gold-soft: rgba(212, 168, 67, 0.15);
  --deep: #07030a;
  --mid: #120810;
  --cream: #f5edd8;
  --fog: rgba(255, 255, 255, 0.05);
  --border: rgba(212, 168, 67, 0.22);
  --border-hot: rgba(192, 18, 42, 0.4);
  --radius-sm: 1px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}

body {
  background: var(--deep);
  color: var(--cream);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ════════════════════════════════════════════════════════
   INVITACIÓN QWILR
════════════════════════════════════════════════════════ */
#invitacion-wrapper {
  background: #fff;
  color: #1a1a1a;
  font-family: "DM Sans", sans-serif;
  position: relative;
}

.inv-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inv-header {
  min-height: 100vh;
}

.inv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.inv-header .inv-overlay {
  background: rgba(0, 0, 0, 0.72);
}

.inv-inner {
  max-width: 720px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* --- VIDEO BG --- */
.inv-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: blur(4px);
  transform: scale(1.05);
}

/* --- SECCIÓN 1: ENCABEZADO --- */
.inv-header {
  text-align: center;
}

.inv-header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.inv-logo {
  max-width: min(520px, 80vw);
  width: 100%;
  height: auto;
  display: block;
}

.inv-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8a0a8;
  margin-bottom: 32px;
}

.inv-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}

.inv-title span {
  color: #ff4d66;
  display: block;
}

.inv-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* --- SECCIÓN 2: CARTA --- */
.inv-saludo {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.inv-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

.inv-body strong {
  color: #fff;
  font-weight: 600;
}

.inv-firma {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.inv-firma-nombre {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.inv-firma-cargo {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff4d66;
  margin-top: 4px;
}

/* --- SECCIÓN 3: PRÓXIMOS PASOS --- */
.inv-pasos-titulo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}

.inv-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 40px;
  background: #c0122a;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.inv-btn:hover {
  background: #9a0e22;
}

/* --- SCROLL HINT --- */
.inv-scroll-hint {
  text-align: center;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.inv-arrow {
  font-size: 1.4rem;
  margin-top: 8px;
  animation: invBounce 1.4s ease-in-out infinite;
  color: #c0122a;
}

@keyframes invBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 600px) {
  .inv-section {
    padding: 60px 20px;
  }
  .inv-body {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .inv-firma-nombre {
    font-size: 1.1rem;
  }
  .inv-pasos-titulo {
    margin-bottom: 20px;
  }
  .inv-scroll-hint {
    margin-top: 28px;
  }
}

/* ════════════════════════════════════════════════════════ */
/* ═══ GRAIN OVERLAY ═══ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ═══ CUSTOM CURSOR ═══ */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.15s,
    height 0.15s,
    background 0.15s;
  mix-blend-mode: difference;
}
.cursor.hover {
  width: 0;
  height: 0;
  background: transparent;
}
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(212, 168, 67, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s cubic-bezier(0.23, 1, 0.32, 1),
    height 0.25s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.2s;
}
.cursor-ring.hover {
  width: 50px;
  height: 50px;
  border-color: var(--crimson);
}

/* ═══ DOT NAVIGATION ═══ */
.slide-counter {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.25);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
  height: 28px;
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.5);
}
.dot:hover {
  background: rgba(212, 168, 67, 0.6);
}

/* ═══ SECTIONS ═══ */
section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  contain: layout style;
}

.bg-img {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}

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

.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 88px;
}

/* ═══ SECTION LABEL ═══ */
.section-label {
  position: absolute;
  top: 50%;
  right: 72px;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: rgba(212, 168, 67, 0.35);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  z-index: 3;
  user-select: none;
}

/* ═══ EYEBROW ═══ */
.eyebrow {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══ HEADINGS ═══ */
h2 {
  font-family: "Broadway", "Bebas Neue", sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #ffffff 0%, #e8c8c8 60%, #d4a0a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}
h2 .outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(245, 237, 216, 0.4);
  display: block;
  background: none;
}

.body-text {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(245, 237, 216, 0.92);
  max-width: 520px;
}
.body-text p + p {
  margin-top: 18px;
}

/* ═══ GOLD DIVIDER ═══ */
.gold-divider {
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
  position: relative;
}
.gold-divider::after {
  content: "◆";
  position: absolute;
  left: 58px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7px;
  color: rgba(212, 168, 67, 0.5);
  letter-spacing: 0;
}

/* ═══ TWO COL ═══ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.two-col-reverse {
  direction: rtl;
}
.two-col-reverse > * {
  direction: ltr;
}

/* ═══ GLASS CARD ═══ */
.glass-card {
  background: rgba(7, 3, 10, 0.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(24px);
  padding: 44px;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

/* ═══ OVERLAYS ═══ */
.overlay-dark-left {
  background: linear-gradient(
    100deg,
    rgba(7, 3, 10, 0.7) 0%,
    rgba(7, 3, 10, 0.55) 35%,
    rgba(7, 3, 10, 0.2) 65%,
    transparent 100%
  );
}
.overlay-dark-right {
  background: linear-gradient(
    260deg,
    rgba(7, 3, 10, 0.7) 0%,
    rgba(7, 3, 10, 0.55) 35%,
    rgba(7, 3, 10, 0.2) 65%,
    transparent 100%
  );
}
.overlay-dark-full {
  background: linear-gradient(
    to bottom,
    rgba(7, 3, 10, 0.1) 0%,
    rgba(7, 3, 10, 0.35) 50%,
    rgba(7, 3, 10, 0.75) 100%
  );
}
.overlay-center {
  background: radial-gradient(
    ellipse at center,
    rgba(7, 3, 10, 0.1) 0%,
    rgba(7, 3, 10, 0.55) 100%
  );
}
.overlay-crimson-tint {
  background: linear-gradient(
    135deg,
    rgba(192, 18, 42, 0.12) 0%,
    transparent 60%
  );
}

/* ═══ ACTIVITIES GRID ═══ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.activity-item {
  background: rgba(7, 3, 10, 0.85);
  padding: 36px 28px 32px;
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
.activity-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(192, 18, 42, 0.18) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.activity-item:hover {
  background: rgba(12, 4, 8, 0.85);
}
.activity-item:hover::before {
  opacity: 1;
}
.activity-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.activity-item:hover::after {
  width: 100%;
}
.activity-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  display: block;
  color: var(--gold);
  opacity: 0.65;
  transition:
    opacity 0.3s,
    transform 0.3s,
    color 0.3s;
}
.activity-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.activity-item:hover .activity-icon {
  opacity: 1;
  color: var(--gold);
  transform: scale(1.08);
}
.activity-name {
  font-family: "Broadway", "Bebas Neue", sans-serif;
  font-size: 19px;
  letter-spacing: 1.5px;
  color: white;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.activity-item:hover .activity-name {
  color: var(--cream);
}
.activity-desc {
  font-size: 16px;
  color: rgba(245, 237, 216, 0.6);
  line-height: 1.7;
}

/* ═══ HIGHLIGHTS GRID (LO MÁS DESTACADO) ═══ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.highlight-card {
  background: rgba(7, 3, 10, 0.85);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.highlight-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.highlight-card:hover {
  background: rgba(12, 4, 8, 0.85);
}
.highlight-card:hover::after {
  width: 100%;
}
.highlight-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  display: block;
  color: var(--gold);
  opacity: 0.65;
  transition:
    opacity 0.3s,
    transform 0.3s,
    color 0.3s;
}
.highlight-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.highlight-card:hover .highlight-icon {
  opacity: 1;
  color: var(--gold);
  transform: scale(1.08);
}
.highlight-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 237, 216, 0.8);
}
.highlight-card p strong {
  color: var(--gold);
  font-weight: 500;
}

/* ═══ CTA ═══ */
#cta {
  min-height: 70vh;
  text-align: center;
  justify-content: center;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 60%,
    rgba(192, 18, 42, 0.22) 0%,
    rgba(7, 3, 10, 0) 65%
  );
  z-index: 1;
  animation: ctaPulse 5s ease-in-out infinite alternate;
}
@keyframes ctaPulse {
  from {
    opacity: 0.6;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}
#cta .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 70vh;
}
.cta-title {
  font-family: "Broadway", "Bebas Neue", sans-serif;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 1;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #e8c8c8 60%, #d4a0a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
}
.cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 20px 60px;
  background: var(--crimson);
  color: white;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 5px;
  border: 1px solid transparent;
  transition: all 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.cta-btn:hover::before {
  transform: translateX(100%);
}
.cta-btn:hover {
  background: transparent;
  border-color: var(--crimson);
  color: var(--cream);
  box-shadow: 0 0 30px rgba(192, 18, 42, 0.3);
}

/* ═══ POR QUÉ BILLBOARD — REDESIGN ═══ */
.porque-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding-top: 110px;
  padding-bottom: 90px;
  text-align: center;
}

.porque-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.porque-eyebrow {
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 7px;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}
.porque-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.6;
}
.porque-eyebrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.6;
}

.billboard-hero-logo {
  width: min(580px, 82vw);
  height: auto;
  object-fit: contain;
}

.porque-title {
  font-family: "Broadway", "Bebas Neue", sans-serif;
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: 4px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #e8c8c8 60%, #d4a0a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.porque-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 237, 216, 0.35);
}

/* Editorial statement block */
.porque-editorial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 680px;
  text-align: center;
}
.porque-ed-pre {
  font-family: "Playfair Display", serif;
  font-size: clamp(19px, 2.3vw, 27px);
  font-style: italic;
  color: rgba(245, 237, 216, 0.55);
  letter-spacing: 1px;
}
.porque-ed-city {
  font-family: "Broadway", "Bebas Neue", sans-serif;
  font-size: clamp(60px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: 8px;
  background: linear-gradient(
    160deg,
    #ffffff 0%,
    var(--gold) 50%,
    var(--crimson) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 4px 0;
}
.porque-ed-connector {
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 2vw, 23px);
  font-style: italic;
  color: rgba(245, 237, 216, 0.5);
}
.porque-ed-highlight {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(26px, 3.6vw, 46px);
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.porque-ed-body {
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.85;
  color: rgba(245, 237, 216, 0.65);
  font-style: italic;
  max-width: 520px;
}

.porque-divider {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 860px;
}
.pd-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: brightness(0.8) saturate(0.6);
}

.porque-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 100%;
  background: var(--border);
  border: 1px solid var(--border);
}

.pstat-card {
  background: rgba(7, 3, 10, 0.82);
  padding: 48px 28px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.pstat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--crimson),
    var(--gold),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.pstat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(192, 18, 42, 0.08) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.pstat-card:hover {
  background: rgba(14, 6, 12, 0.92);
}
.pstat-card:hover::before {
  opacity: 1;
}
.pstat-card:hover::after {
  opacity: 1;
}

.pstat-num {
  font-family: "Broadway", "Bebas Neue", sans-serif;
  font-size: clamp(56px, 5.5vw, 92px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.pstat-sup {
  font-size: 0.48em;
  color: var(--crimson);
  vertical-align: super;
  font-weight: 700;
  letter-spacing: 0;
}
.pstat-hash {
  font-size: 0.7em;
  color: var(--crimson);
  font-weight: 700;
}

.pstat-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 17px;
  letter-spacing: 2.5px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.pstat-desc {
  font-size: 16px;
  color: rgba(245, 237, 216, 0.52);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.ecosistema {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.eco-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: rgba(212, 168, 67, 0.4);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eco-label::before,
.eco-label::after {
  content: "◆";
  font-size: 5px;
  opacity: 0.45;
}

.eco-strip {
  width: calc(100% + 176px);
  margin: 0 -88px;
  overflow: hidden;
  background: rgba(7, 3, 10, 0.55);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  padding: 22px 0;
  position: relative;
}
.eco-strip::before,
.eco-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.eco-strip::before {
  left: 0;
  background: linear-gradient(to right, rgba(7, 3, 10, 0.95), transparent);
}
.eco-strip::after {
  right: 0;
  background: linear-gradient(to left, rgba(7, 3, 10, 0.95), transparent);
}

.eco-track {
  display: flex;
  gap: 52px;
  align-items: center;
  width: max-content;
  animation: scrollLogos 32s linear infinite;
  padding: 0 26px;
}
.eco-track:hover {
  animation-play-state: paused;
}

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

.eco-logo {
  flex-shrink: 0;
  width: 96px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* ═══ QUÉ ES — REDESIGN ═══ */
#que-es {
  min-height: auto;
}

.que-es-corona {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 75% 50% at 50% 20%,
      rgba(192, 18, 42, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 30% at 75% 75%,
      rgba(212, 168, 67, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.que-es-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 0;
}

/* Eyebrow */
.qe-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 11px;
  letter-spacing: 7px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0.7;
}
.qe-eyebrow-logo {
  height: 18px;
  width: auto;
  display: block;
  opacity: 0.85;
}
.qe-dot {
  font-size: 6px;
  opacity: 0.4;
}

/* Main title block */
.qe-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 52px;
}

.qeh-billboard-logo {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  display: block;
  margin-bottom: 8px;
  opacity: 0.88;
}
.qeh-pre {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(12px, 1.3vw, 18px);
  letter-spacing: 13px;
  color: rgba(245, 237, 216, 0.3);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.qeh-salsa {
  font-family: "Broadway", "Bebas Neue", sans-serif;
  font-size: clamp(96px, 16vw, 230px);
  line-height: 0.84;
  color: white;
  letter-spacing: -3px;
  text-shadow:
    0 0 50px rgba(192, 18, 42, 0.65),
    0 0 110px rgba(192, 18, 42, 0.28),
    0 0 200px rgba(192, 18, 42, 0.1),
    0 3px 0 rgba(0, 0, 0, 0.55);
  will-change: transform;
  position: relative;
}

.qeh-row2 {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-top: -6px;
}

.qeh-music {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 7.5vw, 106px);
  letter-spacing: 14px;
  color: rgba(245, 237, 216, 0.75);
}

.qeh-week {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 7.5vw, 106px);
  letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 237, 216, 0.32);
}

.qeh-logo-img {
  max-width: clamp(240px, 45vw, 580px);
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(2px 4px 12px rgba(60, 20, 5, 0.5));
}

.qeh-tagline {
  font-family: "DM Sans", sans-serif;
  font-style: italic;
  font-size: clamp(17px, 2.1vw, 30px);
  color: var(--gold);
  margin-top: 20px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Narrative block */
.qe-narrative {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  margin-bottom: 80px;
}
.qe-hook {
  margin-bottom: 8px;
}
.qe-hook-line {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  color: rgba(245, 237, 216, 0.85);
  margin-bottom: 6px;
}
.qe-hook-big {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: 2px;
  color: var(--cream);
  line-height: 1;
}
.qe-body {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.85;
  color: var(--cream);
}
.qe-body strong {
  color: var(--gold);
  font-weight: 500;
}
.qe-callout {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(18px, 2.4vw, 28px);
  font-style: italic;
  color: var(--gold);
  padding: 20px 28px;
  border-left: 2px solid var(--gold);
  background: rgba(7, 3, 10, 0.55);
  backdrop-filter: blur(12px);
  line-height: 1.4;
}
.qe-finale {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qe-finale-pre {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.45);
  font-family: "DM Sans", sans-serif;
}
.qe-finale-big {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(22px, 3.2vw, 40px);
  letter-spacing: 2px;
  color: var(--crimson);
  line-height: 1.1;
  text-transform: uppercase;
}

/* Statement glass card */
.qe-statement {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(245, 237, 216, 0.65);
  margin-bottom: 64px;
  background: rgba(7, 3, 10, 0.5);
  border: 1px solid var(--border);
  padding: 30px 44px;
  backdrop-filter: blur(16px);
  position: relative;
}
.qe-statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 168, 67, 0.5),
    transparent
  );
}
.qe-statement strong {
  color: white;
}
.qe-statement em {
  color: var(--gold);
  font-style: normal;
}

/* "Hoy, por primera vez" emphasis row */
.qe-body--highlight {
  font-size: 17px;
  color: rgba(245, 237, 216, 0.85);
}

/* Date badge */
.qe-date-block {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(192, 18, 42, 0.08);
  border: 1px solid rgba(192, 18, 42, 0.25);
  backdrop-filter: blur(12px);
}
.qe-date-range {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  color: var(--crimson);
  letter-spacing: 2px;
  line-height: 1;
  flex-shrink: 0;
}
.qe-date-divider {
  width: 1px;
  height: 60px;
  background: rgba(192, 18, 42, 0.35);
  flex-shrink: 0;
}
.qe-date-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.qe-date-month {
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.qe-date-city {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--cream);
}
.qe-date-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245, 237, 216, 0.5);
}

/* Crown finale (gold variant) */
.qe-finale-crown {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(18px, 2.8vw, 34px);
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.2;
}

/* Scrolling city ticker */
.qe-city-ticker {
  width: calc(100% + 176px);
  margin: 0 -88px;
  overflow: hidden;
  background: rgba(7, 3, 10, 0.55);
  border-top: 1px solid var(--border);
  padding: 20px 0;
  position: relative;
}
.qe-city-ticker::before,
.qe-city-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.qe-city-ticker::before {
  left: 0;
  background: linear-gradient(to right, rgba(7, 3, 10, 0.95), transparent);
}
.qe-city-ticker::after {
  right: 0;
  background: linear-gradient(to left, rgba(7, 3, 10, 0.95), transparent);
}

.qe-city-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: qeCityScroll 22s linear infinite;
  padding: 0 18px;
}
.qe-city-track span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  color: rgba(245, 237, 216, 0.38);
  flex-shrink: 0;
  transition: color 0.3s;
}
.qe-city-track span:hover {
  color: var(--gold);
}
.qe-city-track i {
  font-style: normal;
  font-size: 6px;
  color: rgba(212, 168, 67, 0.3);
  flex-shrink: 0;
}

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

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}
.reveal-delay-4 {
  transition-delay: 0.48s;
}

/* ═══ MOBILE ═══ */
@media (max-width: 1024px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-inner {
    padding: 120px 56px;
  }
  .two-col {
    gap: 56px;
  }
  .porque-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .eco-strip {
    width: calc(100% + 112px);
    margin: 0 -56px;
  }
  .qe-city-ticker {
    width: calc(100% + 112px);
    margin: 0 -56px;
  }
}
@media (max-width: 768px) {
  .section-inner {
    padding: 100px 24px 64px;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-col-reverse {
    direction: ltr;
  }
  .activities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .tribute-grid {
    grid-template-columns: 1fr;
  }
  .section-label {
    display: none;
  }
  .slide-counter {
    right: 14px;
    top: auto;
    bottom: 36px;
    transform: none;
    flex-direction: row;
  }
  .dot.active {
    height: 4px;
    width: 20px;
  }
  .body-text {
    font-size: 14px;
  }
  /* porque mobile */
  .porque-inner {
    gap: 36px;
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .eco-strip {
    width: calc(100% + 48px);
    margin: 0 -24px;
  }
  .pstat-card {
    padding: 32px 16px 28px;
  }
  .porque-title {
    font-size: clamp(58px, 14vw, 90px);
  }
  .pstat-num {
    font-size: clamp(48px, 11vw, 72px);
  }
  /* que-es mobile */
  .qe-city-ticker {
    width: calc(100% + 48px);
    margin: 0 -24px;
  }
  .qe-statement {
    padding: 24px 20px;
  }
  .qe-eyebrow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

/* ═══════════════════════ TICKET WIDGET ═══════════════════════ */
.tw-widget {
  position: fixed;
  bottom: 120px;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  filter: drop-shadow(0 6px 32px rgba(192, 18, 42, 0.22));
}

/* ── TAB ── */
.tw-tab {
  position: relative;
  width: 44px;
  height: 172px;
  background: linear-gradient(
    180deg,
    rgba(192, 18, 42, 0.95) 0%,
    rgba(90, 6, 16, 0.99) 100%
  );
  border: 1px solid rgba(192, 18, 42, 0.5);
  border-right: none;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 0;
  overflow: hidden;
  outline: none;
  transition:
    background 0.22s,
    filter 0.22s;
  flex-shrink: 0;
}
.tw-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--gold) 0%,
    var(--ember) 50%,
    var(--crimson) 100%
  );
}
.tw-tab:hover,
.tw-widget.tw-open .tw-tab {
  background: linear-gradient(
    180deg,
    rgba(210, 18, 40, 0.98) 0%,
    rgba(120, 8, 22, 1) 100%
  );
  filter: brightness(1.08);
}
.tw-tab-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: twDotPulse 2.6s ease-in-out infinite;
}
@keyframes twDotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.7);
  }
  60% {
    box-shadow: 0 0 0 5px rgba(212, 168, 67, 0);
  }
}
.tw-tab-icon {
  width: 19px;
  height: 19px;
  stroke: rgba(245, 237, 216, 0.82);
}
.tw-tab-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 3.5px;
  color: rgba(245, 237, 216, 0.88);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* ── PANEL ── */
.tw-panel {
  width: 0;
  overflow: hidden;
  transition: width 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.tw-widget.tw-open .tw-panel {
  width: 264px;
}
.tw-panel-inner {
  width: 264px;
  background: rgba(7, 3, 10, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-right: 2px dashed rgba(212, 168, 67, 0.22);
  border-radius: 12px 0 0 12px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.tw-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.tw-close:hover {
  background: rgba(192, 18, 42, 0.2);
  border-color: rgba(192, 18, 42, 0.4);
}
.tw-close svg {
  width: 11px;
  height: 11px;
  stroke: rgba(245, 237, 216, 0.55);
}

.tw-eyebrow {
  padding-right: 28px;
}
.tw-billboard-logo {
  width: 130px;
  height: auto;
  display: block;
  opacity: 0.88;
  filter: brightness(1.05);
}
.tw-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  line-height: 0.92;
  letter-spacing: 1.5px;
  color: var(--cream);
}
.tw-title span {
  color: var(--crimson);
}
.tw-divider-line {
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, transparent 100%);
}
.tw-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tw-meta-item {
  flex: 1;
}
.tw-meta-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
}
.tw-meta-key {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.35);
  margin-top: 3px;
}
.tw-meta-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}
.tw-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: linear-gradient(105deg, var(--crimson) 0%, var(--ember) 100%);
  color: var(--cream);
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  border-radius: 2px;
  margin-top: 2px;
  position: relative;
  overflow: hidden;
  transition:
    filter 0.2s,
    transform 0.15s;
}
.tw-cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(212, 168, 67, 0.18) 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.tw-cta-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.tw-cta-btn:hover::after {
  opacity: 1;
}
.tw-cta-btn svg {
  width: 15px;
  height: 15px;
  stroke: rgba(245, 237, 216, 0.85);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tw-widget {
    bottom: 78px;
  }
  .tw-widget.tw-open .tw-panel {
    width: 235px;
  }
  .tw-panel-inner {
    width: 235px;
    padding: 22px 18px 20px;
  }
  .tw-title {
    font-size: 28px;
  }
}
