:root {
  color-scheme: dark;
  --fondo: #0a0a12;
  --fondo-alt: #10101c;
  --tarjeta: #16162a;
  --tarjeta-2: #1c1c33;
  --morado: #8b5cf6;
  --morado-2: #a855f7;
  --neon: #c084fc;
  --dorado: #d4af37;
  --texto: #f2eefb;
  --subt: #9b97b0;
  --borde: rgba(139, 92, 246, 0.28);
  --wa: #25d366;
  --t-fuente: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --t-titulo: "Oswald", "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--t-fuente);
  background: var(--fondo);
  color: var(--texto);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--neon);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--center {
  text-align: center;
}

/* ---------- Navegación ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: rgba(10, 10, 18, 0.9);
  border-bottom: 1px solid rgba(139, 92, 246, 0.18);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  background: rgba(10, 10, 18, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__logo {
  font-family: var(--t-titulo);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.nav__logo span {
  background: linear-gradient(90deg, var(--morado-2), var(--neon) 55%, var(--dorado));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 10px;
  background: none;
  border: 1px solid var(--borde);
  border-radius: 12px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--texto);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.activo span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.activo span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.activo span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  position: fixed;
  top: 64px;
  right: 0;
  height: calc(100vh - 64px);
  width: min(320px, 85vw);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px;
  background: rgba(16, 16, 28, 0.97);
  border-left: 1px solid var(--borde);
  transform: translateX(105%);
  transition: transform 0.3s ease;
}

.nav__menu.abierto {
  transform: translateX(0);
}

.nav__link {
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--texto);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  background: var(--tarjeta);
  color: var(--neon);
}

.nav__link--cta {
  margin-top: 12px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--morado), var(--morado-2));
}

.nav__link--cta:hover,
.nav__link--cta:focus-visible {
  background: linear-gradient(135deg, var(--morado-2), var(--neon));
  color: #fff;
}

/* ---------- Botones ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--t-fuente);
  font-size: 1rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  min-height: 48px;
}

.btn--neon {
  color: #fff;
  background: linear-gradient(135deg, var(--morado), var(--morado-2));
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35);
}

.btn--neon:hover,
.btn--neon:focus-visible {
  filter: brightness(1.1);
  box-shadow: 0 10px 28px rgba(168, 85, 247, 0.5);
}

.btn--ghost {
  color: var(--texto);
  background: transparent;
  border: 1px solid var(--borde);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--neon);
  color: var(--neon);
}

.btn--wa {
  color: #fff;
  background: var(--wa);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn--wa:hover,
.btn--wa:focus-visible {
  filter: brightness(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.btn--grande {
  padding: 18px 40px;
  font-size: 1.15rem;
  margin-top: 16px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.hero__video.is-activo {
  display: block;
}

.hero__video.is-activo ~ .hero__img {
  display: none;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 18, 0.5) 0%, rgba(10, 10, 18, 0.7) 55%, var(--fondo) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 112px;
  padding-bottom: 56px;
}

.hero__kicker {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dorado);
}

.hero__title {
  margin: 0;
  font-family: var(--t-titulo);
  font-weight: 700;
  font-size: clamp(3.2rem, 15vw, 7.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero__title span {
  background: linear-gradient(90deg, var(--morado-2), var(--neon) 55%, var(--dorado));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tagline {
  margin: 18px auto 6px;
  font-family: var(--t-titulo);
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  letter-spacing: 1px;
  color: var(--texto);
}

.hero__sub {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--subt);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__prueba {
  margin-top: 32px;
}

.hero__prueba-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(139, 92, 246, 0.25);
}

.hero__prueba-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__prueba-item strong {
  font-family: var(--t-titulo);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--neon);
}

.hero__prueba-item span {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--subt);
}

/* ---------- Secciones ---------- */

.section {
  padding: 72px 0;
  scroll-margin-top: 64px;
}

.section--alt {
  background: var(--fondo-alt);
}

.section--final {
  padding-bottom: 96px;
}

.section__tag {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dorado);
}

.section__title {
  margin: 0 0 8px;
  font-family: var(--t-titulo);
  font-size: clamp(1.9rem, 7vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section__title--sm {
  margin-top: 40px;
  font-size: clamp(1.4rem, 5vw, 2rem);
}

.section__sub {
  margin: 0 0 28px;
  color: var(--subt);
  max-width: 640px;
}

/* ---------- Cuadrículas y tarjetas ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--morado-2);
  box-shadow: 0 14px 34px rgba(168, 85, 247, 0.18);
}

.card--destacado {
  border-color: rgba(212, 175, 55, 0.45);
}

.card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.card__titulo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-family: var(--t-titulo);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card__icono {
  font-size: 1.3rem;
}

.card__desc {
  margin: 0 0 14px;
  color: var(--subt);
  font-size: 0.95rem;
  flex: 1;
}

.card__lista {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.card__lista li {
  padding-left: 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--texto);
}

.card__lista li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--neon);
}

.card__precio {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--neon);
}

.card__precio small {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--subt);
}

.card__pie {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dorado), #b8860b);
  color: #1d1300;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

.card__imagen-wrap {
  position: relative;
}

.card--detalle {
  background: none;
  border: 0;
}

.card--detalle .card__img {
  aspect-ratio: 3 / 4;
}

.card__imagen-wrap--click {
  cursor: pointer;
}

.card__acciones {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 18, 0.85) 55%);
}

.card__acciones .btn {
  flex: 1;
  min-width: 120px;
  padding: 11px 14px;
  font-size: 0.92rem;
}

/* ---------- Wizard / Configurador ---------- */

.wizard {
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: 20px;
  padding: 22px 18px;
}

.wizard__steps {
  display: flex;
  justify-content: space-between;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.wizard__dot {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--subt);
  position: relative;
}

.wizard__dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--subt);
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wizard__dot.is-active {
  color: var(--texto);
}

.wizard__dot.is-active::before {
  background: linear-gradient(135deg, var(--morado), var(--neon));
  border-color: transparent;
  box-shadow: 0 0 12px rgba(192, 132, 252, 0.7);
}

.wizard__step {
  display: none;
}

.wizard__step.is-activo {
  display: block;
  animation: fade 0.25s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.campo {
  display: block;
  margin: 16px 0 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.input {
  width: 100%;
  padding: 13px 14px;
  background: var(--fondo-alt);
  border: 1px solid var(--borde);
  border-radius: 12px;
  color: var(--texto);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.input:focus {
  border-color: var(--neon);
  outline: none;
}

.input--error {
  border-color: #f87171 !important;
}

.wizard__error {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #f87171;
  min-height: 1em;
}

.wizard__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.wizard__hint {
  font-size: 0.85rem;
  color: var(--subt);
}

.wizard__nota {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--subt);
  text-align: center;
}

.wizard__datos {
  margin-top: 16px;
}

/* Tarjetas de selección de servicios/extras */

.s-card {
  position: relative;
  cursor: pointer;
  border: 1px solid var(--borde);
  border-radius: 18px;
  background: var(--tarjeta-2);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.s-card:hover {
  border-color: var(--morado-2);
}

.s-card.is-activo {
  border-color: var(--neon);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.18), rgba(28, 28, 51, 1));
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.22);
}

.s-card__icono {
  font-size: 1.7rem;
}

.s-card__nombre {
  font-weight: 700;
  font-size: 1.02rem;
}

.s-card__desc {
  font-size: 0.88rem;
  color: var(--subt);
  flex: 1;
}

.s-card__precio {
  font-weight: 800;
  color: var(--neon);
}

.s-card__check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--borde);
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.s-card.is-activo .s-card__check {
  background: linear-gradient(135deg, var(--morado), var(--morado-2));
  border-color: transparent;
  color: #fff;
}

/* Selector de cantidad */

.qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 10px;
}

.qty__btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--borde);
  background: var(--fondo-alt);
  color: var(--texto);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.qty__btn:hover {
  border-color: var(--neon);
}

.qty__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.qty__num {
  min-width: 44px;
  text-align: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--neon);
}

.qty__total {
  margin-left: 8px;
  font-size: 0.82rem;
  color: var(--subt);
}

/* Resumen */

.resumen {
  border: 1px solid var(--borde);
  border-radius: 16px;
  background: var(--fondo-alt);
  padding: 18px;
}

.resumen__titulo {
  margin: 0 0 10px;
  font-family: var(--t-titulo);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.resumen__lista {
  list-style: none;
  margin: 0;
  padding: 0;
}

.resumen__lista li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(155, 151, 176, 0.25);
  font-size: 0.95rem;
}

.resumen__lista li:last-child {
  border-bottom: 0;
}

.resumen__lista span:first-child {
  color: var(--texto);
  display: flex;
  gap: 6px;
}

.resumen__lista .monto {
  color: var(--neon);
  font-weight: 700;
  white-space: nowrap;
}

.resumen__extra {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--dorado);
  border-top: 1px dashed rgba(155, 151, 176, 0.25);
}

.resumen__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tarjeta-2), var(--tarjeta));
  border: 1px solid var(--borde);
}

.resumen__total span {
  font-weight: 600;
  color: var(--subt);
}

.resumen__total strong {
  font-size: 1.5rem;
  color: var(--neon);
}

/* ---------- Galería ---------- */

.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filtro {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--borde);
  background: transparent;
  color: var(--subt);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 42px;
}

.filtro.is-activo {
  background: linear-gradient(135deg, var(--morado), var(--morado-2));
  border-color: transparent;
  color: #fff;
}

.grid--galeria {
  display: block;
  column-count: 2;
  column-gap: 12px;
}

.gal {
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  display: block;
  break-inside: avoid;
}

.gal__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--borde);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gal--vertical .gal__img {
  aspect-ratio: 3 / 4;
}

.gal--horizontal .gal__img {
  aspect-ratio: 4 / 3;
}

.gal--cuadrada .gal__img {
  aspect-ratio: 1 / 1;
}

.gal:hover .gal__img {
  transform: scale(1.02);
  border-color: var(--neon);
}

.gal__cap {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--subt);
}

/* ---------- Sobre mí ---------- */

.bio {
  display: grid;
  gap: 24px;
  align-items: center;
}

.bio__img {
  width: min(320px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--borde);
}

.bio__texto p:last-child {
  color: var(--subt);
  margin: 0;
}

/* ---------- Sociales y zonas ---------- */

.sociales {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.social__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--borde);
  background: var(--tarjeta);
  font-weight: 700;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social__link:hover,
.social__link:focus-visible {
  border-color: var(--neon);
  color: var(--neon);
}

.zonas {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--subt);
}

.mapa {
  margin-top: 28px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--borde);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  background: var(--fondo-alt);
}

.mapa iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---------- Banda CTA ---------- */

.cta-band {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(212, 175, 55, 0.12)), var(--fondo-alt);
  border-top: 1px solid var(--borde);
  border-bottom: 1px solid var(--borde);
}

.cta-band__titulo {
  margin: 0 0 6px;
  font-family: var(--t-titulo);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
}

.cta-band__sub {
  margin: 0 0 10px;
  color: var(--subt);
}

/* ---------- Testimonios ---------- */

.grid--testimonios {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid--testimonios {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.testi {
  margin: 0;
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.testi blockquote {
  margin: 0 0 14px;
  font-size: 1.02rem;
  color: var(--texto);
  flex: 1;
}

.testi blockquote::before {
  content: "“";
  display: block;
  color: var(--neon);
  font-size: 1.8rem;
  line-height: 0.6;
  margin-bottom: 8px;
}

.testi figcaption {
  color: var(--subt);
  font-size: 0.9rem;
}

.testi figcaption strong {
  color: var(--dorado);
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid rgba(155, 151, 176, 0.16);
  padding: 48px 0 32px;
}

.footer__grid {
  display: grid;
  gap: 28px;
}

.footer__col .nav__logo {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.footer__desc {
  color: var(--subt);
  font-size: 0.92rem;
  margin: 0;
  max-width: 340px;
}

.footer__titulo {
  margin: 0 0 12px;
  font-family: var(--t-titulo);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  color: var(--texto);
}

.footer__lista {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer__lista a {
  color: var(--subt);
  transition: color 0.2s ease;
}

.footer__lista a:hover,
.footer__lista a:focus-visible {
  color: var(--neon);
}

.footer__copy {
  text-align: center;
  color: var(--subt);
  font-size: 0.85rem;
  margin: 32px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(155, 151, 176, 0.16);
}

/* ---------- Página 404 ---------- */

.pagina-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.pagina-404 .hero__sub {
  margin-bottom: 28px;
}

/* ---------- WhatsApp flotante ---------- */

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 950;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
}

/* ---------- Lightbox (popup de fotos) ---------- */

body.no-scroll {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 8, 15, 0.94);
}

.lightbox.is-abierto {
  display: flex;
  animation: fade 0.2s ease;
}

.lightbox__img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--borde);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
}

.lightbox__cap {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--subt);
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--borde);
  background: var(--tarjeta);
  color: var(--texto);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  border-color: var(--neon);
  color: var(--neon);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--borde);
  background: rgba(22, 22, 42, 0.85);
  color: var(--texto);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  border-color: var(--neon);
  color: var(--neon);
}

.lightbox__nav--prev {
  left: 10px;
}

.lightbox__nav--next {
  right: 10px;
}

.lightbox__fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

/* ---------- Modal de detalles de paquete ---------- */

.detalle {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.detalle.is-abierto {
  display: flex;
  animation: fade 0.2s ease;
}

.detalle__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 15, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.detalle__panel {
  position: relative;
  width: min(660px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.detalle__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--borde);
  background: rgba(22, 22, 42, 0.9);
  color: var(--texto);
  font-size: 1.05rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.detalle__close:hover,
.detalle__close:focus-visible {
  border-color: var(--neon);
  color: var(--neon);
}

.detalle__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fondo-alt);
}

.detalle__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 66vh;
  object-fit: contain;
  object-position: center;
  border-radius: 20px 20px 0 0;
}

.detalle__content {
  padding: 22px;
  flex: 1;
}

@media (min-width: 768px) {
  .detalle__panel {
    display: grid;
    grid-template-columns: 320px 1fr;
    width: min(720px, 96vw);
  }

  .detalle__media {
    min-height: 460px;
  }

  .detalle__img {
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 20px 0 0 20px;
  }
}

.detalle__titulo {
  margin: 0 0 10px;
  font-family: var(--t-titulo);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, var(--morado-2), var(--neon) 55%, var(--dorado));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.detalle__desc {
  margin: 0 0 16px;
  color: var(--texto);
  font-size: 0.98rem;
  line-height: 1.7;
}

.detalle__subtitulo {
  margin: 0 0 8px;
  font-family: var(--t-titulo);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--neon);
}

.detalle__lista {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.detalle__lista li {
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
  color: var(--texto);
}

.detalle__lista li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--neon);
}

.detalle__linea {
  margin: 0 0 10px;
  font-size: 0.93rem;
  color: var(--texto);
}

.detalle__linea strong {
  color: var(--neon);
}

.detalle__nota {
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px dashed var(--dorado);
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--texto);
  font-size: 0.92rem;
  line-height: 1.6;
}

.detalle__pie {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--borde);
}

/* ---------- Promociones (carrusel) ---------- */

.promo__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.promo__head .section__sub {
  margin: 0;
}

.promo__controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.promo__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--borde);
  background: var(--tarjeta);
  color: var(--texto);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.promo__btn:hover,
.promo__btn:focus-visible {
  border-color: var(--neon);
  color: var(--neon);
  transform: translateY(-2px);
}

.promo__pista {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px;
  margin: 0 -4px;
  scrollbar-width: none;
}

.promo__pista::-webkit-scrollbar {
  display: none;
}

.promo__slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.promo__tarjeta {
  width: min(240px, 76vw);
  height: clamp(320px, 60vw, 440px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--borde);
  border-radius: 18px;
  background: var(--tarjeta);
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.promo__tarjeta:hover,
.promo__tarjeta:focus-visible {
  transform: translateY(-4px);
  border-color: var(--morado-2);
  box-shadow: 0 14px 34px rgba(168, 85, 247, 0.18);
}

.promo__foto {
  flex: 1;
  min-height: 0;
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
  background: var(--fondo-alt);
}

.promo__etiqueta {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.3;
  letter-spacing: 0.3px;
  color: var(--texto);
}

/* ---------- Modal de promoción (popup + Me interesa) ---------- */

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.promo-modal.is-abierto {
  display: flex;
  animation: fade 0.2s ease;
}

.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 15, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.promo-modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.promo-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--borde);
  background: rgba(22, 22, 42, 0.9);
  color: var(--texto);
  font-size: 1.05rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.promo-modal__close:hover,
.promo-modal__close:focus-visible {
  border-color: var(--neon);
  color: var(--neon);
}

.promo-modal__media {
  background: var(--fondo-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0 0;
}

.promo-modal__img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 20px 20px 0 0;
}

.promo-modal__content {
  padding: 22px;
  display: grid;
  gap: 14px;
  text-align: center;
}

.promo-modal__titulo {
  margin: 0;
  font-family: var(--t-titulo);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, var(--morado-2), var(--neon) 55%, var(--dorado));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.promo-modal__btn {
  width: 100%;
}

.promo-modal__nota {
  margin: 0;
  font-size: 0.82rem;
  color: var(--subt);
}

/* ---------- Media queries (mobile first) ---------- */

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .section {
    padding: 96px 0;
  }

  .grid--galeria {
    column-count: 3;
    column-gap: 16px;
  }

  .bio {
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 48px;
  }

  .wizard {
    padding: 32px;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
  }

  .mapa iframe {
    height: 460px;
  }
}

@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    transform: none;
  }

  .nav__link {
    padding: 10px 12px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .nav__link--cta {
    margin-top: 0;
    margin-left: 8px;
  }
}

@media (min-width: 1200px) {
  .grid--galeria {
    column-count: 3;
    column-gap: 16px;
  }

  .wa-float {
    right: 24px;
    bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}