/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.9
	Stable tag: 3.4.9
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
/* =========================================================
   PARQUE TAYRONA — BASE GLOBAL
   ========================================================= */

:root {
  --pt-color-primary: #3f5465;
  --pt-color-accent: #ffb607;
  --pt-color-dark: #2d2d2d;
  --pt-color-light: #faf9f6;
  --pt-color-white: #ffffff;

  --pt-font-heading: "Playfair Display", Georgia, serif;
  --pt-font-body: "Montserrat", Arial, sans-serif;

  --pt-container-width: 1280px;
  --pt-page-padding: 32px;
  --pt-radius-large: 24px;

  --pt-transition: 300ms ease;
}

.pt-container {
  width: min(
    calc(100% - (var(--pt-page-padding) * 2)),
    var(--pt-container-width)
  );
  margin-inline: auto;
}

.pt-eyebrow {
  margin: 0;
  color: var(--pt-color-primary);
  font-family: var(--pt-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.pt-section-heading {
  max-width: 1100px;
  margin-inline: auto;
  text-align: center;
}

.pt-section-title {
  margin: 18px 0 8px;
  color: var(--pt-color-primary);
  font-family: var(--pt-font-heading);
  font-size: clamp(44px, 4.7vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pt-section-description {
  margin: 0;
  color: rgb(45 45 45 / 70%);
  font-family: var(--pt-font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.625;
}

/* =========================================================
   COMPARATIVA: TAYRONA VS. SANTA MARTA
   ========================================================= */

.pt-comparison {
  position: relative;
  overflow: hidden;
  padding: 70px 0 134px;
  background: var(--pt-color-light);
}

.pt-comparison__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 544px));
  justify-content: center;
  gap: 64px;
  margin-top: 80px;
}

.pt-comparison-card {
  min-width: 0;
}

.pt-comparison-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: var(--pt-radius-large);
  background: #e8e8e8;
}

.pt-comparison-card--featured .pt-comparison-card__media {
  box-shadow: 0 0 0 2px var(--pt-color-accent);
}

.pt-comparison-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter var(--pt-transition);
}

.pt-comparison-card:hover .pt-comparison-card__media img {
  transform: scale(1.035);
}

.pt-comparison-card__content {
  padding-top: 32px;
}

.pt-comparison-card__badge {
  display: table;
  margin: 0 0 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--pt-color-accent);
  color: var(--pt-color-dark);
  font-family: var(--pt-font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pt-comparison-card__title {
  margin: 0 0 16px;
  color: var(--pt-color-dark);
  font-family: var(--pt-font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.pt-comparison-card--featured .pt-comparison-card__title {
  color: var(--pt-color-primary);
}

.pt-comparison-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pt-comparison-card__list li {
  margin: 0;
  padding: 0;
  color: var(--pt-color-dark);
  font-family: var(--pt-font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.pt-comparison-card__note {
  margin: 28px 0 0;
  color: var(--pt-color-primary);
  font-family: var(--pt-font-body);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
  :root {
    --pt-page-padding: 28px;
  }

  .pt-comparison {
    padding: 72px 0 96px;
  }

  .pt-comparison__grid {
    gap: 40px;
    margin-top: 64px;
  }

  .pt-section-description {
    font-size: 18px;
  }

  .pt-comparison-card__title {
    font-size: 32px;
  }

  .pt-comparison-card__list li {
    font-size: 16px;
    line-height: 26px;
  }
}

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

@media (max-width: 767px) {
  :root {
    --pt-page-padding: 20px;
    --pt-radius-large: 16px;
  }

  .pt-comparison {
    padding: 64px 0 72px;
  }

  .pt-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
  }

  .pt-section-title {
    margin-top: 16px;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.05;
  }

  .pt-section-description {
    max-width: 340px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.6;
  }

  .pt-comparison__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
    margin-top: 48px;
  }

  .pt-comparison-card__content {
    padding-top: 24px;
  }

  .pt-comparison-card__badge {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .pt-comparison-card__title {
    margin-bottom: 14px;
    font-size: 30px;
  }

  .pt-comparison-card__list {
    gap: 8px;
  }

  .pt-comparison-card__list li {
    font-size: 15px;
    line-height: 24px;
  }

  .pt-comparison-card__note {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.6;
  }
}

/* =========================================================
   CÓMO LLEGAR
   ========================================================= */

.pt-location {
  position: relative;
  overflow: hidden;
  padding: 150px 0 140px;
  background: var(--pt-color-primary);
}

.pt-section-heading--light .pt-section-title {
  color: var(--pt-color-light);
}

.pt-section-heading--light .pt-section-description {
  max-width: 672px;
  margin-inline: auto;
  color: rgb(250 249 246 / 70%);
  font-weight: 500;
}

.pt-eyebrow--accent {
  color: var(--pt-color-accent);
  font-weight: 600;
}

/* Panel principal */

.pt-location__panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  width: min(100%, 1152px);
  margin: 80px auto 0;
  padding: 80px;
  border-radius: 24px;
  background: rgb(250 249 246 / 5%);
}

.pt-location__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pt-location__divider {
  position: absolute;
  top: 54px;
  bottom: 54px;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgb(250 249 246 / 12%) 22%,
    rgb(250 249 246 / 12%) 78%,
    transparent
  );
}

/* Elementos individuales */

.pt-location-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  min-height: 108px;
}

.pt-location-item__icon {
  display: grid;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid rgb(250 249 246 / 30%);
  border-radius: 50%;
  transition:
    border-color var(--pt-transition),
    background-color var(--pt-transition),
    transform var(--pt-transition);
}

.pt-location-item__icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.pt-location-item__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}

.pt-location-item__title {
  margin: 0;
  color: var(--pt-color-light);
  font-family: var(--pt-font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.pt-location-item__description {
  margin: 0;
  color: rgb(250 249 246 / 60%);
  font-family: var(--pt-font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.pt-location-item__time {
  margin: 8px 0 0;
  color: rgb(250 249 246 / 40%);
  font-family: var(--pt-font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

/* Destinos destacados */

.pt-location-item--featured .pt-location-item__icon {
  border-color: var(--pt-color-accent);
  background: rgb(255 182 7 / 10%);
}

.pt-location-item--featured .pt-location-item__content {
  padding-top: 9px;
}

.pt-location-item--featured .pt-location-item__description {
  color: rgb(250 249 246 / 80%);
}

.pt-location-item__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgb(255 182 7 / 20%);
  color: var(--pt-color-accent);
  font-family: var(--pt-font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pt-location-item__time--accent {
  color: var(--pt-color-accent);
}

.pt-location-item:hover .pt-location-item__icon {
  transform: translateY(-3px);
  border-color: var(--pt-color-accent);
}

.pt-location-item--featured:hover .pt-location-item__icon {
  background: rgb(255 182 7 / 18%);
}

/* Aeropuerto */

.pt-location__airport {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  color: rgb(250 249 246 / 50%);
}

.pt-location__airport img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.pt-location__airport p {
  margin: 0;
  font-family: var(--pt-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
  .pt-location {
    padding: 110px 0 100px;
  }

  .pt-location__panel {
    gap: 56px;
    margin-top: 64px;
    padding: 64px 48px;
  }

  .pt-location__divider {
    top: 44px;
    bottom: 44px;
  }
}

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

@media (max-width: 767px) {
  .pt-location {
    padding: 72px 0;
  }

  .pt-location .pt-section-title {
    font-size: clamp(38px, 11vw, 52px);
  }

  .pt-location__panel {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 48px;
    padding: 32px 24px;
    border-radius: 18px;
  }

  .pt-location__column {
    gap: 28px;
  }

  .pt-location__column + .pt-location__column {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgb(250 249 246 / 10%);
  }

  .pt-location__divider {
    display: none;
  }

  .pt-location-item {
    gap: 18px;
    min-height: auto;
  }

  .pt-location-item__icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .pt-location-item__icon img {
    width: 28px;
    height: 28px;
  }

  .pt-location-item__content {
    padding-top: 3px;
  }

  .pt-location-item--featured .pt-location-item__content {
    padding-top: 0;
  }

  .pt-location-item__title {
    font-size: 22px;
    line-height: 28px;
  }

  .pt-location-item__description {
    font-size: 14px;
    line-height: 22px;
  }

  .pt-location-item__time {
    margin-top: 5px;
    font-size: 12px;
  }

  .pt-location-item__badge {
    min-height: 20px;
    margin-bottom: 3px;
    padding: 2px 9px;
    font-size: 9px;
    line-height: 16px;
  }

  .pt-location__airport {
    align-items: flex-start;
    margin-top: 32px;
    padding-inline: 12px;
  }

  .pt-location__airport img {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
  }

  .pt-location__airport p {
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 0.04em;
    text-align: left;
  }
}

/* =========================================================
   ZONAS — ESTILOS COMPARTIDOS
   ========================================================= */

.pt-zone {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  background: var(--pt-color-light);
}

.pt-zone__hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 549;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #e5e5e5;
}

.pt-zone__hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pt-zone__hero:hover img {
  transform: scale(1.025);
}

/* Encabezado */

.pt-zone__heading {
  max-width: 900px;
  margin: 64px auto 0;
  text-align: center;
}

.pt-zone__title {
  margin: 0;
  color: var(--pt-color-dark);
  font-family: var(--pt-font-heading);
  font-size: clamp(64px, 6.25vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.pt-zone__subtitle {
  margin: 16px 0 0;
  color: var(--pt-color-primary);
  font-family: var(--pt-font-body);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
}

.pt-zone__description {
  max-width: 768px;
  margin: 32px auto 0;
  color: rgb(45 45 45 / 70%);
  font-family: var(--pt-font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.625;
}

/* Etiquetas */

.pt-zone__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.pt-zone__features li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  padding: 10px 21px;
  border: 1px solid rgb(63 84 101 / 20%);
  border-radius: 999px;
  background: rgb(63 84 101 / 10%);
  color: var(--pt-color-primary);
  font-family: var(--pt-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition:
    color var(--pt-transition),
    border-color var(--pt-transition),
    background-color var(--pt-transition),
    transform var(--pt-transition);
}

.pt-zone__features li:hover {
  transform: translateY(-2px);
  border-color: var(--pt-color-primary);
  background: var(--pt-color-primary);
  color: var(--pt-color-light);
}

/* Tarjetas de hoteles */

.pt-zone__hotels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 496px));
  justify-content: center;
  gap: 32px;
  margin-top: 80px;
}

.pt-zone-hotel {
  display: flex;
  min-height: 283px;
  flex-direction: column;
  padding: 40px;
  border: 1px solid transparent;
  border-radius: 24px;
  background: rgb(63 84 101 / 5%);
  transition:
    transform var(--pt-transition),
    border-color var(--pt-transition),
    box-shadow var(--pt-transition);
}

.pt-zone-hotel:hover {
  transform: translateY(-5px);
  border-color: rgb(63 84 101 / 10%);
  box-shadow: 0 20px 45px rgb(45 45 45 / 8%);
}

.pt-zone-hotel__title {
  margin: 0;
  color: var(--pt-color-dark);
  font-family: var(--pt-font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.pt-zone-hotel__description {
  margin: 24px 0;
  color: rgb(45 45 45 / 70%);
  font-family: var(--pt-font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.625;
}

/* Botón compartido */

.pt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--pt-color-accent);
  color: var(--pt-color-dark);
  font-family: var(--pt-font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  transition:
    color var(--pt-transition),
    background-color var(--pt-transition),
    box-shadow var(--pt-transition),
    transform var(--pt-transition);
}

.pt-button:hover,
.pt-button:focus-visible {
  transform: scale(0.98);
  background: var(--pt-color-primary);
  color: var(--pt-color-light);
  text-decoration: none;
  box-shadow: 0 14px 30px rgb(63 84 101 / 20%);
}

.pt-button:focus-visible {
  outline: 3px solid rgb(255 182 7 / 40%);
  outline-offset: 4px;
}

.pt-zone-hotel__button {
  width: 100%;
  margin-top: auto;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
  .pt-zone {
    padding: 110px 0;
  }

  .pt-zone__heading {
    margin-top: 52px;
  }

  .pt-zone__subtitle {
    font-size: 25px;
  }

  .pt-zone__description {
    font-size: 18px;
  }

  .pt-zone__hotels {
    gap: 24px;
    margin-top: 64px;
  }

  .pt-zone-hotel {
    padding: 32px;
  }
}

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

@media (max-width: 767px) {
  .pt-zone {
    padding: 72px 0;
  }

  .pt-zone__hero {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .pt-zone__heading {
    margin-top: 40px;
  }

  .pt-zone__title {
    font-size: clamp(52px, 17vw, 72px);
    line-height: 1;
  }

  .pt-zone__subtitle {
    max-width: 310px;
    margin: 14px auto 0;
    font-size: 21px;
    line-height: 1.4;
  }

  .pt-zone__description {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.7;
  }

  .pt-zone__features {
    gap: 8px;
    margin-top: 32px;
  }

  .pt-zone__features li {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 0.04em;
  }

  .pt-zone__hotels {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
  }

  .pt-zone-hotel {
    min-height: 250px;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .pt-zone-hotel__title {
    font-size: 26px;
    line-height: 32px;
  }

  .pt-zone-hotel__description {
    margin: 18px 0 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .pt-button {
    min-height: 52px;
    padding: 12px 22px;
    font-size: 15px;
    line-height: 24px;
  }
}
/* =========================================================
   ZONA — LOS NARANJOS
   ========================================================= */

.pt-zone--naranjos {
  padding-top: 144px;
  background: var(--pt-color-primary);
}

.pt-zone--naranjos .pt-zone__title {
  color: var(--pt-color-light);
}

.pt-zone--naranjos .pt-zone__subtitle {
  color: var(--pt-color-accent);
}

.pt-zone--naranjos .pt-zone__description {
  color: rgb(250 249 246 / 80%);
}

.pt-zone--naranjos .pt-zone__features li {
  border-color: rgb(250 249 246 / 20%);
  background: rgb(250 249 246 / 10%);
  color: rgb(250 249 246 / 90%);
}

.pt-zone--naranjos .pt-zone__features li:hover {
  border-color: var(--pt-color-accent);
  background: var(--pt-color-accent);
  color: var(--pt-color-dark);
}

.pt-zone--naranjos .pt-zone-hotel {
  border-color: transparent;
  background: #029da5;
}

.pt-zone--naranjos .pt-zone-hotel:hover {
  border-color: rgb(250 249 246 / 20%);
  box-shadow: 0 22px 50px rgb(0 0 0 / 16%);
}

.pt-zone--naranjos .pt-zone-hotel__title {
  color: var(--pt-color-light);
}

.pt-zone--naranjos .pt-zone-hotel__description {
  color: rgb(250 249 246 / 80%);
}

.pt-zone--naranjos .pt-zone-hotel .pt-button:hover,
.pt-zone--naranjos .pt-zone-hotel .pt-button:focus-visible {
  background: var(--pt-color-light);
  color: var(--pt-color-primary);
}

/* Tablet */

@media (max-width: 1024px) {
  .pt-zone--naranjos {
    padding-top: 110px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .pt-zone--naranjos {
    padding-top: 72px;
  }

  .pt-zone--naranjos .pt-zone__subtitle {
    max-width: 340px;
  }
}

/* =========================================================
   EXPERIENCIA ÚNICA
   ========================================================= */

.pt-experience {
  position: relative;
  display: flex;
  min-height: 952px;
  overflow: hidden;
  align-items: center;
  background: var(--pt-color-primary);
  isolation: isolate;
}

.pt-experience__background,
.pt-experience__overlay {
  position: absolute;
  inset: 0;
}

.pt-experience__background {
  z-index: -3;
  background-image: url("https://dondedormir.parquetayrona.com/wp-content/uploads/2026/07/imagen-de-fondo-experiencia-unica-parque-tayrona.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pt-experience__overlay {
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgb(0 0 0 / 22%) 0%,
      rgb(0 0 0 / 38%) 50%,
      rgb(0 0 0 / 55%) 100%
    ),
    linear-gradient(
      90deg,
      rgb(0 0 0 / 14%) 0%,
      transparent 50%,
      rgb(0 0 0 / 14%) 100%
    );
}

.pt-experience:hover .pt-experience__background {
  transform: scale(1.025);
}

.pt-experience__container {
  display: flex;
  min-height: 952px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 120px;
}

.pt-experience__heading {
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.pt-experience__eyebrow {
  margin: 0 0 24px;
  color: var(--pt-color-accent);
  font-family: var(--pt-font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.pt-experience__title {
  margin: 0;
  color: var(--pt-color-light);
  font-family: var(--pt-font-heading);
  font-size: clamp(70px, 6.25vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
}

.pt-experience__title span {
  display: block;
}

.pt-experience__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 224px));
  justify-content: center;
  gap: 48px;
  width: 100%;
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
}

.pt-experience__features li {
  position: relative;
  margin: 0;
  padding-top: 24px;
  color: var(--pt-color-light);
  font-family: var(--pt-font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}

.pt-experience__features li::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--pt-color-accent);
  content: "";
  transform: translateX(-50%);
  transition: width var(--pt-transition);
}

.pt-experience__features li:hover::before {
  width: 64px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
  .pt-experience,
  .pt-experience__container {
    min-height: 800px;
  }

  .pt-experience__container {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .pt-experience__title {
    font-size: clamp(60px, 8vw, 78px);
  }

  .pt-experience__features {
    gap: 28px;
    margin-top: 64px;
  }

  .pt-experience__features li {
    font-size: 16px;
    line-height: 26px;
  }
}

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

@media (max-width: 767px) {
  .pt-experience,
  .pt-experience__container {
    min-height: 720px;
  }

  .pt-experience__background {
    background-position: 57% center;
  }

  .pt-experience__overlay {
    background:
      linear-gradient(
        180deg,
        rgb(0 0 0 / 30%) 0%,
        rgb(0 0 0 / 42%) 50%,
        rgb(0 0 0 / 66%) 100%
      );
  }

  .pt-experience__container {
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .pt-experience__eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 0.28em;
  }

  .pt-experience__title {
    font-size: clamp(45px, 13vw, 62px);
    line-height: 1.04;
  }

  .pt-experience__features {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 300px;
    margin-top: 56px;
  }

  .pt-experience__features li {
    padding-top: 14px;
    font-size: 14px;
    line-height: 22px;
  }

  .pt-experience__features li::before {
    width: 24px;
  }
}

/* Reduce animaciones si el usuario lo solicita */

@media (prefers-reduced-motion: reduce) {
  .pt-experience__background,
  .pt-experience__features li::before {
    transition: none;
  }

  .pt-experience:hover .pt-experience__background {
    transform: none;
  }
}

/* =========================================================
   DÓNDE ALOJARSE
   ========================================================= */

.pt-hotels {
  position: relative;
  overflow: hidden;
  padding: 96px 0 120px;
  background: var(--pt-color-light);
}

.pt-hotels .pt-section-description {
  max-width: 672px;
  margin-inline: auto;
}

/* =========================================================
   HOTEL DESTACADO
   ========================================================= */

.pt-hotel-featured {
  display: grid;
  grid-template-columns: minmax(0, 616px) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  margin-top: 80px;
}

.pt-hotel-featured__media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #e5e5e5;
}

.pt-hotel-featured__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pt-hotel-featured:hover .pt-hotel-featured__media img {
  transform: scale(1.035);
}

.pt-hotel-featured__content {
  display: flex;
  max-width: 584px;
  flex-direction: column;
  align-items: flex-start;
}

.pt-hotel__location {
  margin: 0;
  color: var(--pt-color-accent);
  font-family: var(--pt-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pt-hotel-featured__title {
  margin: 16px 0 0;
  color: var(--pt-color-primary);
  font-family: var(--pt-font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.pt-hotel-featured__description {
  margin: 16px 0 0;
  color: rgb(45 45 45 / 70%);
  font-family: var(--pt-font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.625;
}

.pt-hotel-featured__button {
  width: auto;
  min-width: 172px;
  min-height: 56px;
  margin-top: 32px;
  padding: 14px 32px;
  font-size: 16px;
  line-height: 24px;
}

/* =========================================================
   CUADRÍCULA DE HOTELES
   ========================================================= */

.pt-hotels__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-top: 80px;
}

.pt-hotel-card {
  min-width: 0;
}

.pt-hotel-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  background: #e5e5e5;
}

.pt-hotel-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgb(0 0 0 / 12%) 100%
  );
  content: "";
  opacity: 0;
  transition: opacity var(--pt-transition);
}

.pt-hotel-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter var(--pt-transition);
}

.pt-hotel-card:hover .pt-hotel-card__media img {
  transform: scale(1.045);
}

.pt-hotel-card:hover .pt-hotel-card__media::after {
  opacity: 1;
}

.pt-hotel-card__content {
  padding-top: 24px;
}

.pt-hotel-card .pt-hotel__location {
  font-size: 12px;
  line-height: 16px;
}

.pt-hotel-card__title {
  margin: 12px 0 0;
  color: var(--pt-color-primary);
  font-family: var(--pt-font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.pt-hotel-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--pt-transition);
}

.pt-hotel-card__title a:hover,
.pt-hotel-card__title a:focus-visible {
  color: #029da5;
}

.pt-hotel-card__description {
  margin: 12px 0 0;
  color: rgb(45 45 45 / 70%);
  font-family: var(--pt-font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
  .pt-hotels {
    padding: 88px 0 100px;
  }

  .pt-hotel-featured {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    margin-top: 64px;
  }

  .pt-hotel-featured__title {
    font-size: 40px;
  }

  .pt-hotel-featured__description {
    font-size: 17px;
  }

  .pt-hotels__grid {
    gap: 28px;
    margin-top: 64px;
  }
}

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

@media (max-width: 767px) {
  .pt-hotels {
    padding: 72px 0;
  }

  .pt-hotel-featured {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
  }

  .pt-hotel-featured__media {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .pt-hotel-featured__content {
    align-items: flex-start;
  }

  .pt-hotel__location {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.16em;
  }

  .pt-hotel-featured__title {
    margin-top: 12px;
    font-size: 38px;
    line-height: 1.05;
  }

  .pt-hotel-featured__description {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.7;
  }

  .pt-hotel-featured__button {
    width: 100%;
    margin-top: 24px;
  }

  .pt-hotels__grid {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-top: 64px;
  }

  .pt-hotel-card__media {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }

  .pt-hotel-card__content {
    padding-top: 20px;
  }

  .pt-hotel-card__title {
    margin-top: 8px;
    font-size: 26px;
    line-height: 32px;
  }

  .pt-hotel-card__description {
    margin-top: 8px;
    font-size: 15px;
    line-height: 24px;
  }
}

/* =========================================================
   CTA FINAL — ELIGE TU REFUGIO
   ========================================================= */

.pt-final-cta {
  position: relative;
  display: flex;
  min-height: 877px;
  overflow: hidden;
  align-items: center;
  background: var(--pt-color-primary);
  isolation: isolate;
}

.pt-final-cta__background,
.pt-final-cta__overlay {
  position: absolute;
  inset: 0;
}

.pt-final-cta__background {
  z-index: -3;
  background-image: url("https://dondedormir.parquetayrona.com/wp-content/uploads/2026/07/parquea-tayrona.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pt-final-cta__overlay {
  z-index: -2;
  background:
    linear-gradient(
      0deg,
      rgb(63 84 101 / 85%) 0%,
      rgb(63 84 101 / 40%) 50%,
      rgb(63 84 101 / 60%) 100%
    );
}

.pt-final-cta:hover .pt-final-cta__background {
  transform: scale(1.025);
}

.pt-final-cta__container {
  display: flex;
  min-height: 877px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 110px;
}

/* Encabezado */

.pt-final-cta__heading {
  width: 100%;
  max-width: 1024px;
  text-align: center;
}

.pt-final-cta__eyebrow {
  margin: 0;
  color: var(--pt-color-accent);
  font-family: var(--pt-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.pt-final-cta__title {
  margin: 24px 0 0;
  color: var(--pt-color-light);
  font-family: var(--pt-font-heading);
  font-size: clamp(72px, 6.25vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
}

.pt-final-cta__title span {
  display: block;
}

.pt-final-cta__description {
  max-width: 768px;
  margin: 24px auto 0;
  color: rgb(250 249 246 / 90%);
  font-family: var(--pt-font-body);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.625;
}

/* Características */

.pt-final-cta__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, auto));
  justify-content: center;
  gap: 32px;
  width: 100%;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.pt-final-cta__features li {
  display: flex;
  min-width: 120px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--pt-color-light);
  font-family: var(--pt-font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
}

.pt-final-cta__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid rgb(250 249 246 / 40%);
  border-radius: 50%;
  background: rgb(250 249 246 / 5%);
  transition:
    border-color var(--pt-transition),
    background-color var(--pt-transition),
    transform var(--pt-transition);
}

.pt-final-cta__icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.pt-final-cta__features li:hover .pt-final-cta__icon {
  transform: translateY(-4px);
  border-color: var(--pt-color-accent);
  background: rgb(255 182 7 / 12%);
}

/* Botones */

.pt-final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.pt-final-cta__primary {
  min-width: 186px;
  min-height: 72px;
  padding: 20px 32px;
  font-weight: 700;
}

.pt-final-cta__secondary {
  display: inline-flex;
  min-width: 289px;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border: 2px solid var(--pt-color-light);
  border-radius: 999px;
  background: transparent;
  color: var(--pt-color-light);
  font-family: var(--pt-font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  transition:
    color var(--pt-transition),
    border-color var(--pt-transition),
    background-color var(--pt-transition),
    transform var(--pt-transition);
}

.pt-final-cta__secondary:hover,
.pt-final-cta__secondary:focus-visible {
  transform: scale(0.98);
  border-color: var(--pt-color-accent);
  background: var(--pt-color-accent);
  color: var(--pt-color-dark);
  text-decoration: none;
}

.pt-final-cta__secondary:focus-visible {
  outline: 3px solid rgb(255 182 7 / 40%);
  outline-offset: 4px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
  .pt-final-cta,
  .pt-final-cta__container {
    min-height: 800px;
  }

  .pt-final-cta__title {
    font-size: clamp(60px, 8vw, 78px);
  }

  .pt-final-cta__description {
    font-size: 20px;
  }

  .pt-final-cta__features {
    gap: 20px;
  }
}

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

@media (max-width: 767px) {
  .pt-final-cta {
    min-height: auto;
  }

  .pt-final-cta__background {
    background-position: center;
  }

  .pt-final-cta__overlay {
    background: linear-gradient(
      0deg,
      rgb(63 84 101 / 92%) 0%,
      rgb(63 84 101 / 58%) 52%,
      rgb(63 84 101 / 72%) 100%
    );
  }

  .pt-final-cta__container {
    min-height: 760px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .pt-final-cta__eyebrow {
    font-size: 11px;
    letter-spacing: 0.25em;
  }

  .pt-final-cta__title {
    margin-top: 20px;
    font-size: clamp(46px, 13vw, 62px);
    line-height: 1.04;
  }

  .pt-final-cta__description {
    max-width: 340px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.65;
  }

  .pt-final-cta__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
    max-width: 360px;
    margin-top: 40px;
  }

  .pt-final-cta__features li {
    min-width: 0;
    font-size: 12px;
    line-height: 18px;
  }

  .pt-final-cta__icon {
    width: 56px;
    height: 56px;
  }

  .pt-final-cta__icon img {
    width: 28px;
    height: 28px;
  }

  .pt-final-cta__actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
  }

  .pt-final-cta__primary,
  .pt-final-cta__secondary {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 14px 24px;
    font-size: 15px;
    line-height: 24px;
  }
}

/* Accesibilidad */

@media (prefers-reduced-motion: reduce) {
  .pt-final-cta__background,
  .pt-final-cta__icon,
  .pt-final-cta__secondary {
    transition: none;
  }

  .pt-final-cta:hover .pt-final-cta__background,
  .pt-final-cta__features li:hover .pt-final-cta__icon {
    transform: none;
  }
}
/* =========================================================
   FOOTER PRINCIPAL
   ========================================================= */

.pt-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  border-top: 1px solid rgb(250 249 246 / 10%);
  background: var(--pt-color-primary);
}

.pt-footer__container {
  display: flex;
  max-width: 896px;
  flex-direction: column;
  align-items: center;
}

.pt-footer__brand {
  text-align: center;
}

.pt-footer__logo {
  display: inline-block;
  color: var(--pt-color-light);
  font-family: var(--pt-font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-decoration: none;
  transition:
    color var(--pt-transition),
    transform var(--pt-transition);
}

.pt-footer__logo:hover,
.pt-footer__logo:focus-visible {
  transform: translateY(-2px);
  color: var(--pt-color-accent);
  text-decoration: none;
}

.pt-footer__logo:focus-visible {
  outline: 2px solid var(--pt-color-accent);
  outline-offset: 6px;
}

.pt-footer__tagline {
  margin: 32px 0 0;
  color: rgb(250 249 246 / 70%);
  font-family: var(--pt-font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.625;
}

/* Navegación */

.pt-footer__navigation {
  margin-top: 32px;
}

.pt-footer__navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pt-footer__navigation li {
  margin: 0;
  padding: 0;
}

.pt-footer__navigation a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  color: rgb(250 249 246 / 60%);
  font-family: var(--pt-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--pt-transition);
}

.pt-footer__navigation a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--pt-color-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--pt-transition);
}

.pt-footer__navigation a:hover,
.pt-footer__navigation a:focus-visible {
  color: var(--pt-color-light);
  text-decoration: none;
}

.pt-footer__navigation a:hover::after,
.pt-footer__navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Franja inferior */

.pt-footer__bottom {
  width: 100%;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgb(250 249 246 / 8%);
  text-align: center;
}

.pt-footer__bottom p {
  margin: 0;
  color: rgb(250 249 246 / 40%);
  font-family: var(--pt-font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

@media (max-width: 767px) {
  .pt-footer {
    padding: 64px 0 48px;
  }

  .pt-footer__logo {
    font-size: 30px;
    line-height: 36px;
  }

  .pt-footer__tagline {
    max-width: 320px;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .pt-footer__navigation {
    margin-top: 28px;
  }

  .pt-footer__navigation ul {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .pt-footer__navigation a {
    font-size: 12px;
    line-height: 18px;
  }

  .pt-footer__bottom {
    margin-top: 28px;
    padding-top: 28px;
  }

  .pt-footer__bottom p {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}

/* Accesibilidad */

@media (prefers-reduced-motion: reduce) {
  .pt-footer__logo,
  .pt-footer__navigation a,
  .pt-footer__navigation a::after {
    transition: none;
  }
}

/* =========================================================
   SELECTOR DE IDIOMA ES / EN
   ========================================================= */

.pt-language-switcher {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgb(250 249 246 / 20%);
  border-radius: 999px;
  background: transparent;
}

.pt-language-switcher__link {
  display: inline-flex;
  min-width: 54px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  color: rgb(250 249 246 / 60%);
  font-family: var(--pt-font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition:
    color var(--pt-transition),
    background-color var(--pt-transition);
}

.pt-language-switcher__link:hover {
  color: var(--pt-color-light);
  text-decoration: none;
}

.pt-language-switcher__link.is-active {
  background: var(--pt-color-accent);
  color: var(--pt-color-dark);
}

.pt-language-switcher__link:focus-visible {
  outline: 2px solid var(--pt-color-accent);
  outline-offset: -2px;
}

/* Versión móvil */

@media (max-width: 767px) {
  .pt-language-switcher {
    height: 36px;
  }

  .pt-language-switcher__link {
    min-width: 44px;
    height: 34px;
    padding: 5px 12px;
    font-size: 13px;
    line-height: 20px;
  }
}