:root {
  --primary: #272b5d;
  --primary-dark: #665da6;
  --primary-soft: #efe8ff;
  --primary-bg: #3f7fc1;
  --accent: #d9c4ff;
  --ink: #211833;
  --muted: #70657f;
  --paper: #fffaf6;
  --white: #ffffff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(63, 35, 111, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cascadia Mono", sans-serif;
  color: var(--ink);
  background: var(--primary-soft);
  line-height: 1.6;width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p{
  margin-top: 0.5rem!important;
}
.site-header {
  border-radius: 3rem;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 15% 15%, rgba(217,196,255,.95), transparent 28%),!important
    radial-gradient(circle at 90% 20%, rgba(111,53,255,.22), transparent 32%),!important
    linear-gradient(135deg, #fffaf6 0%, #f4edff 100%);!important;
  overflow: hidden;!important;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.3);
}

.nav {
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
  border-radius: 3rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.08);
}

.brand {
  font-family: "dazzle-unicase-bold", sans-serif;
  font-size: 2rem;
  color: var(--primary-dark);
}
.brand span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: var(--primary-dark);
}
.nav-cta {
  background: var(--primary);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: var(--primary);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
}

.hero {
  /* width: min(1180px, calc(100% - 32px)); */
   width: 100%;
  max-width: 100%;
  /* background-image: url(img/bg-horizontal.svg);
  margin: 0 auto;
  padding: 68px 0 96px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center; */
}

.eyebrow, .section-kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--primary);
}
.intro h2{
  margin-bottom: 1rem;
}

h1, h2 {
  font-family: "dazzle-unicase-bold", sans-serif;
  line-height: .95;
  margin: 0;
  color: var(--primary-dark);
}
h1 { font-size: clamp(4.4rem, 12vw, 9rem); }
h2 { font-size: clamp(2rem, 6vw, 2rem); margin-top: 1rem; line-height: 110%;}
h3 { margin: 0 0 0px; }

.date {
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  color: var(--primary);
  font-weight: 800;
  margin: 20px 0;
}
.hero-text { font-size: 1.15rem; max-width: 620px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 16px 36px rgba(111,53,255,.28); }
.btn-secondary { background: white; color: var(--primary-dark); border: 1px solid rgba(111,53,255,.18); }


.hero-card {
  position: relative;
  border-radius: 44px;
  padding: 16px;
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-card img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  border-radius: 34px;
}
.floating-card {
  position: absolute;
  left: -24px;
  bottom: 34px;
  background: white;
  padding: 18px 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
}
.floating-card span { color: var(--muted); }
.floating-card strong { color: var(--primary-dark); }

.section-pad { padding: 96px 0; border-top: 1px solid var(--primary); }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 830px; text-align: center; }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading p, .intro p, .split p, .story-text p { color: var(--muted); font-size: 1.05rem; }

.details { background: white; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.info-card {
  background: var(--primary-soft);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(111,53,255,.12);
}
.icon { font-size: 2rem; display: inline-block; margin-bottom: 14px; }

.timeline {
  background: var(--primary-dark);
  color: white;
  border-radius: 36px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline time {
  color: var(--accent);
  font-weight: 900;
  font-size: 1.2rem;
}
.timeline p { margin: 0; color: rgba(255,255,255,.72); }
.note { color: var(--muted); margin-top: 18px; }

.bus { background: linear-gradient(180deg, var(--paper), #f2eaff); }
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.image-stack { position: relative; }
.image-stack img {
  border-radius: 38px;
  aspect-ratio: 16/11;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.mini-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--primary);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}
.image-card{
  border-radius: 1rem;
  width: auto;
  height: auto;
}
.story { background: white; }
.quiz-card {
  background: var(--paper);
  border: 1px solid rgba(111,53,255,.12);
  border-radius: 36px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.quiz-intro {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
}
.quiz-intro img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 26px;
}
.quiz-pill {
  display: inline-flex;
  width: fit-content;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border: 1px solid rgba(111,53,255,.16);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.quiz-intro h3, .quiz-question-area h3, .quiz-result h3 {
  font-family: "dazzle-unicase-bold", sans-serif;
  color: var(--primary-dark);
  font-size: clamp(2rem, 4vw, 2rem);
  line-height: 1;
}
.quiz-result p{
  margin-top: 0.5rem;
}
.quiz-progress {
  height: 12px;
  background: #e7dcfb;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 28px;
}
.quiz-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: inherit;
  transition: width .35s ease;
}
.quiz-count {
  color: var(--primary);
  font-weight: 900;
  margin: 0 0 10px;
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.quiz-option {
  border: 1px solid rgba(111,53,255,.18);
  background: white;
  color: var(--ink);
  padding: 8px 16px;
  line-height: 110%;
  border-radius: 20px;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.quiz-option:hover { transform: translateY(-2px); border-color: var(--primary); }
.quiz-option.correct { background: #e8fff2; border-color: #28a764; }
.quiz-option.wrong { background: #fff0f0; border-color: #e05252; }
.quiz-option:disabled { cursor: default; }
.quiz-feedback {
  min-height: 32px;
  color: var(--primary-dark);
  font-weight: 900;
  margin-top: 0.5rem;
}
.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.quiz-result {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background: var(--primary-soft);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.gallery img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  border-radius: 26px;
}
.gallery img:nth-child(even) { margin-top: 28px; }

.rsvp { background: var(--primary-dark); color: white; }
.rsvp h2, .rsvp .section-kicker { color: white; }
.rsvp p { color: rgba(255,255,255,.72); }
.contact-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 22px;
  border-radius: 24px;
  margin-top: 26px;
}
.contact-box h3{
  margin: 0 0 8px;
}
.rsvp-form {
  background: white;
  color: var(--ink);
  padding: 30px;
  border-radius: 32px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}
label { display: grid; gap: 8px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid #ded6ec;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(111,53,255,.18);
  border-color: var(--primary);
}
.form-message { margin: 0; color: var(--primary-dark) !important; font-weight: 800; }

.footer {
  padding: 28px 16px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  background: #180d2f;
  color: rgba(255,255,255,.78);
}
.footer a { color: white; font-weight: 800; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 18px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; z-index: 10000;}
  .hero, .split, .quiz-intro { grid-template-columns: 1fr; }
  .hero { padding-top: 34px; }
  .hero-card { transform: none; }
  .floating-card { left: 18px; right: 18px; bottom: 24px; }
  .info-grid { grid-template-columns: 1fr; }
  .timeline { padding: 22px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .quiz-options { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img, .gallery img:nth-child(even) { height: 240px; margin-top: 0; }
  .section-pad { padding: 72px 0; }
}

/* ---------------- LIGHTBOX: fotos ampliadas ---------------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  place-items: center;
  z-index: 9999;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox:not([hidden]) {
  display: grid;
}

.lightbox img {
  max-width: 92%;
  max-height: 85vh;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
}

.guest-photo-card img {
  cursor: zoom-in;
}
.guest-photo-card{
  position:relative;
}

.delete-photo{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border:none;
  border-radius:999px;
  background:rgba(15, 8, 25, .78);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
  z-index:20;
  backdrop-filter:blur(10px);
  transition:transform .2s ease, background .2s ease, opacity .2s ease;
}

.delete-photo:hover{
  transform:scale(1.08);
  background:#ff4fa3;
}

/* ------------NUEVO--------------- */
/* ------------NUEVO--------------- */
/* SOLO FIX HERO MÓVIL / DESKTOP */

.site-header {
  padding: 0;
  margin: 0;
  background: var(--primary-soft);
  overflow: visible;
}

/* NAV FIJO */
.nav {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1480px, calc(100% - 32px));
  z-index: 20;
box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.08);
  margin: 0;
  padding: 1.5rem;
  border-radius: 3rem;
  background-color: var(--primary-soft);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 50px;
  height: auto;
  display: block;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

/* HERO FULLSCREEN */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGEN DE FONDO */
.hero-bg,
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;

  object-fit: cover;
  object-position: center;
}

/* CONTENIDO HERO */
.hero-content-clean,
.hero-center {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;

  padding-top: 110px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 200px;
  height: auto;
  display: block;
}

.hero-date,
.hero p {
  margin: 28px 0 0;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

/* DESKTOP */
@media (min-width: 768px) {
  .hero-logo {
    width: 200px;
  }

  .hero-date,
  .hero p {
    font-size: clamp(1rem, 1.4vw, 1.4rem);
  }
}

/* MÓVIL */
@media (max-width: 860px) {
  .nav {
    width: calc(100% - 32px);
    padding: 1.5rem;
    border-radius: 3rem;
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.08);
  }

  .brand {
    width: 48px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    z-index: 22;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    z-index: 21;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px 16px;
    color: var(--primary);
    font-weight: 900;
    border-radius: 16px;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
    color: white;
    text-align: center;
  }

  .hero {
    height: 100vh;
    height: 100dvh;
  }

  .hero-bg,
  .hero__img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-content-clean,
  .hero-center {
    height: 100%;
    min-height: 100dvh;
    padding-top: 120px;
  }

  .hero-logo {
    width: 200px;
  }

  .hero-date,
  .hero p {
    font-size: 1rem;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-mobile {
  background-image: url("img/bg-vertical.svg");
  background-size: 230%;
}

.hero-desktop {
  background-image: url("img/fondo-hero-h.png");
}

.hero-content-clean {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  padding-top: 120px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 200px;
  height: auto;
}

.hero-date {
  margin: 28px 0 0;
  color: white;
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero-logo {
    width: 200px;
  }
}
/* ----------TARJETA GAME---------- */

.game-section {
  background:
    radial-gradient(circle at top left, rgba(39, 43, 93, .18), transparent 34rem),
    linear-gradient(180deg, #fff, var(--primary-soft));
}

.game-launch {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 3rem;
  align-items: center;
}

.game-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.game-prizes {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
}

.game-prizes li {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(39,43,93,.14);
  box-shadow: 0 18px 45px rgba(39,43,93,.08);
}

.game-prizes strong {
  color: var(--primary);
}

.game-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.game-card-preview {
  padding: 1rem;
  border-radius: 36px;
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.arcade-screen {
  min-height: 420px;
  border-radius: 28px;
  padding: 2rem;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,79,163,.35), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(120,255,214,.22), transparent 24%),
    linear-gradient(180deg, #170722, #2a0d3f);
}
.arcade-screen h3{
  
}
.arcade-tag {
  width: fit-content;
  margin: 0 auto 1rem;
  padding: .5rem .8rem;
  border-radius: 999px;
  background: #ffe76a;
  color: #17071f;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.arcade-screen h3 {
  font-family:Inter,system-ui,sans-serif;
  text-transform: uppercase;
  font-size: clamp(4rem, 7vw, 5rem);
  letter-spacing: -8px;
  line-height: .85;
  color: #fff2db;
  text-shadow: 4px 4px 0 #ff4fa3;
  margin: 0;
}

.arcade-screen p {
  color: rgba(255,242,219,.8);
}

@media (max-width: 860px) {
  .game-launch {
    grid-template-columns: 1fr;
  }

  .game-card-preview {
    transform: none;
  }

  .arcade-screen {
    min-height: 320px;
  }
}

.arcade-emojis{
  display:flex;
  justify-content:center;
  gap:.6rem;
  margin-bottom:1.2rem;
}

.arcade-emojis span{
  font-size:1.8rem;
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.25));
  animation:floatEmoji 2.4s infinite ease-in-out alternate;
}

.arcade-emojis span:nth-child(2){
  animation-delay:.4s;
}

.arcade-emojis span:nth-child(3){
  animation-delay:.8s;
}

@keyframes floatEmoji{
  from{
    transform:translateY(0) rotate(-4deg);
  }
  to{
    transform:translateY(-6px) rotate(4deg);
  }
}

.emoji-divider{
  width:100%;
  height:1px;
  background:rgba(255,255,255,.12);
  margin:1.6rem 0;
}

.emoji-info{
  display:grid;
  gap:1rem;
}

.emoji-group{
  padding:.65rem .8rem;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.06);
}

.emoji-group strong{
  display:block;
  margin-bottom:.35rem;
  font-size:.62rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#fff2db;
}

.emoji-row{
  display:flex;
  justify-content:center;
  gap:.7rem;
  flex-wrap:wrap;
}

.emoji-row span{
   font-size:1.25rem;
  transition:transform .2s ease;
}

.emoji-row span:hover{
  transform:scale(1.15) rotate(-6deg);
}

.emoji-group.good{
  box-shadow:inset 0 0 0 1px rgba(120,255,214,.08);
}

.emoji-group.bad{
  box-shadow:inset 0 0 0 1px rgba(255,93,115,.08);
}
.emoji-info{
  gap:.65rem;
  max-width:260px;
  margin:0 auto;
}

.emoji-row{
  gap:.45rem;
}

/* ------------CAMBIO COLOR BOTON---------- */
.btn-primary{
  --bs-btn-color: #fff;

  --bs-btn-bg: #272b5d;
  --bs-btn-border-color: #272b5d;

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #665da6;
  --bs-btn-hover-border-color: #665da6;

  --bs-btn-focus-shadow-rgb: 102,93,166;

  --bs-btn-active-bg: #1d2148;
  --bs-btn-active-border-color: #1d2148;
}

.btn-primary-2{
  --bs-btn-color: #272b5d;

  --bs-btn-bg: #ffffff;
  --bs-btn-border-color: #272b5d;
border: 1px solid #272b5d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #665da6;
  --bs-btn-hover-border-color: #665da6;

  --bs-btn-focus-shadow-rgb: 102,93,166;

  --bs-btn-active-bg: #1d2148;
  --bs-btn-active-border-color: #1d2148;
}

.btn-secondary{
  --bs-btn-color: #272b5d;

  --bs-btn-bg: #ffffff;
  --bs-btn-border-color: #d9c4ff;

  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #665da6;
  --bs-btn-hover-border-color: #665da6;

  --bs-btn-focus-shadow-rgb: 102,93,166;

  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #272b5d;
  --bs-btn-active-border-color: #272b5d;

  --bs-btn-disabled-color: #70657f;
  --bs-btn-disabled-bg: #f3eefc;
  --bs-btn-disabled-border-color: #d9c4ff;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

/* -------------arreglo Desplazamiento------------ */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.nav {
  max-width: calc(100% - 32px);
}

@media (max-width: 860px) {
  .nav {
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
  }
}

/* ---------------CUENTA ATRAS------------ */

.hero-countdown{
  display:flex;
  justify-content:center;
  gap:1rem;
  margin-top:2rem;
}

.count-item{
  min-width:72px;
  padding:1rem .75rem;
  text-align:center;

  background:rgba(121, 102, 228, 0.10);
  backdrop-filter:blur(12px);

  border-radius:20px;
}

.count-item strong{
  display:block;
  color:var(--primary-bg);
  font-size:1.8rem;
  font-weight:800;
  line-height:1;
}

.count-item span{
  color:var(--primary-bg);
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

@media(max-width:768px){

  .hero-countdown{
    gap:.5rem;
  }

  .count-item{
    min-width:58px;
    padding:.8rem .4rem;
  }

  .count-item strong{
    font-size:1.3rem;
  }

}
