/* ------------------------------------------------------------------
   Estilos landing page â€” Temporada
   Paleta alineada con css/vd24.css (teal #50777f, texto #575757,
   acento cian #17d0ff). Los tonos se centralizan como variables y los
   relativos se derivan de la misma escala con color-mix().
   ------------------------------------------------------------------ */

:root {
  /* Paleta base â€” misma escala que css/vd24.css */
  --vd-teal: #50777f;
  --vd-texto: #575757;
  --vd-cian: #17d0ff;

  /* Relativo derivado dentro de la misma escala (con fallback) */
  --vd-texto-suave: #767676;
  --vd-texto-suave: color-mix(in srgb, var(--vd-texto) 72%, #fff);

  /* Marca externa (no pertenece a la paleta del sitio): verde WhatsApp */
  --wa-green: #25d366;
}

.tmp-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --- Hero --- */
.tmp-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--vd-teal);
  padding: 0 20px;
}

.tmp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

.tmp-hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 50px 10px 40px 10px;
  max-width: 680px;
  width: 100%;
}

.tmp-hero__body h1 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: -1px 1px 4px rgba(0, 0, 0, 0.6);
}

.tmp-hero__body .tmp-precio {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--vd-cian);
  margin-bottom: 14px;
}

.tmp-hero__body .tmp-desc {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* --- Botones CTA --- */
.tmp-acciones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tmp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.2s;
  border: none;
  white-space: nowrap;
}

.tmp-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.tmp-btn--primario {
  background: var(--vd-teal);
  color: #fff;
}

.tmp-btn--whatsapp {
  background: var(--wa-green);
  color: #fff;
}

.tmp-btn .material-icons {
  font-size: 22px;
}

/* --- Seccion de contenido --- */
.tmp-seccion {
  max-width: 1024px;
  margin: 0 auto;
  padding: 40px 20px;
  width: 100%;
}

.tmp-seccion h2 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--vd-teal);
  margin-bottom: 18px;
}

.tmp-seccion p {
  font-size: 1.8rem;
  line-height: 1.65;
  color: var(--vd-texto);
  text-align: left;
  margin-bottom: 12px;
  font-weight: 500;
}

.tmp-detalles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  /* max-width: 1024px; */
  /* margin: 0 auto; */
  /* padding: 40px 20px; */
  width: 100%;
}

.tmp-detalle {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tmp-detalle .material-icons {
  font-size: 30px;
  color: var(--vd-teal);
  margin-bottom: 8px;
}

.tmp-detalle span {
  display: block;
  font-size: 0.85rem;
  color: var(--vd-texto-suave);
}

.tmp-detalle strong {
  display: block;
  font-size: 1.05rem;
  color: var(--vd-texto);
  margin-top: 2px;
}

/* --- Paquete incluido --- */
.tmp-incluye {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.tmp-incluye h3 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 1.6rem;
  color: var(--vd-teal);
  margin-bottom: 12px;
}

.tmp-incluye p {
  white-space: pre-line;
  font-size: 16px;
}

/* Miniaturas del paquete (hotel) clicables */
.tmp-incluye img {
  cursor: zoom-in;
  transition: transform .15s ease, box-shadow .15s ease;
}

.tmp-incluye img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* Modal / lightbox de imagen */
.img-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.img-modal.is-open {
  display: flex;
}

.img-modal__img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.img-modal__close {
  position: absolute;
  top: 14px;
  right: 24px;
  color: #fff;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

/* --- Relacionadas --- */
.tmp-relacionadas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.tmp-card {
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 240px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.tmp-card:hover {
  transform: translateY(-4px);
}

.tmp-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.tmp-card__body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.tmp-card__body h4 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 1.3rem;
  color: var(--vd-teal);
  margin-bottom: 6px;
}

.tmp-card__body p {
  font-size: 0.85rem;
  color: var(--vd-texto);
  line-height: 1.4;
  flex: 1;
}

.tmp-card__body .tmp-precio-chico {
  font-weight: 700;
  color: var(--vd-teal);
  font-size: 1.1rem;
  margin-top: 10px;
}

/* --- Estado vacio --- */
.tmp-vacio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  flex: 1;
}

.tmp-vacio .material-icons {
  font-size: 64px;
  color: var(--vd-teal);
  margin-bottom: 16px;
}

.tmp-vacio h2 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 2rem;
  color: var(--vd-texto);
  margin-bottom: 8px;
}

.tmp-vacio p {
  color: var(--vd-texto-suave);
  max-width: 400px;
}

/* --- Responsive --- */
@media (min-width: 300px) and (max-width: 519px) {
  .tmp-hero {
    min-height: 340px;
  }

  .tmp-hero__body {
    padding: 36px 6px 28px 6px;
  }

  .tmp-acciones {
    flex-direction: column;
    align-items: stretch;
  }

  .tmp-btn {
    justify-content: center;
  }

  .tmp-seccion {
    padding: 28px 14px;
  }
}

@media (min-width: 520px) and (max-width: 950px) {
  .tmp-hero {
    min-height: 380px;
  }
}