:root {
  color-scheme: dark;
  --bg: #000000;
  --bg-card: #14181a;
  --bg-card-2: #1b231e;
  --cream: #f2eee3;
  --muted: #9aa39c;
  --yellow: #f4c430;
  --red: #e2362e;
  --blue: #3fb6de;
  --orange: #e8742c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  background: #000;
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@700;800&display=swap');

body {
  margin: 0;
  min-width: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body.construction-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at top, #83142c 0%, #1f1219 58%, #11090a 100%);
  background-attachment: fixed;
  color: #f5f1e6;
  font-family: 'JetBrains Mono', Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", monospace;
}

body.construction-page .panel {
  width: min(700px, 100%);
  max-width: 700px;
  min-width: 0;
  margin: 0 auto;
  border: 1px solid rgba(168, 0, 22, 0.12);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.72);
  padding: 34px 26px;
  text-align: center;
}

body.construction-page .logo {
  display: block;
  width: 108px;
  height: 108px;
  margin: 0 auto 30px;
  object-fit: contain;
}

body.construction-page .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  color: #c78a92;
  margin-bottom: 26px;
}

body.construction-page h1 {
  margin: 30px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.02em;
  word-break: break-word;
  hyphens: auto;
}

body.construction-page p {
  margin: 24px 0 0;
  color: #c1c9d6;
  line-height: 1.75;
  font-size: 1rem;
}

body.construction-page .alert {
  margin-top: 30px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(183, 152, 94, 0.16);
  border: 1px solid rgba(183, 134, 94, 0.28);
  color: #e7eaf6;
}

body.construction-page .panel-carousel {
  position: relative;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 0;
  padding: 18px 0;
  background: transparent;
}

body.construction-page .panel-carousel::before,
body.construction-page .panel-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}

body.construction-page .panel-carousel::before {
  left: 0;
  width: 120px;
  background: linear-gradient(90deg, rgba(17, 9, 10, 1) 0%, rgba(17, 9, 10, 0.5) 35%, rgba(17, 9, 10, 0) 100%);
}

body.construction-page .panel-carousel::after {
  right: 0;
  width: 120px;
  background: linear-gradient(270deg, rgba(17, 9, 10, 1) 0%, rgba(17, 9, 10, 0.5) 35%, rgba(17, 9, 10, 0) 100%);
}

body.construction-page .panel-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 16px;
  padding: 0 16px;
  overflow-x: hidden;
}

body.construction-page .panel-carousel-track::-webkit-scrollbar {
  display: none;
}

body.construction-page .panel-carousel-card {
  flex: 0 0 auto;
  width: 120px;
  min-width: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  padding: 14px;
  scroll-snap-align: start;
}

body.construction-page .panel-carousel-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

body.construction-page .footnote {
  margin-top: 28px;
  color: #c78a8a;
  font-size: 0.95rem;
}

body.construction-page .panel-carousel-card img.dark-logo {
  background-color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
}

.poster {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.poster-frame {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0px, 1vh, 12px) 0;
  opacity: 0;
  animation: reveal 0.7s ease-out forwards;
}

picture,
img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(0.99);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .poster-frame {
    animation: none;
    opacity: 1;
  }
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: hidden;
}

.aliados .wrap,
.spots .wrap {
  overflow-x: visible;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
}

.h1 {
  font-size: clamp(44px, 9vw, 88px);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 10px 0 6px;
}

.tagline {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.section-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}

.section-sub {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 36px;
  max-width: 560px;
}

.aliados-head .section-title {
  margin-bottom: 6px;
}

.aliados-head .section-sub {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
}

.btn:hover {
  transform: scale(1.05);                   /* Genera el ligero zoom (5% más grande) */
  box-shadow: 0 0 15px rgba(226, 54, 46, 0.7); /* Genera el brillo con el color e2362e */
  transition: all 0.3s ease-in-out;          /* Suaviza la transición del efecto */
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid #2a342d;
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--cream);
  font-weight: 600;
}

.pill b {
  color: var(--yellow);
}

.hero {
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid #1d2620;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  align-items: center;
}

.hero-img-frame {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-frame img {
  width: 100%;
  max-width: 380px;
  display: block;
}

.announcement-countdown {
  padding: 48px 0 64px;
  border-bottom: 1px solid #1d2620;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 18px;
  justify-items: center;
  align-items: center;
  max-width: 420px;
  margin: 24px auto 0;
}

.announcement-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.countdown--cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.countdown--cards .countdown-status {
  grid-column: 1 / -1;
}

.countdown-title {
  width: 100%;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  text-align: center;
}

.countdown-card {
  min-width: 0;
  width: 100%;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(20, 24, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 4px;
  text-align: center;
}

.countdown-value {
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.countdown-label {
  margin-top: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 700;
}

.countdown-status {
  width: 100%;
  color: var(--muted);
  font-size: 13px;
  margin-top: 18px;
  text-align: center;
}

@media (max-width: 720px) {
  .announcement-layout {
    grid-template-columns: 1fr;
  }

  .countdown {
    min-width: 0;
  }

  .countdown-card {
    padding: 14px 4px;
  }

  .countdown-value {
    font-size: clamp(24px, 9vw, 38px);
  }

  .countdown-label {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .countdown-status {
    margin-top: 16px;
  }
}

.pk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.paquetes {
  padding: 96px 0 160px;
}

.spots {
  width: 100%;
  overflow-x: hidden;
}

.spots .wrap {
  overflow-x: hidden;
}

.spot-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.spots .section-title {
  margin-bottom: 6px;
}

.spots .section-sub {
  margin-bottom: 24px;
  max-width: 720px;
}

.video-grid {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  padding: 0 20px 18px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 20px;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-grid::-webkit-scrollbar {
  display: none;
}

.video-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.video-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.spot-card {
  min-width: 0;
  flex: 0 0 calc((100% - 36px) / 3);
  width: calc((100% - 36px) / 3);
  background: rgba(20, 24, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  scroll-snap-align: start;
}

.spot-card:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
  border-color: rgba(222, 63, 63, 0.28);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.spot-label {
  padding: 17px 18px 20px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(20,24,26,0.96) 0%, rgba(20,24,26,0.9) 100%);
}

@media (max-width: 920px) {
  .video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    overflow-x: hidden;
    padding: 0;
  }

  .spot-card {
    min-width: 0;
    flex: none;
    width: auto;
  }
}

@media (max-width: 680px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-grid {
    padding-bottom: 14px;
  }

  .spot-card {
    min-width: 0;
    flex: none;
    width: auto;
  }

  .spot-label {
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.aliados {
  padding: 70px 0 80px;
}

.aliados-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.aliados-head img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  flex-shrink: 0;
}

.pk-card {
  background: rgba(20, 24, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pk-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #0d120f;
  overflow: hidden;
}

.pk-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

.pk-thumb.empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pk-thumb.empty span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3a443d;
  font-weight: 700;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  background: rgba(11, 15, 12, 0.55);
  border: 1.5px solid rgba(242, 238, 227, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn::after {
  content: "";
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #f2eee3;
  margin-left: 2px;
}

.reel-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 15, 12, 0.7);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.pk-body {
  padding: 18px 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pk-tier {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 4px;
}

.pk-price {
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 12px;
}

.pk-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.pk-list li {
  padding-left: 16px;
  position: relative;
}

.pk-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}

.pk-cta {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid #3a443d;
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
}

.pk-cta:hover {
  background-color: #e2362e;                   /* Fondo rojo */
  color: #fff;                                 /* Letras blancas */
  border-color: #e2362e;                       /* El borde también se vuelve rojo */
  transform: scale(1.02);                      /* Ligero zoom */
  box-shadow: 0 0 15px rgba(226, 54, 46, 0.7); /* Brillo rojo */
}

.pk-card.featured .pk-cta {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.pk-card.featured .pk-cta {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.aliados {
  padding: 70px 0 80px;
}

.aliados-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.aliados-head img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  flex-shrink: 0;
}

.aliados-head img.mirrored {
  transform: scaleX(-1);
}

@media (max-width: 780px) {
  .aliados-head img {
    width: 250px;
    height: 250px;
  }
}

.sp-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  padding: 0 24px;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
  z-index: 1;
}

.sp-carousel > .sp-arrow {
  display: none;
}

.spot-carousel > .sp-arrow {
  display: grid;
}

.spot-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  left: auto;
  margin-left: 0;
  box-sizing: border-box;
  padding: 0;
  touch-action: pan-y;
  user-select: none;
}

.spots .spot-carousel--contained {
  width: min(100%, 1080px);
  max-width: 1080px;
  margin: 0 auto;
  left: auto;
  margin-left: auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.spot-carousel::before,
.spot-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}

.spot-carousel::before {
  left: 0;
  width: 160px;
  z-index: 10;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0) 100%);
}

.spot-carousel::after {
  right: 0;
  width: 160px;
  z-index: 10;
  background: linear-gradient(270deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0) 100%);
}

.sp-carousel::before {
    left: 0;
    width: 220px;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,.8) 30%,
        rgba(0,0,0,0) 100%
    );
}

.sp-carousel::after {
    right: 0;
    width: 220px;
    background: linear-gradient(
        270deg,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,.8) 30%,
        rgba(0,0,0,0) 100%
    );
}

.sp-carousel::before,
.sp-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.sp-track {
  display: flex;
  flex-wrap: nowrap;
  min-width: max-content;
  gap: 18px;
  align-items: center;
  will-change: transform;
  transform: translateX(0);
  padding: 18px 0;
}

.sp-card {
  background: rgba(20, 24, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-height: 150px;
  justify-content: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  flex: 0 0 240px;
  width: min(240px, 70vw);
  min-width: 180px;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.sp-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.pk-card:hover,
.sp-card:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 0, 55, 0.35);
}

.sp-tag {
  font-size: 11.5px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}

.sp-chip {
  background: #f2eee3;
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-chip img {
  max-height: 32px;
}

.sp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 18, 22, 0.88);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.sp-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(63, 182, 222, 0.95);
  border-color: rgba(63, 182, 222, 0.28);
}

.sp-arrow--prev {
  left: 12px;
}
.sp-arrow--next {
  right: 12px;
}

.sp-carousel.is-dragging {
  cursor: grabbing;
}

.note {
  margin-top: 18px;
  font-size: 12px;
  color: #5a655f;
}

.banner {
  background: var(--yellow);
  color: #1a1404;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  flex-wrap: wrap;
}

.banner p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  max-width: 720px;
  line-height: 1.5;
}

.banner p span {
  font-weight: 400;
  opacity: 0.85;
}

.banner button {
  background: transparent;
  border: 1px solid #1a1404;
  color: #1a1404;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-img-frame {
    order: -1;
  }

  .pk-grid {
    grid-template-columns: 1fr;
  }

  .sp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aliados-head {
    flex-direction: column;
  }
}
