/* =========================
   PAQUETE DETAIL
========================= */

.paquete-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Poppins", sans-serif;
  color: #222;
}

/* =========================
   TITULO
========================= */
.paquete-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.paquete-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b5ed7;
}


/* ===============================
   GALERÍA / CARRUSEL
================================ */

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* BOTONES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 2.4rem;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

/* THUMBNAILS */
.carousel-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}

.carousel-thumbs img {
  width: 80px;
  height: 55px;
  object-fit: cover;
  opacity: .5;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
}

.carousel-thumbs img.active {
  opacity: 1;
  border-color: #0b4db8;
}

/* =========================
   INFO GRID
========================= */
.package-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .package-info {
    grid-template-columns: 1fr;
  }
}

/* =========================
   BLOQUES
========================= */
.info-block {
  margin-bottom: 30px;
}

.info-block h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  border-left: 4px solid #0b5ed7;
  padding-left: 10px;
}

/* =========================
   DURACION
========================= */
.duration {
  font-weight: 600;
}

/* =========================
   ITINERARIO
========================= */
.itinerary-day {
  background: #f7f7f7;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.itinerary-day strong {
  display: block;
  margin-bottom: 5px;
}

/* =========================
   INCLUYE / NO INCLUYE
========================= */
.list-check {
  list-style: none;
  padding: 0;
}

.list-check li {
  margin-bottom: 6px;
}

.list-check li::before {
  content: "✔ ";
  color: #0b5ed7;
  font-weight: bold;
}

.list-cross li::before {
  content: "✖ ";
  color: #f57746;
}


/* ================= HERO ================= */

/* ================= HERO ================= */

.paquete-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
}

.paquete-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay con degradado inferior */
.paquete-hero-overlay {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;

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


.paquete-hero-text {
  text-align: center;
  color: #fff;
  max-width: 1100px;
  width: 100%;
}

/* Título */
.paquete-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin: 0 0 10px;
}

/* Precio */
.paquete-hero-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  font-size: 1.2rem;
}

.paquete-hero-price .from {
  opacity: 0.85;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.paquete-hero-price strong {
  font-size: 1.6rem;
  font-weight: 700;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .paquete-hero {
    height: 40vh;
  }

  .paquete-hero-price strong {
    font-size: 1.4rem;
  }
}



/* ================= INCLUDES ================= */

.paquete-includes {
  margin: 64px 0;
}

.paquete-includes h2 {
  margin-bottom: 24px;
}

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

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.include-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.include-item .icon {
  font-size: 1.6rem;
  line-height: 1;
}

.include-item strong {
  font-size: .95rem;
}

.include-item small {
  display: block;
  font-size: .8rem;
  opacity: .7;
  margin-top: 2px;
}

/* Mobile */
@media (max-width: 600px) {
  .includes-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= CONTAINER ================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.paquete-detail section {
  margin-bottom: 60px;
}
.paquete-map iframe {
  width: 100%;
  border-radius: 18px;
}
/* ================= BADGE HERO ================= */

.paquete-hero-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #f57456;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ================= CTA HERO ================= */

.paquete-cta {
  margin: 60px 0;
  text-align: center;
}

.paquete-hero-cta {
  display: inline-block;
  background: #3b75f1;
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
}

.paquete-hero-cta:hover {
  transform: translateY(-2.5px);
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
}


/* Mobile */
/* ================================
   CTA STICKY – SOLO MOBILE
================================ */
@media (max-width: 768px) {

  .paquete-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    margin: 0;
    padding: 12px 16px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    box-shadow: 0 -6px 20px rgba(0,0,0,.12);
  }

  .paquete-hero-cta {
    width: 100%;
    max-width: none;
    border-radius: 14px;
    font-size: 1.05rem;
    padding: 16px;
  }

  /* 🔒 evita que tape el contenido */
  .paquete-detail {
    padding-bottom: 90px;
  }
}
