* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at top, #0a0a0a, #000);
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding-top: 80px;
}

section {
  padding: 100px 20px;
  text-align: center;
}

/* HEADER */

.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-amb {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(90deg, #a855f7, #e9d5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  font-size: 12px;
  letter-spacing: 3px;
  color: #aaa;
}

.btn-nav {
  background: linear-gradient(90deg, #7e22ce, #a855f7);
  padding: 10px 22px;
  border-radius: 40px;
  text-decoration: none;
  color: white;
}

/* HERO */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg-logo {
  position: absolute;
  width: 600px;
  opacity: 0.15;
  filter: blur(4px);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(20, 0, 40, 0.9));
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
  background: linear-gradient(90deg, #fff, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 25px 0;
  color: #ccc;
}

.hero-badge {
  color: #a855f7;
  font-weight: 600;
}

/* CARRUSEL ARRASTRABLE */

.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  padding: 20px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track img,
.carousel-track video {
  width: 380px;
  height: 520px;
  object-fit: cover;
  border-radius: 25px;
  flex-shrink: 0;
}

.carousel-track.active {
  cursor: grabbing;
}

.carousel-section {
  overflow: hidden;
}

/* BOTONES */

.btn-primary {
  display: inline-block;
  margin-top: 40px;
  background: linear-gradient(90deg, #7e22ce, #a855f7);
  padding: 14px 28px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

/* CARDS */

.cards,
.paquetes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.card,
.paquete-card {
  width: 280px;
  background: linear-gradient(145deg, #0c0c0c, #141414);
  padding: 30px;
  border-radius: 25px;
  border: 1px solid rgba(168, 85, 247, 0.15);
  transition: 0.4s;
}

.card:hover,
.paquete-card:hover {
  transform: translateY(-12px);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.15);
}

.paquete-card ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
  color: #ccc;
}

.precio {
  font-size: 24px;
  font-weight: 700;
  margin-top: 15px;
}

.descuento {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 60px;
  margin-top: 20px;
  padding: 15px 35px;
  display: inline-block;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff00cc, #a855f7);
  box-shadow: 0 0 40px rgba(255, 0, 200, 0.6);
  animation: pulseGlow 1.8s infinite alternate;
}

@keyframes pulseGlow {
  from {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(255, 0, 200, 0.5);
  }
  to {
    transform: scale(1.08);
    box-shadow: 0 0 60px rgba(255, 0, 200, 0.9);
  }
}

/*    UBICACIONES  */

.ubicaciones h2 {
  font-size: 42px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #ffffff, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ubicaciones p {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #ddd;
}

/* CTA */

.cta {
  background: linear-gradient(180deg, #0a0a0a, #140028);
}

/* FOOTER */

footer {
  text-align: center;
  padding: 40px 20px;
  color: #777;
  border-top: 1px solid rgba(168, 85, 247, 0.15);
}

/* ============================= */
/* RESPONSIVE REAL (MÓVIL) */
/* ============================= */

@media (max-width: 1024px) {
  section {
    padding: 70px 20px;
  }

  .hero {
    height: auto;
    padding: 120px 20px 80px 20px;
  }

  .hero-bg-logo {
    width: 350px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
  }

  .btn-primary {
    margin-top: 30px;
  }

  .descuento {
    font-size: 22px;
    padding: 12px 25px;
    margin-bottom: 40px;
  }

  /* Carrusel */
  .carousel-track img,
  .carousel-track video {
    width: 260px;
    height: 380px;
  }

  /* Cards */
  .cards,
  .paquetes {
    gap: 20px;
  }

  .card,
  .paquete-card {
    width: 85%;
    max-width: 400px;
  }

  /* Ubicaciones */
  .ubicaciones h2 {
    font-size: 30px;
  }

  .ubicaciones p {
    font-size: 16px;
    padding: 0 10px;
  }
}
