:root {
  --tz-blue-950: #032a58;
  --tz-blue-900: #0a3264;
  --tz-blue-800: #0f3d77;
  --tz-blue-700: #194e93;
  --tz-blue-100: #e8f0fb;
  --tz-orange-500: #f1842f;
  --tz-orange-600: #e47018;
  --tz-text: #0f2850;
  --tz-muted: #5b6f8a;
  --tz-border: #dbe4ef;
  --tz-page: #f6f8fb;
}

body.tz-itc-template {
  margin: 0;
  background: var(--tz-page);
  color: var(--tz-text);
  font-family: "Poppins", "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.tz-shell {
  width: min(1248px, 92%);
  margin: 0 auto;
}

.tz-top-bar {
  background: var(--tz-blue-900);
  color: #e8f1ff;
  font-size: 13px;
}

.tz-top-bar .tz-shell,
.tz-site-header .tz-shell,
.tz-home-hero .tz-shell {
  width: 100%;
  max-width: none;
  padding-left: 46px;
  padding-right: 46px;
}

.tz-top-bar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tz-top-bar-left,
.tz-top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tz-top-bar-left a,
.tz-top-bar-right a {
  color: #eff5ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tz-top-bar-right a {
  width: 20px;
  height: 20px;
  justify-content: center;
}

.tz-top-bar-right > span {
  font-weight: 500;
}

.tz-top-bar a:hover {
  color: #ffffff;
}

.tz-site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #ffffff;
  border-bottom: 1px solid var(--tz-border);
  box-shadow: 0 12px 26px rgba(5, 30, 65, 0.08);
}

.tz-site-header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.tz-site-logo img {
  width: 254px;
  height: auto;
  max-width: 100%;
  display: block;
}

.tz-main-nav {
  justify-self: center;
}

.tz-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}

.tz-menu-list > li {
  position: relative;
}

.tz-menu-list > li > a {
  text-decoration: none;
  color: var(--tz-text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-synthesis: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 30px 0;
  display: inline-flex;
  align-items: center;
}

.tz-menu-list > li.current-menu-item > a,
.tz-menu-list > li.current_page_item > a,
.tz-menu-list > li.current-menu-parent > a,
.tz-menu-list > li > a:hover {
  color: var(--tz-orange-500);
}

.tz-menu-list > li.current-menu-item > a::after,
.tz-menu-list > li.current_page_item > a::after,
.tz-menu-list > li.current-menu-parent > a::after,
.tz-menu-list > li > a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 3px;
  border-radius: 99px;
  background: var(--tz-orange-500);
}

.tz-menu-list > li.menu-item-has-children > a::before {
  content: "▾";
  margin-left: 7px;
  font-size: 10px;
  color: #6c7d95;
}

.tz-menu-list .sub-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  min-width: 230px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid var(--tz-border);
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(8, 31, 62, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}

.tz-menu-list .sub-menu li {
  margin: 0;
}

.tz-menu-list .sub-menu a {
  display: block;
  padding: 10px 14px;
  color: #344b68;
  text-decoration: none;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.tz-menu-list .sub-menu a:hover {
  background: #eff5fc;
  color: var(--tz-blue-800);
}

.tz-menu-list > li:hover > .sub-menu,
.tz-menu-list > li:focus-within > .sub-menu,
.tz-menu-list .sub-menu > li:hover > .sub-menu,
.tz-menu-list .sub-menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tz-menu-list .sub-menu .sub-menu {
  left: calc(100% + 8px);
  top: 0;
}

.tz-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 10px;
  background: var(--tz-blue-900);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.tz-header-cta:hover {
  color: #ffffff;
  background: var(--tz-blue-800);
  text-decoration: none;
}

/* CTA Cotizar dentro del menu: solo visible en movil (ver @media 767px). */
.tz-nav-cta {
  display: none;
}

.tz-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid #bfd0e4;
  border-radius: 8px;
  background: #ffffff;
  color: var(--tz-blue-900);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.tz-submenu-toggle {
  display: none;
}

.tz-home-v2 {
  background: #f8fbff;
}

.tz-home-hero {
  min-height: 704px;
  position: relative;
  background-color: #143a6a;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tz-home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 34, 70, 0.86) 0%, rgba(8, 44, 87, 0.38) 52%, rgba(6, 34, 70, 0.38) 100%);
}

.tz-home-hero .tz-shell {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: flex-start;
  padding-top: 88px;
}

.tz-home-hero-content {
  width: 45%;
  max-width: 760px;
  position: relative;
  color: #ffffff;
  padding: 0;
  margin: 0 0 120px;
}

.tz-home-hero-content h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.72), 0 4px 12px rgba(0, 0, 0, 0.42);
  -webkit-text-stroke: 0.45px rgba(5, 27, 56, 0.4);
}

.tz-home-hero-content p {
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 35px);
  line-height: 1.35;
  color: #f4f8ff !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.72), 0 3px 10px rgba(0, 0, 0, 0.36);
  -webkit-text-stroke: 0.35px rgba(5, 27, 56, 0.34);
}

.tz-home-hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tz-btn-primary,
.tz-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 10px;
  min-height: 54px;
  padding: 12px 28px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.tz-btn-primary {
  background: var(--tz-orange-500);
  color: #ffffff;
}

.tz-btn-primary:hover {
  color: #ffffff;
  background: var(--tz-orange-600);
  text-decoration: none;
}

.tz-btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.tz-btn-secondary:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.tz-hero-iata {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.tz-hero-iata-text {
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.tz-hero-iata img {
  width: 126px;
  height: auto;
}

.tz-home-categories {
  position: relative;
  margin-top: -74px;
  z-index: 3;
}

.tz-categories-grid {
  background: #ffffff;
  border: 1px solid #dfe8f2;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(9, 34, 66, 0.09);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tz-category-item {
  min-height: 190px;
  padding: 30px 16px 24px;
  text-decoration: none;
  text-align: center;
  color: #0b2e63;
  border-right: 1px solid #e6edf5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: color 0.28s ease;
}

.tz-category-item:last-child {
  border-right: none;
}

.tz-category-icon {
  width: 82px;
  height: 82px;
  color: #0b2e63;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}

.tz-category-icon svg {
  width: 68px;
  height: 68px;
  display: block;
}

.tz-category-icon svg path,
.tz-category-icon svg line,
.tz-category-icon svg polyline,
.tz-category-icon svg polygon,
.tz-category-icon svg circle,
.tz-category-icon svg ellipse,
.tz-category-icon svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tz-category-icon .tz-outline-icon .tz-icon-primary {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tz-category-icon .tz-outline-icon .tz-icon-primary-fill {
  fill: currentColor;
  stroke: none;
}

.tz-category-icon .tz-outline-icon .tz-icon-accent {
  fill: none;
  stroke: var(--tz-orange-500);
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tz-category-icon .tz-outline-icon .tz-icon-accent-fill {
  fill: var(--tz-orange-500);
  stroke: none;
}

.tz-category-title {
  max-width: 150px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.28s ease;
  margin: 0 auto;
}

.tz-category-item:hover,
.tz-category-item:focus-visible {
  text-decoration: none;
}

.tz-category-item:hover .tz-category-icon,
.tz-category-item:focus-visible .tz-category-icon {
  color: var(--tz-orange-500);
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 8px 16px rgba(241, 132, 47, 0.34));
}

/* ===== Microinteracciones por icono (al hover/focus) ===== */
@media (prefers-reduced-motion: no-preference) {
  .tz-category-icon svg {
    transform-origin: center center;
    will-change: transform;
  }

  /* Origen en la base para los que se mecen/brincan */
  .tz-category-item[data-icon="caribe"] .tz-category-icon svg,
  .tz-category-item[data-icon="cruceros"] .tz-category-icon svg,
  .tz-category-item[data-icon="disney"] .tz-category-icon svg {
    transform-origin: center bottom;
  }

  /* Avion: despega */
  @keyframes tz-cat-fly {
    0%   { transform: translate(0, 0) rotate(0deg); }
    35%  { transform: translate(5px, -7px) rotate(-10deg); }
    70%  { transform: translate(-2px, -3px) rotate(-4deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
  }
  .tz-category-item[data-icon="boletos-aereos"]:hover .tz-category-icon svg,
  .tz-category-item[data-icon="boletos-aereos"]:focus-visible .tz-category-icon svg {
    animation: tz-cat-fly 1.1s ease-in-out infinite;
  }

  /* Crucero: se mece sobre las olas */
  @keyframes tz-cat-sail {
    0%, 100% { transform: translateY(0) rotate(-3.5deg); }
    50%      { transform: translateY(-4px) rotate(3.5deg); }
  }
  .tz-category-item[data-icon="cruceros"]:hover .tz-category-icon svg,
  .tz-category-item[data-icon="cruceros"]:focus-visible .tz-category-icon svg {
    animation: tz-cat-sail 1.7s ease-in-out infinite;
  }

  /* Peregrinaciones: latido sereno */
  @keyframes tz-cat-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.12); }
  }
  .tz-category-item[data-icon="peregrinaciones"]:hover .tz-category-icon svg,
  .tz-category-item[data-icon="peregrinaciones"]:focus-visible .tz-category-icon svg {
    animation: tz-cat-pulse 1.4s ease-in-out infinite;
  }

  /* Caribe: palmera al viento */
  @keyframes tz-cat-sway {
    0%, 100% { transform: rotate(-7deg); }
    50%      { transform: rotate(7deg); }
  }
  .tz-category-item[data-icon="caribe"]:hover .tz-category-icon svg,
  .tz-category-item[data-icon="caribe"]:focus-visible .tz-category-icon svg {
    animation: tz-cat-sway 1.5s ease-in-out infinite;
  }

  /* Disney: brinco magico */
  @keyframes tz-cat-bounce {
    0%, 100% { transform: translateY(0) scaleY(1); }
    30%      { transform: translateY(-9px) scaleY(1.04); }
    55%      { transform: translateY(0) scaleY(0.92); }
    78%      { transform: translateY(-4px) scaleY(1); }
  }
  .tz-category-item[data-icon="disney"]:hover .tz-category-icon svg,
  .tz-category-item[data-icon="disney"]:focus-visible .tz-category-icon svg {
    animation: tz-cat-bounce 1.3s ease-in-out infinite;
  }

  /* Destinos: el globo gira */
  @keyframes tz-cat-spin {
    0%   { transform: perspective(220px) rotateY(0deg); }
    100% { transform: perspective(220px) rotateY(360deg); }
  }
  .tz-category-item[data-icon="destinos-internacionales"]:hover .tz-category-icon svg,
  .tz-category-item[data-icon="destinos-internacionales"]:focus-visible .tz-category-icon svg {
    animation: tz-cat-spin 2.8s linear infinite;
  }
}

.tz-home-featured {
  padding: 56px 0 26px;
}

.tz-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.tz-section-head-copy p {
  margin: 0 0 7px;
  color: var(--tz-orange-500);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}

.tz-section-head-copy h2 {
  margin: 0;
  color: var(--tz-blue-900);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.02;
  text-transform: uppercase;
}

.tz-slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tz-slider-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #cad8e8;
  border-radius: 50%;
  background: #ffffff;
  color: #284a71;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tz-slider-arrow:hover {
  background: var(--tz-blue-900);
  color: #ffffff;
}

.tz-slider-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.tz-slider-track::-webkit-scrollbar {
  display: none;
}

.tz-featured-card {
  flex: 0 0 244px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #d8e2ee;
  border-radius: 12px;
  overflow: hidden;
}

.tz-featured-thumb {
  display: block;
  position: relative;
  height: 146px;
  background: #d2e0ef;
  overflow: hidden;
}

.tz-featured-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(241, 132, 47, 0) 40%, rgba(241, 132, 47, 0.18) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.tz-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease, transform 0.35s ease;
  will-change: transform;
}

.tz-featured-thumb:hover::after,
.tz-featured-thumb:focus-visible::after {
  opacity: 1;
}

.tz-featured-thumb:hover img,
.tz-featured-thumb:focus-visible img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.055);
}

.tz-featured-body {
  padding: 14px 16px 15px;
}

.tz-featured-body h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 700;
}

.tz-featured-body h3 a {
  color: var(--tz-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tz-featured-body h3 a:hover,
.tz-featured-body h3 a:focus-visible {
  color: var(--tz-orange-600);
}

.tz-featured-duration {
  margin: 7px 0 9px;
  color: #394f6a;
  font-size: 12px;
  line-height: 1.3;
}

.tz-featured-price-label {
  margin: 0;
  color: #4c6079;
  font-size: 11px;
  line-height: 1.2;
}

.tz-featured-price {
  margin: 2px 0 10px;
  color: var(--tz-orange-600);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.tz-featured-link {
  text-decoration: none;
  color: var(--tz-orange-600);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
  transition: color 0.2s ease, gap 0.25s ease;
}

.tz-featured-link i {
  font-size: 10px;
  transform: translateX(0);
  transition: transform 0.25s ease;
}

.tz-featured-link:hover,
.tz-featured-link:focus-visible {
  color: var(--tz-orange-500);
  gap: 10px;
  text-decoration: none;
}

.tz-featured-link:hover i,
.tz-featured-link:focus-visible i {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .tz-featured-thumb::after,
  .tz-featured-thumb img,
  .tz-featured-body h3 a,
  .tz-featured-link,
  .tz-featured-link i {
    transition: none;
  }

  .tz-featured-thumb:hover img,
  .tz-featured-thumb:focus-visible img,
  .tz-featured-link:hover i,
  .tz-featured-link:focus-visible i {
    transform: none;
  }
}

.tz-home-departures {
  padding: 56px 0 58px;
}

.tz-departures-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.tz-departures-title {
  padding-top: 46px;
}

.tz-departures-title p {
  margin: 0 0 10px;
  color: var(--tz-orange-500);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}

body.tz-itc-template .tz-departures-title h2 {
  margin: 0;
  color: var(--tz-blue-900);
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: clamp(34px, 3.4vw, 44px);
  line-height: 0.96;
  font-weight: 700;
  text-transform: uppercase;
}

.tz-departures-title div {
  margin-top: 14px;
  max-width: 215px;
  color: #354d68;
  font-size: 16px;
  line-height: 1.7;
}

.tz-departures-content {
  min-width: 0;
}

.tz-departures-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.tz-departures-track {
  gap: 18px;
  padding: 0 0 8px;
}

.tz-departure-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 286px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #d7e2ee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(8, 38, 74, 0.09);
  display: flex;
  flex-direction: column;
}

.tz-departure-image {
  position: relative;
  height: 186px;
  background: #d8e4f0;
  overflow: hidden;
}

.tz-departure-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.tz-departure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  transform: scale(1);
  filter: saturate(0.96) contrast(0.98);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.tz-departure-date-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 58px;
  min-height: 78px;
  padding: 8px 6px 7px;
  border: 3px solid #ffffff;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--tz-orange-500), var(--tz-orange-600));
  color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 18px rgba(228, 112, 24, 0.34);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.tz-departure-date-badge strong {
  font-size: 21px;
  line-height: 1;
}

.tz-departure-date-badge span {
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.tz-departure-body {
  flex: 1;
  padding: 17px 20px 20px;
  display: flex;
  flex-direction: column;
}

body.tz-itc-template .tz-departure-body h3 {
  margin: 0;
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: 18px;
  color: var(--tz-blue-900);
  line-height: 1.18;
  font-weight: 700;
}

.tz-departure-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
  display: inline-block;
}

.tz-departure-meta {
  margin-top: 14px;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  color: #5b6f8a;
  font-size: 12px;
  line-height: 1.25;
}

.tz-departure-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.tz-departure-meta i {
  color: #7890ab;
  font-size: 13px;
}

.tz-departure-button {
  margin-top: auto;
  min-height: 36px;
  border-radius: 6px;
  background: var(--tz-blue-900);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 0 rgba(10, 50, 100, 0);
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, gap 0.22s ease;
}

.tz-departure-button::after {
  content: "\2192";
  transform: translateX(0);
  transition: transform 0.22s ease;
}

.tz-departure-card:hover .tz-departure-image img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

body.tz-itc-template .tz-departure-card:hover .tz-departure-title-link {
  color: var(--tz-orange-600);
  transform: translateX(2px);
}

.tz-departure-card:hover .tz-departure-button,
.tz-departure-button:hover {
  color: #ffffff;
  background: var(--tz-orange-500);
  box-shadow: 0 7px 16px rgba(228, 112, 24, 0.26);
  transform: translateY(-1px);
  gap: 12px;
  text-decoration: none;
}

.tz-departure-card:hover .tz-departure-button::after,
.tz-departure-button:hover::after {
  transform: translateX(3px);
}

.tz-departure-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.tz-departure-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: #cfd8e4;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tz-departure-dots button.is-active {
  background: var(--tz-orange-500);
  transform: scale(1.1);
}

.tz-home-pilgrimage {
  position: relative;
  background-color: #0a376c;
  background-size: cover;
  background-position: center;
  padding: 40px 0 36px;
}

.tz-home-pilgrimage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 42, 84, 0.94) 0%, rgba(7, 42, 84, 0.83) 52%, rgba(7, 42, 84, 0.94) 100%);
}

.tz-home-pilgrimage .tz-shell {
  position: relative;
  z-index: 2;
}

body.tz-itc-template .tz-home-pilgrimage {
  color: #ffffff;
}

.tz-pilgrimage-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.12fr) minmax(500px, 2fr);
  gap: 34px;
  align-items: center;
}

.tz-pilgrimage-main p {
  margin: 0;
  color: var(--tz-orange-500);
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
}

.tz-pilgrimage-main h2 {
  margin: 6px 0 12px;
  color: #ffffff;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 0.95;
}

body.tz-itc-template .tz-pilgrimage-main h2,
body.tz-itc-template .tz-pilgrimage-feature h3 {
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(4, 23, 48, 0.36);
}

.tz-pilgrimage-main div {
  max-width: 500px;
  color: #edf4ff;
  font-size: 21px;
  line-height: 1.35;
}

.tz-pilgrimage-main a {
  margin-top: 20px;
  background: var(--tz-orange-500);
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 9px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
}

.tz-pilgrimage-main a:hover {
  color: #ffffff;
  background: var(--tz-orange-600);
}

.tz-pilgrimage-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tz-pilgrimage-feature {
  padding: 0 22px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.tz-pilgrimage-feature:first-child {
  border-left: none;
}

.tz-pilgrimage-feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 12px;
}

.tz-pilgrimage-feature h3 {
  margin: 0;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.05;
}

.tz-pilgrimage-feature p {
  margin: 10px 0 0;
  color: #dfeaf8;
  font-size: 18px;
  line-height: 1.35;
}

.tz-home-social-proof {
  padding: 36px 0;
  background: #ffffff;
}

.tz-social-proof-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(420px, 2fr);
  gap: 30px;
}

.tz-testimonial-wrap h3,
.tz-instagram-wrap h3 {
  margin: 0 0 14px;
  color: var(--tz-blue-900);
  font-size: 31px;
  text-transform: uppercase;
}

.tz-testimonial-slider {
  overflow: hidden;
}

.tz-testimonial-track {
  display: flex;
  transition: transform 0.35s ease;
}

.tz-testimonial-card {
  min-width: 100%;
  border: 1px solid var(--tz-border);
  border-radius: 12px;
  background: #ffffff;
  padding: 18px;
}

.tz-testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tz-testimonial-top img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.tz-testimonial-identity h4 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  color: #123a6d;
}

.tz-testimonial-identity p {
  margin: 5px 0 0;
  color: #4d627c;
  font-size: 16px;
}

.tz-testimonial-comment {
  margin-top: 12px;
  color: #3f5674;
  font-size: 18px;
  line-height: 1.45;
}

.tz-testimonial-rating {
  margin-top: 9px;
  color: #f2a11f;
  font-size: 16px;
  letter-spacing: 0.09em;
}

.tz-testimonial-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tz-testimonial-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.tz-testimonial-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #c5d4e6;
  padding: 0;
}

.tz-testimonial-dots button.is-active {
  width: 11px;
  height: 11px;
  background: var(--tz-blue-900);
}

.tz-instagram-head {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tz-instagram-head a {
  min-height: 42px;
  border-radius: 9px;
  border: 1px solid #d0dce9;
  color: #153f70;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.tz-instagram-head a:hover {
  border-color: #b8cce4;
}

.tz-instagram-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.tz-instagram-gallery a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dbe5f0;
  aspect-ratio: 1 / 1;
}

.tz-instagram-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tz-instagram-empty {
  margin: 0;
  min-height: 176px;
  border: 1px dashed #d9e4f1;
  border-radius: 10px;
  background: #f8fbff;
  color: #5d718b;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.tz-home-cta {
  position: relative;
  background-color: #0b396d;
  background-size: cover;
  background-position: center;
  padding: 42px 0;
}

.tz-home-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 34, 66, 0.82) 0%, rgba(8, 34, 66, 0.76) 42%, rgba(8, 34, 66, 0.72) 100%);
}

.tz-home-cta .tz-shell {
  position: relative;
  z-index: 2;
}

.tz-home-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

body.tz-itc-template .tz-home-cta-content > div {
  max-width: 640px;
}

body.tz-itc-template .tz-home-cta-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  text-shadow: 0 10px 26px rgba(3, 18, 39, 0.34);
}

body.tz-itc-template .tz-home-cta-content p {
  margin: 10px 0 0;
  color: #f2f7ff;
  font-size: 21px;
  line-height: 1.35;
  text-shadow: 0 6px 18px rgba(3, 18, 39, 0.26);
}

.tz-home-cta-content a {
  min-height: 56px;
  border-radius: 9px;
  background: var(--tz-orange-500);
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 24px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 32px rgba(7, 26, 54, 0.22);
}

.tz-home-cta-content a:hover {
  color: #ffffff;
  background: var(--tz-orange-600);
}

.tz-site-footer {
  position: relative;
  overflow: hidden;
  background: var(--tz-blue-950);
}

.tz-site-footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 33, 66, 0.94) 0%, rgba(6, 38, 77, 0.9) 100%);
}

.tz-site-footer-inner {
  position: relative;
  z-index: 1;
  padding: 42px 0 22px;
}

.tz-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 0;
  align-items: start;
}

.tz-footer-grid > * {
  min-width: 0;
}

.tz-footer-grid > *:not(:first-child) {
  padding-left: 28px;
  border-left: 1px solid rgba(220, 232, 247, 0.14);
}

.tz-footer-logo img {
  width: 212px;
  max-width: 100%;
  height: auto;
  display: block;
}

body.tz-itc-template .tz-site-footer .tz-footer-brand p {
  margin: 12px 0 0;
  color: #edf4ff;
  font-size: 16px;
  line-height: 1.4;
}

.tz-footer-iata {
  margin-top: 11px;
}

.tz-footer-iata img {
  width: 92px;
  height: auto;
  display: block;
}

body.tz-itc-template .tz-site-footer .tz-footer-links h3,
body.tz-itc-template .tz-site-footer .tz-footer-contact h3,
body.tz-itc-template .tz-site-footer .tz-footer-social h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 20px;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(3, 18, 39, 0.22);
}

.tz-footer-links ul,
.tz-footer-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tz-footer-links li,
.tz-footer-contact li {
  margin-bottom: 8px;
}

body.tz-itc-template .tz-site-footer .tz-footer-links a,
body.tz-itc-template .tz-site-footer .tz-footer-contact a,
body.tz-itc-template .tz-site-footer .tz-footer-contact span {
  color: #d2e0f2;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.18s ease;
}

body.tz-itc-template .tz-site-footer .tz-footer-links a:hover,
body.tz-itc-template .tz-site-footer .tz-footer-links a:focus-visible,
body.tz-itc-template .tz-site-footer .tz-footer-contact a:hover,
body.tz-itc-template .tz-site-footer .tz-footer-contact a:focus-visible {
  color: var(--tz-orange-500, #f1842f);
}

.tz-footer-contact li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
}

.tz-footer-contact i {
  color: #f3953f;
  margin-top: 3px;
}

.tz-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tz-social-row a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.tz-social-row a:hover,
.tz-social-row a:focus-visible {
  color: #ffffff;
  background: var(--tz-orange-500, #f1842f);
  border-color: var(--tz-orange-500, #f1842f);
  transform: translateY(-2px);
}

.tz-footer-whatsapp-card {
  margin-top: 12px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 12px;
  color: #163d6d;
  text-decoration: none;
  text-decoration-line: none;
  font-size: 13px;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 9px;
}

.tz-footer-whatsapp-card:hover,
.tz-footer-whatsapp-card:focus,
.tz-footer-whatsapp-card:focus-visible,
.tz-footer-whatsapp-card span {
  text-decoration: none;
  text-decoration-line: none;
}

.tz-footer-whatsapp-card i {
  font-size: 24px;
  color: #25d366;
}

.tz-footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(219, 231, 246, 0.26);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.tz-itc-template .tz-site-footer .tz-footer-bottom p {
  margin: 0;
  color: #d4e2f3;
  font-size: 14px;
}

.tz-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.tz-itc-template .tz-site-footer .tz-footer-bottom-links a {
  color: #d4e2f3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.18s ease;
}

body.tz-itc-template .tz-site-footer .tz-footer-bottom-links a:hover,
body.tz-itc-template .tz-site-footer .tz-footer-bottom-links a:focus-visible {
  color: var(--tz-orange-500, #f1842f);
}

.tz-scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--tz-orange-500);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 12px 22px rgba(9, 26, 50, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
  z-index: 120;
}

.tz-scroll-top:hover {
  background: var(--tz-orange-600);
}

.tz-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .tz-home-hero-content {
    width: 52%;
  }

  .tz-site-header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .tz-menu-list {
    gap: 18px;
  }

  .tz-menu-list > li > a {
    font-size: 13px;
    font-weight: 600;
  }

  .tz-departure-card {
    flex-basis: 290px;
    min-width: 290px;
  }

  .tz-pilgrimage-features {
    gap: 6px;
  }

  .tz-pilgrimage-feature {
    padding: 0 10px;
  }
}

@media (max-width: 1080px) {
  .tz-home-hero .tz-shell {
    padding-top: 78px;
  }

  .tz-home-hero-content {
    width: 68%;
  }

  .tz-site-header {
    position: relative;
  }

  .tz-site-header-inner {
    min-height: 82px;
    grid-template-columns: 1fr auto auto;
  }

  .tz-menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .tz-header-cta {
    order: 3;
    padding: 10px 14px;
    font-size: 12px;
  }

  .tz-main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    order: 4;
    margin-top: 8px;
  }

  .tz-main-nav.is-open {
    display: block;
  }

  .tz-menu-list {
    display: block;
    border: 1px solid #d7e1ef;
    border-radius: 10px;
    background: #ffffff;
    padding: 8px;
  }

  .tz-menu-list > li {
    border-bottom: 1px solid #e3ebf4;
  }

  .tz-menu-list > li:last-child {
    border-bottom: none;
  }

  .tz-menu-list > li > a {
    padding: 11px 12px;
    display: block;
  }

  .tz-menu-list > li > a::after {
    display: none !important;
  }

  .tz-menu-list > li.menu-item-has-children > a::before {
    display: none;
  }

  .tz-submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    height: 44px;
    border: 0;
    border-left: 1px solid #dce7f2;
    background: #ffffff;
    color: #5f7188;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .tz-submenu-toggle.is-open {
    color: var(--tz-blue-800);
  }

  .tz-submenu-toggle span {
    transition: transform 0.2s ease;
  }

  .tz-submenu-toggle.is-open span {
    transform: rotate(180deg);
  }

  .tz-menu-list .sub-menu,
  .tz-menu-list .sub-menu .sub-menu {
    position: static;
    min-width: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: #f4f8fd;
    transition: max-height 0.25s ease;
  }

  .tz-menu-list li.is-submenu-open > .sub-menu {
    max-height: 540px;
    border-top: 1px solid #dbe5f0;
  }

  .tz-menu-list .sub-menu a {
    padding: 10px 16px 10px 30px;
  }

  .tz-home-hero {
    min-height: 660px;
  }

  .tz-home-hero-content h1 {
    font-size: clamp(40px, 5vw, 72px);
  }

  .tz-home-hero-content p {
    font-size: clamp(17px, 1.5vw, 28px);
  }

  .tz-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tz-category-item:nth-child(3n) {
    border-right: none;
  }

  .tz-featured-card {
    flex-basis: 218px;
  }

  .tz-featured-body h3 {
    font-size: 15px;
  }

  .tz-featured-price {
    font-size: 17px;
  }

  .tz-departures-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tz-departures-title {
    padding-top: 0;
  }

  .tz-departures-title div {
    max-width: 520px;
  }

  .tz-pilgrimage-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tz-pilgrimage-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tz-pilgrimage-feature {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding-top: 16px;
  }

  .tz-pilgrimage-feature:first-child {
    border-top: none;
    padding-top: 0;
  }

  .tz-social-proof-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tz-instagram-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tz-home-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .tz-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tz-footer-grid > *:not(:first-child) {
    padding-left: 22px;
  }
}

@media (max-width: 767px) {
  .tz-top-bar .tz-shell,
  .tz-site-header .tz-shell,
  .tz-home-hero .tz-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .tz-home-hero .tz-shell {
    padding-top: 64px;
  }

  .tz-shell {
    width: 94%;
  }

  .tz-top-bar-inner {
    min-height: 38px;
  }

  .tz-top-bar-left {
    gap: 10px;
  }

  .tz-top-bar-left a span {
    font-size: 11px;
  }

  .tz-top-bar-right {
    gap: 9px;
  }

  .tz-top-bar-right > span {
    display: none;
  }

  .tz-site-header-inner {
    min-height: 74px;
    gap: 10px;
  }

  .tz-site-logo img {
    width: 170px;
  }

  .tz-header-cta {
    display: none;
  }

  .tz-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 10px;
    padding: 13px 18px;
    border-radius: 10px;
    background: var(--tz-orange-500, #f1842f);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }

  .tz-nav-cta:hover,
  .tz-nav-cta:focus {
    color: #ffffff;
    background: var(--tz-orange-600, #e47018);
    text-decoration: none;
  }

  .tz-home-hero {
    min-height: 560px;
  }

  .tz-home-hero-content {
    width: 100%;
    margin: 0 0 92px;
  }

  .tz-home-hero-content h1 {
    font-size: clamp(35px, 10vw, 50px);
  }

  .tz-home-hero-content p {
    font-size: 16px;
  }

  .tz-home-hero-actions {
    margin-top: 18px;
    gap: 10px;
  }

  .tz-btn-primary,
  .tz-btn-secondary {
    min-height: 46px;
    padding: 10px 16px;
    font-size: 15px;
  }

  .tz-hero-iata {
    margin-top: 18px;
    gap: 10px;
    align-items: center;
  }

  .tz-hero-iata-text {
    font-size: 12px;
    max-width: 140px;
  }

  .tz-hero-iata img {
    width: 92px;
  }

  .tz-home-categories {
    margin-top: -42px;
  }

  .tz-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tz-category-item {
    min-height: 138px;
    padding: 16px 10px;
  }

  .tz-category-item,
  .tz-category-item:nth-child(3n) {
    border-right: 1px solid #e6edf5;
  }

  .tz-category-item:nth-child(2n) {
    border-right: none;
  }

  .tz-category-icon svg {
    width: 46px;
    height: 46px;
  }

  .tz-category-title {
    font-size: 13px;
  }

  .tz-home-featured {
    padding-top: 34px;
  }

  .tz-section-head {
    align-items: center;
  }

  .tz-section-head-copy p {
    font-size: 13px;
  }

  .tz-section-head-copy h2 {
    font-size: 28px;
  }

  .tz-slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .tz-featured-card {
    flex-basis: 182px;
  }

  .tz-featured-thumb {
    height: 120px;
  }

  .tz-featured-body {
    padding: 11px;
  }

  .tz-featured-body h3 {
    font-size: 15px;
  }

  .tz-featured-duration {
    font-size: 12px;
  }

  .tz-featured-price-label {
    font-size: 12px;
  }

  .tz-featured-price {
    font-size: 17px;
  }

  .tz-featured-link {
    font-size: 12px;
  }

  body.tz-itc-template .tz-departures-title h2 {
    font-size: 28px;
    max-width: 320px;
  }

  .tz-departure-card {
    flex-basis: 286px;
    min-width: 286px;
  }

  .tz-departure-image {
    height: 160px;
  }

  body.tz-itc-template .tz-departure-body h3 {
    font-size: 16px;
  }

  .tz-departure-meta {
    font-size: 11px;
    gap: 8px 12px;
  }

  .tz-departure-button {
    min-height: 34px;
    font-size: 11px;
    padding: 8px 13px;
  }

  .tz-pilgrimage-main p {
    font-size: 14px;
  }

  .tz-pilgrimage-main h2 {
    font-size: 34px;
  }

  .tz-pilgrimage-main div {
    font-size: 15px;
  }

  .tz-pilgrimage-main a {
    font-size: 14px;
    padding: 10px 14px;
  }

  .tz-pilgrimage-feature h3 {
    font-size: 21px;
  }

  .tz-pilgrimage-feature p {
    font-size: 14px;
  }

  .tz-testimonial-wrap h3,
  .tz-instagram-wrap h3 {
    font-size: 20px;
  }

  .tz-testimonial-comment {
    font-size: 14px;
  }

  .tz-instagram-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tz-instagram-head a {
    min-height: 35px;
    font-size: 13px;
  }

  .tz-instagram-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .tz-home-cta-content h2 {
    font-size: 30px;
  }

  .tz-home-cta-content p {
    font-size: 14px;
  }

  .tz-home-cta-content a {
    font-size: 13px;
    min-height: 44px;
    padding: 11px 14px;
  }

  .tz-site-footer-inner {
    padding: 34px 0 20px;
  }

  .tz-footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .tz-footer-grid > *:not(:first-child) {
    padding-left: 0;
    border-left: 0;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(220, 232, 247, 0.16);
  }

  /* Marca centrada */
  .tz-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tz-footer-logo img {
    width: 168px;
    margin: 0 auto;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-brand p {
    font-size: 15px;
    max-width: 320px;
  }

  .tz-footer-iata {
    display: flex;
    justify-content: center;
  }

  /* Encabezados centrados con acento naranja */
  body.tz-itc-template .tz-site-footer .tz-footer-links h3,
  body.tz-itc-template .tz-site-footer .tz-footer-contact h3,
  body.tz-itc-template .tz-site-footer .tz-footer-social h3 {
    font-size: 17px;
    margin: 0 0 16px;
    padding-bottom: 10px;
    position: relative;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-links h3::after,
  body.tz-itc-template .tz-site-footer .tz-footer-contact h3::after,
  body.tz-itc-template .tz-site-footer .tz-footer-social h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 42px;
    height: 3px;
    border-radius: 2px;
    background: var(--tz-orange-500, #f1842f);
  }

  /* Enlaces rapidos en 2 columnas para compactar la lista */
  .tz-footer-links ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
  }

  .tz-footer-links li {
    margin-bottom: 0;
  }

  /* Contacto: bloque centrado, lineas alineadas a la izquierda */
  .tz-footer-contact li {
    grid-template-columns: 18px 1fr;
    text-align: left;
    max-width: 300px;
    margin: 0 auto 10px;
  }

  /* Redes centradas */
  .tz-social-row {
    justify-content: center;
  }

  .tz-footer-whatsapp-card {
    justify-content: center;
    max-width: 340px;
    margin: 16px auto 0;
  }

  /* Pie inferior centrado */
  .tz-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .tz-footer-bottom-links {
    justify-content: center;
  }

  .tz-scroll-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}

.tz-pilg-hero {
  position: relative;
  min-height: 255px;
  background-color: var(--tz-blue-900);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tz-pilg-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 40, 82, 0.92) 0%, rgba(6, 42, 84, 0.76) 48%, rgba(6, 42, 84, 0.58) 100%),
    rgba(5, 35, 72, 0.42);
}

.tz-pilg-hero .container {
  position: relative;
  z-index: 1;
}

.tz-pilg-hero-content {
  width: min(720px, 100%);
  padding: 36px 0 32px;
}

.tz-pilg-hero-intro {
  margin: 14px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.tz-pilg-breadcrumb {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
}

.tz-pilg-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.tz-pilg-breadcrumb a:hover {
  color: #ffffff;
}

body.tz-itc-template .tz-pilg-hero h1 {
  margin: 0;
  max-width: 560px;
  color: #ffffff;
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.tz-pilg-hero-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.tz-pilg-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tz-pilg-hero-meta i {
  font-size: 18px;
}

.tz-pilg-page {
  background: #f5f8fc;
  padding: 22px 0 30px;
}

.tz-pilg-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.tz-pilg-card,
.tz-pilg-sidebar > .search,
.tz-pilg-sidebar .payoptions,
.tz-pilg-sidebar .suscription,
.tz-pilg-sidebar .lastnews {
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(9, 36, 68, 0.08);
}

.tz-pilg-card {
  padding: 36px 44px 44px;
}

body.tz-itc-template .tz-pilg-archive-card .tz-post-body h2 {
  color: #1c3556;
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: clamp(18px, 1.75vw, 24px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0;
}

.tz-pilg-archive-card .tz-post-grid {
  gap: 18px;
}

.tz-pilg-archive-card .tz-post-card {
  border-color: #dce6f1;
  box-shadow: 0 10px 26px rgba(11, 35, 63, 0.06);
}

.tz-pilg-archive-card .tz-post-thumb {
  min-height: 210px;
}

.tz-pilg-archive-card .tz-post-body {
  justify-content: center;
}

.tz-pilg-archive-card .tz-post-meta {
  gap: 10px 14px;
  font-size: 13px;
}

.tz-pilg-archive-card .tz-post-excerpt {
  font-size: 14px;
  line-height: 1.65;
}

.tz-pilg-archive-card .tz-pagination {
  margin-top: 28px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tz-pilg-archive-card .tz-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #d5e0ec;
  border-radius: 999px;
  background: #ffffff;
  color: #173862;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tz-pilg-archive-card .tz-pagination .page-numbers:hover,
.tz-pilg-archive-card .tz-pagination .page-numbers:focus-visible {
  border-color: #f1842f;
  background: #fff2e7;
  color: #e47018;
  text-decoration: none;
}

.tz-pilg-archive-card .tz-pagination .page-numbers.current {
  border-color: #0f3d77;
  background: #0f3d77;
  color: #ffffff;
}

.tz-pilg-gallery-wrap {
  position: relative;
}

.tz-pilg-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 1fr);
  gap: 7px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.tz-pilg-gallery::-webkit-scrollbar {
  display: none;
}

.tz-pilg-gallery-trigger {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  height: 150px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #d8e4f0;
  cursor: pointer;
}

.tz-pilg-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.tz-pilg-gallery-trigger:hover img,
.tz-pilg-gallery-trigger:focus-visible img {
  transform: scale(1.06);
}

.tz-pilg-gallery-trigger:focus-visible {
  outline: 3px solid rgba(255, 123, 32, 0.55);
  outline-offset: 3px;
}

.tz-pilg-gallery-next {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--tz-blue-900);
  box-shadow: 0 8px 18px rgba(8, 30, 58, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tz-pilg-gallery-next:hover {
  background: var(--tz-orange-500);
  color: #ffffff;
}

.tz-pilg-gallery-next[hidden] {
  display: none;
}

body.tz-pilg-lightbox-open {
  overflow: hidden;
}

.tz-pilg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(5, 23, 45, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tz-pilg-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.tz-pilg-lightbox-frame {
  max-width: min(1080px, 94vw);
  max-height: 86vh;
  padding: 10px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  transform: scale(0.96);
  transition: transform 0.2s ease;
}

.tz-pilg-lightbox.is-open .tz-pilg-lightbox-frame {
  transform: scale(1);
}

.tz-pilg-lightbox-frame img {
  display: block;
  max-width: 100%;
  max-height: calc(86vh - 20px);
  border-radius: 8px;
  object-fit: contain;
}

.tz-pilg-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--tz-blue-900);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tz-pilg-lightbox-close:hover,
.tz-pilg-lightbox-close:focus-visible {
  background: var(--tz-orange-500);
  color: #ffffff;
  transform: translateY(-1px);
}

.tz-pilg-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--tz-blue-900);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tz-pilg-lightbox-prev {
  left: 22px;
}

.tz-pilg-lightbox-next {
  right: 22px;
}

.tz-pilg-lightbox-nav:hover,
.tz-pilg-lightbox-nav:focus-visible {
  background: var(--tz-orange-500);
  color: #ffffff;
}

.tz-pilg-lightbox-nav[hidden] {
  display: none;
}

@media (max-width: 600px) {
  .tz-pilg-lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .tz-pilg-lightbox-prev {
    left: 10px;
  }

  .tz-pilg-lightbox-next {
    right: 10px;
  }
}

.tz-pilg-summary {
  margin-top: 14px;
}

.tz-pilg-summary h2,
.tz-pilg-info h2,
.tz-pilg-itinerary h2 {
  margin: 0 0 10px;
  color: var(--tz-blue-900);
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.tz-pilg-itinerary h2 {
  scroll-margin-top: 120px;
}

.tz-pilg-summary p {
  margin: 0;
  color: #344b66;
  font-size: 14px;
  line-height: 1.7;
}

.tz-pilg-benefits {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tz-pilg-benefit {
  min-height: 128px;
  padding: 17px 12px 15px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
  text-align: center;
  box-shadow: inset 0 0 0 1px #e6edf6;
}

.tz-pilg-benefit i {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #e9f2ff;
  color: var(--tz-blue-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

body.tz-itc-template .tz-pilg-benefit h3 {
  margin: 0 0 7px;
  color: var(--tz-blue-900);
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.tz-pilg-benefit p {
  margin: 0;
  color: #40566f;
  font-size: 12px;
  line-height: 1.35;
}

.tz-pilg-info,
.tz-pilg-itinerary {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e3ebf4;
}

.tz-pilg-info-table {
  border: 1px solid #dce6f1;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.tz-pilg-info-table > div {
  min-height: 44px;
  padding: 11px 16px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(150px, 1fr);
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #e4ecf5;
  color: #344b66;
  font-size: 13px;
}

.tz-pilg-info-table > div:last-child {
  border-bottom: 0;
}

.tz-pilg-info-table span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.tz-pilg-info-table i {
  width: 18px;
  color: var(--tz-blue-900);
  text-align: center;
}

.tz-pilg-info-table strong {
  justify-self: end;
  color: #35465a;
  font-weight: 600;
  text-align: right;
}

.tz-pilg-info-table > div:first-child strong {
  color: var(--tz-orange-600);
}

.tz-pilg-itinerary-list {
  border: 1px solid #dce6f1;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.tz-pilg-itinerary-item {
  border-bottom: 1px solid #e4ecf5;
}

.tz-pilg-itinerary-item:last-child {
  border-bottom: 0;
}

.tz-pilg-itinerary-item summary {
  list-style: none;
  cursor: pointer;
  min-height: 48px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #203f66;
  font-size: 13px;
  font-weight: 700;
}

.tz-pilg-itinerary-item summary::-webkit-details-marker {
  display: none;
}

.tz-pilg-itinerary-item summary span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tz-pilg-itinerary-item summary i:first-child {
  color: var(--tz-blue-900);
}

.tz-pilg-itinerary-item summary > i {
  color: var(--tz-blue-900);
  transition: transform 0.2s ease;
}

.tz-pilg-itinerary-item[open] summary > i {
  transform: rotate(180deg);
}

.tz-pilg-itinerary-item p {
  margin: -5px 0 0;
  padding: 0 16px 14px 44px;
  color: #4d6076;
  font-size: 12px;
  line-height: 1.55;
}

.tz-pilg-itinerary-link {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--tz-orange-600);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(255px);
  cursor: pointer;
}

.tz-pilg-itinerary-link i {
  transition: transform 0.2s ease;
}

.tz-pilg-itinerary-link:hover,
.tz-pilg-itinerary-link:focus-visible {
  color: var(--tz-orange-500);
  text-decoration: none;
}

.tz-pilg-itinerary-link:hover i,
.tz-pilg-itinerary-link:focus-visible i {
  transform: translateX(4px);
}

.tz-pilg-sidebar {
  display: grid;
  gap: 18px;
}

.tz-pilg-sidebar > .search,
.tz-pilg-sidebar .payoptions,
.tz-pilg-sidebar .suscription,
.tz-pilg-sidebar .lastnews {
  background: #ffffff;
  border-color: #e4ebf5;
  border-radius: 18px;
  box-shadow: 0 26px 60px -38px rgba(7, 47, 97, 0.45);
}

.tz-pilg-sidebar > .search {
  padding: 12px;
}

.tz-pilg-sidebar .search form,
.tz-pilg-search form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

.tz-pilg-sidebar .search input[type="search"],
.tz-pilg-sidebar .search input[type="text"],
.tz-pilg-search input[type="search"],
.tz-pilg-search input[type="text"] {
  min-height: 38px;
  border: 1px solid #d2deeb;
  border-radius: 6px 0 0 6px;
  padding: 0 12px;
  font-size: 13px;
}

.tz-pilg-sidebar .search input[type="submit"],
.tz-pilg-sidebar .search button,
.tz-pilg-search input[type="submit"],
.tz-pilg-search button {
  min-height: 38px;
  border: 0;
  border-radius: 0 6px 6px 0;
  background: var(--tz-blue-900);
  color: #ffffff;
  padding: 0 15px;
  font-weight: 700;
  font-size: 13px;
}

.tz-pilg-sidebar .payoptions,
.tz-pilg-sidebar .suscription,
.tz-pilg-sidebar .lastnews {
  overflow: hidden;
}

.tz-pilg-sidebar .payoptions h3,
.tz-pilg-sidebar .suscription h3,
.tz-pilg-sidebar .lastnews h3 {
  margin: 0;
  padding: 24px 24px 0;
  background: transparent;
  color: #0a2d5f;
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
  text-align: left;
  text-transform: uppercase;
}

.tz-pilg-sidebar .payoptions h3::after,
.tz-pilg-sidebar .suscription h3::after,
.tz-pilg-sidebar .lastnews h3::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin: 13px 0 0;
  border-radius: 4px;
  background: #f1842f;
}

.tz-pilg-sidebar .divpagos-contenido {
  padding: 22px 24px 24px;
  background: transparent;
  color: #53677d;
  font-size: 14px;
  line-height: 1.45;
}

.tz-payment-methods,
.tz-payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--tz-blue-900);
}

.tz-payment-icons {
  margin-top: 0;
  font-size: 30px;
}

.tz-payment-method {
  width: 70px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tz-blue-900);
  font-size: 30px;
  line-height: 1;
}

.tz-payment-method img {
  width: auto;
  max-width: 70px;
  max-height: 32px;
  display: block;
  object-fit: contain;
}

.tz-payment-method--mastercard img,
.tz-payment-method--master-card img {
  max-height: 36px;
}

.tz-payment-method .fa-cc-mastercard,
.tz-payment-icons .fa-cc-mastercard {
  color: #e36a1f;
}

.tz-payment-method .fa-cc-amex,
.tz-payment-icons .fa-cc-amex {
  color: #1f73bb;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-label {
  margin: 0 0 14px;
  color: #314a6b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-cards {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-card-logo {
  min-width: 76px;
  min-height: 46px;
  padding: 7px 10px;
  border: 1px solid #e4ebf5;
  border-radius: 10px;
  background: #ffffff;
  color: var(--tz-blue-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 10px 22px -18px rgba(7, 47, 97, 0.45);
}

.tz-global-payment--legacy-sidebar .tz-global-payment-card-logo img {
  width: auto;
  max-width: 58px;
  max-height: 28px;
  display: block;
  object-fit: contain;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-card-logo .fa-cc-visa {
  color: #1a1f71;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-card-logo .fa-cc-mastercard {
  color: #eb001b;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-card-logo .fa-cc-amex {
  color: #2e77bc;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-divider {
  border: 0;
  border-top: 1px solid #e9eff7;
  margin: 22px 0 20px;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-extra-methods {
  display: grid;
  gap: 14px;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-extra-method {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-extra-method-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eef4fc;
  color: var(--tz-blue-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-extra-method-copy strong {
  display: block;
  color: var(--tz-blue-900);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-extra-method-copy p {
  margin: 2px 0 0;
  color: #667c95;
  font-size: 12px;
  line-height: 1.35;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-secure {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #dfe9f6;
  border-radius: 12px;
  background: #eef4fc;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-secure-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffffff;
  color: #1f7a4d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-secure-copy strong {
  display: block;
  color: var(--tz-blue-900);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.tz-global-payment--legacy-sidebar .tz-global-payment-secure-copy p {
  margin: 2px 0 0;
  color: #5b6f8a;
  font-size: 12px;
  line-height: 1.35;
}

.tz-pilg-sidebar .suscription form,
.tz-pilg-sidebar .suscription .widget,
.tz-pilg-sidebar .suscription > li,
.tz-pilg-sidebar .suscription > p {
  padding: 0;
}

.tz-pilg-sidebar .suscription > li,
.tz-pilg-sidebar .suscription .widget {
  display: block;
  list-style: none;
  margin: 0;
  padding: 20px 24px 24px;
}

.tz-pilg-sidebar .suscription > form,
.tz-pilg-sidebar .suscription > p {
  margin: 0;
  padding: 20px 24px 24px;
}

.tz-pilg-sidebar .suscription .widgettitle,
.tz-pilg-sidebar .suscription h2 {
  margin: 0 0 16px;
  color: #36507a;
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
}

.tz-pilg-sidebar .suscription .widget_wysija_cont,
.tz-pilg-sidebar .suscription .widget_wysija,
.tz-pilg-sidebar .suscription .wysija-paragraph {
  margin: 0;
}

.tz-pilg-sidebar .suscription .widget_wysija {
  display: grid;
  gap: 12px;
}

.tz-pilg-sidebar .suscription .wysija-paragraph {
  display: grid;
  gap: 6px;
}

.tz-pilg-sidebar .suscription .abs-req {
  display: none;
}

.tz-pilg-sidebar .suscription label {
  color: #143869;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.tz-pilg-sidebar .suscription input[type="text"],
.tz-pilg-sidebar .suscription input[type="email"],
.tz-pilg-sidebar .suscription input[type="tel"],
.tz-pilg-sidebar .suscription input[type="url"],
.tz-pilg-sidebar .suscription textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d3e0ef;
  border-radius: 10px;
  background: #f8fbff;
  color: #203f66;
  margin: 0;
  padding: 0 12px;
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tz-pilg-sidebar .suscription textarea {
  min-height: 96px;
  padding-top: 10px;
  resize: vertical;
}

.tz-pilg-sidebar .suscription input[type="text"]:focus,
.tz-pilg-sidebar .suscription input[type="email"]:focus,
.tz-pilg-sidebar .suscription input[type="tel"]:focus,
.tz-pilg-sidebar .suscription input[type="url"]:focus,
.tz-pilg-sidebar .suscription textarea:focus {
  border-color: #8fb2da;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(14, 71, 135, 0.1);
  outline: none;
}

.tz-pilg-sidebar .suscription input[type="submit"],
.tz-pilg-sidebar .suscription button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: #0a3d78;
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tz-pilg-sidebar .suscription input[type="submit"]:hover,
.tz-pilg-sidebar .suscription input[type="submit"]:focus-visible,
.tz-pilg-sidebar .suscription button:hover,
.tz-pilg-sidebar .suscription button:focus-visible {
  background: #072f61;
  box-shadow: 0 14px 26px -18px rgba(7, 47, 97, 0.55);
  transform: translateY(-1px);
  outline: none;
}

.tz-pilg-sidebar .lastnews .list {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid #edf2f8;
}

.tz-pilg-sidebar .lastnews h3 + .list {
  margin-top: 8px;
}

.tz-pilg-sidebar .lastnews .list:last-of-type {
  border-bottom: 0;
  padding-bottom: 22px;
}

.tz-pilg-sidebar .lastnews .thumb {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  overflow: hidden;
  background: #dce7f2;
}

.tz-pilg-sidebar .lastnews .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tz-pilg-sidebar .lastnews .title {
  color: var(--tz-blue-900);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.tz-pilg-sidebar .lastnews .title:hover,
.tz-pilg-sidebar .lastnews .title:focus-visible {
  color: var(--tz-orange-500);
  text-decoration: none;
  outline: none;
}

.tz-dest-hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 40, 82, 0.92) 0%, rgba(6, 42, 84, 0.74) 50%, rgba(6, 42, 84, 0.46) 100%),
    rgba(5, 35, 72, 0.35);
}

.tz-dest-summary h2,
.tz-dest-info h2,
.tz-dest-content h2,
.tz-dest-map h2 {
  margin: 0 0 10px;
  color: var(--tz-blue-900);
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.tz-dest-content,
.tz-dest-map,
.tz-dest-notes {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e3ebf4;
}

.tz-dest-rich-content {
  color: #344b66;
  font-size: 14px;
  line-height: 1.8;
}

.tz-dest-rich-content > *:first-child {
  margin-top: 0;
}

.tz-dest-rich-content > *:last-child {
  margin-bottom: 0;
}

.tz-dest-rich-content p {
  margin: 0 0 16px;
}

.tz-dest-rich-content a {
  color: var(--tz-orange-600);
  font-weight: 700;
  text-decoration: none;
}

.tz-dest-rich-content a:hover {
  color: var(--tz-orange-500);
  text-decoration: underline;
}

.tz-dest-rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.tz-dest-notes {
  color: #6a7c91;
  font-size: 12px;
  line-height: 1.6;
}

.tz-dest-notes p {
  margin: 0 0 8px;
}

.tz-dest-map-frame {
  overflow: hidden;
  border: 1px solid #dce6f1;
  border-radius: 10px;
  background: #dce7f2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.tz-dest-map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.tz-dest-info-table > div:first-child strong {
  color: #35465a;
}

.tz-dest-info-table .tz-dest-price-row strong {
  color: var(--tz-orange-600);
}

.tz-interior-hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 40, 82, 0.92) 0%, rgba(6, 42, 84, 0.74) 50%, rgba(6, 42, 84, 0.5) 100%),
    rgba(5, 35, 72, 0.36);
}

.tz-interior-card .tz-single-cover {
  margin: 0 0 20px;
  border-radius: 10px;
  overflow: hidden;
}

.tz-interior-card .tz-single-cover img {
  display: block;
  width: 100%;
}

.tz-interior-content > *:first-child {
  margin-top: 0;
}

.tz-interior-content > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .tz-pilg-layout {
    grid-template-columns: 1fr;
  }

  .tz-pilg-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tz-pilg-sidebar > .search,
  .tz-pilg-sidebar .lastnews {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .tz-pilg-hero {
    min-height: 330px;
  }

  .tz-pilg-hero-meta {
    display: grid;
    gap: 12px;
  }

  .tz-pilg-card {
    padding: 22px 20px;
  }

  .tz-pilg-gallery {
    grid-auto-columns: 66%;
  }

  .tz-pilg-gallery-trigger {
    height: 138px;
  }

  .tz-pilg-lightbox {
    padding: 54px 14px 18px;
  }

  .tz-pilg-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .tz-pilg-benefits,
  .tz-pilg-sidebar {
    grid-template-columns: 1fr;
  }

  .tz-pilg-info-table > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .tz-pilg-info-table strong {
    justify-self: start;
    text-align: left;
  }

  .tz-pilg-itinerary-link {
    transform: none;
  }
}

/* Footer global compacto, alineado con el diseno de Quienes somos. */
@media (min-width: 768px) {
  body.tz-itc-template .tz-site-footer .tz-site-footer-inner {
    padding: 24px 0 10px;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-grid {
    grid-template-columns: 1.25fr 0.9fr 1.16fr 1.08fr;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-grid > *:not(:first-child) {
    padding-left: 28px;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-logo img {
    width: 168px;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-brand p {
    max-width: 240px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.45;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-brand-social {
    margin-top: 20px;
  }

  body.tz-itc-template .tz-site-footer .tz-social-row a {
    width: 29px;
    height: 29px;
    font-size: 12px;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-links h3,
  body.tz-itc-template .tz-site-footer .tz-footer-contact h3,
  body.tz-itc-template .tz-site-footer .tz-footer-social h3 {
    margin-bottom: 11px;
    font-size: 17px;
    line-height: 1.1;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-links li,
  body.tz-itc-template .tz-site-footer .tz-footer-contact li {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.38;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-links a,
  body.tz-itc-template .tz-site-footer .tz-footer-contact a,
  body.tz-itc-template .tz-site-footer .tz-footer-contact span {
    font-size: 13px;
    line-height: 1.38;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-contact li {
    grid-template-columns: 13px 1fr;
    gap: 8px;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-contact i {
    margin-top: 1px;
    font-size: 12px;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-bottom {
    margin-top: 14px;
    padding-top: 10px;
  }

  body.tz-itc-template .tz-site-footer .tz-footer-bottom p,
  body.tz-itc-template .tz-site-footer .tz-footer-bottom-links a {
    font-size: 12px;
  }
}

body.tz-itc-template .tz-site-footer .tz-footer-brand-social {
  margin-top: 20px;
}

.tz-footer-whatsapp-card--panel {
  box-sizing: border-box;
  height: 118px;
  min-height: 118px;
  margin-top: 0;
  padding: 15px 16px;
  border: 1px solid rgba(220, 232, 247, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  align-items: flex-start;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
}

.tz-footer-whatsapp-card--panel:hover,
.tz-footer-whatsapp-card--panel:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.tz-footer-whatsapp-card--panel i {
  margin-top: 2px;
  font-size: 26px;
}

.tz-footer-whatsapp-card--panel span {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
}

.tz-footer-whatsapp-card-button {
  grid-column: 2;
  width: fit-content;
  margin-top: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
}

.tz-footer-whatsapp-card-button i {
  margin: 0 6px 0 0;
  font-size: 13px;
}

@media (max-width: 767px) {
  .tz-footer-whatsapp-card--panel {
    max-width: 340px;
    height: auto;
    min-height: 118px;
    margin: 16px auto 0;
    text-align: left;
  }
}

/* Header global intermedio: mantiene el look del template y evita que el menu salte a dos lineas. */
@media (min-width: 1081px) {
  .tz-site-header .tz-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .tz-site-header-inner {
    min-height: 80px;
    gap: 18px;
  }

  .tz-site-logo img {
    width: 210px;
  }

  .tz-menu-list {
    gap: 16px;
    flex-wrap: nowrap;
  }

  .tz-menu-list > li > a {
    padding: 28px 0;
    font-size: 13px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .tz-menu-list > li.current-menu-item > a::after,
  .tz-menu-list > li.current_page_item > a::after,
  .tz-menu-list > li.current-menu-parent > a::after,
  .tz-menu-list > li > a:hover::after {
    bottom: 13px;
  }

  .tz-header-cta {
    min-height: 39px;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (min-width: 1281px) and (max-width: 1400px) {
  .tz-site-header .tz-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tz-site-logo img {
    width: 190px;
  }

  .tz-menu-list {
    gap: 12px;
  }

  .tz-menu-list > li > a {
    font-size: 12px;
  }

  .tz-header-cta {
    font-size: 12px;
  }
}

@media (min-width: 1081px) and (max-width: 1280px) {
  .tz-site-header .tz-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tz-site-header-inner {
    gap: 14px;
  }

  .tz-site-logo img {
    width: 178px;
  }

  .tz-menu-list {
    gap: 9px;
  }

  .tz-menu-list > li > a {
    font-size: 10.5px;
  }

  .tz-header-cta {
    padding: 10px 11px;
    font-size: 10.5px;
  }
}
