/* ==========================================================================
   El Caribe landing page
   ========================================================================== */

/* ---- Hero ---------------------------------------------------------------- */
.tz-caribe-hero {
  background-size: cover;
  background-position: center;
}

.tz-caribe-hero .tz-pilg-hero-overlay {
  background: linear-gradient(100deg, rgba(8, 33, 66, 0.94) 0%, rgba(9, 40, 82, 0.72) 45%, rgba(9, 46, 92, 0.28) 100%);
}

.tz-caribe-hero-content {
  width: min(560px, 100%);
  padding: 60px 0;
}

.tz-caribe-hero-content h1 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 16px;
}

.tz-caribe-hero-content h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 4px;
  border-radius: 4px;
  background: var(--tz-orange-500);
}

.tz-caribe-hero-intro {
  max-width: 480px;
}

.tz-caribe-badges {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 26px 34px;
}

.tz-caribe-badges li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 96px;
  text-align: center;
}

.tz-caribe-badge-icon {
  font-size: 26px;
  color: #ffffff;
}

.tz-caribe-badge-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
}

/* ---- Section head shared ------------------------------------------------- */
.tz-caribe-section-head {
  text-align: center;
  margin-bottom: 34px;
}

.tz-caribe-section-head h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 14px;
  padding-bottom: 14px;
  color: var(--tz-blue-900);
  font-family: "Oswald", "Poppins", sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
}

.tz-caribe-section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 4px;
  border-radius: 4px;
  transform: translateX(-50%);
  background: var(--tz-orange-500);
}

.tz-caribe-section-sub {
  margin: 0;
  color: #5d718b;
  font-size: 15px;
}

/* ---- Destinos populares -------------------------------------------------- */
.tz-caribe-destinos {
  padding: 56px 0 60px;
  background: #f7fafd;
}

.tz-caribe-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.tz-caribe-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e0e8f2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(11, 35, 63, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tz-caribe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(11, 35, 63, 0.12);
}

.tz-caribe-card-thumb {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.tz-caribe-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tz-caribe-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px 20px;
}

.tz-caribe-card-body h3 {
  margin: 0;
  color: var(--tz-blue-900);
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.tz-caribe-card-body p {
  margin: 0;
  color: #55697f;
  font-size: 14px;
  line-height: 1.6;
}

.tz-caribe-card-link {
  margin-top: auto;
  color: var(--tz-orange-600);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.tz-caribe-card-link:hover {
  color: var(--tz-orange-500);
}

.tz-caribe-card-link i {
  transition: transform 0.2s ease;
}

.tz-caribe-card-link:hover i {
  transform: translateX(3px);
}

.tz-caribe-destinos-cta {
  margin-top: 34px;
  text-align: center;
}

.tz-caribe-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 8px;
  background: var(--tz-blue-900);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}

.tz-caribe-btn-solid:hover {
  background: var(--tz-orange-600);
  color: #ffffff;
}

.tz-caribe-empty {
  text-align: center;
  color: #5d718b;
  font-size: 15px;
}

/* ---- Por que viajar ------------------------------------------------------ */
.tz-caribe-why {
  padding: 10px 0 60px;
  background: #f7fafd;
}

.tz-caribe-why-inner {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 34px 38px;
  border-radius: 18px;
  background: #fdf3e5;
}

.tz-caribe-why-intro h2 {
  position: relative;
  margin: 0 0 14px;
  padding-bottom: 12px;
  color: var(--tz-blue-900);
  font-family: "Oswald", "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.tz-caribe-why-intro h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 4px;
  border-radius: 4px;
  background: var(--tz-orange-500);
}

.tz-caribe-why-intro p {
  margin: 0;
  color: #55697f;
  font-size: 14.5px;
  line-height: 1.6;
}

.tz-caribe-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.tz-caribe-why-item {
  text-align: center;
}

.tz-caribe-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--tz-blue-900);
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(9, 36, 68, 0.1);
}

.tz-caribe-why-item h3 {
  margin: 0 0 6px;
  color: var(--tz-blue-900);
  font-size: 15px;
  font-weight: 700;
}

.tz-caribe-why-item p {
  margin: 0;
  color: #5d718b;
  font-size: 13px;
  line-height: 1.55;
}

/* ---- CTA ----------------------------------------------------------------- */
.tz-caribe-cta {
  padding: 0 0 56px;
  background: #f7fafd;
}

.tz-caribe-cta .container {
  position: relative;
}

.tz-caribe-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 30px 38px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(8, 33, 66, 0.96) 0%, rgba(10, 45, 88, 0.86) 60%, rgba(10, 52, 100, 0.62) 100%),
    var(--tz-blue-900);
  background-size: cover;
  background-position: center;
}

.tz-caribe-cta[style] .tz-caribe-cta-inner {
  background:
    linear-gradient(90deg, rgba(8, 33, 66, 0.94) 0%, rgba(10, 45, 88, 0.78) 55%, rgba(10, 52, 100, 0.45) 100%),
    inherit;
}

.tz-caribe-cta-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tz-caribe-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(241, 132, 47, 0.18);
  color: var(--tz-orange-500);
  font-size: 24px;
  flex-shrink: 0;
}

body.tz-itc-template .tz-caribe-cta-copy h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-family: "Oswald", "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.tz-caribe-cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.tz-caribe-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 9px;
  background: var(--tz-orange-500);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tz-caribe-btn-cta:hover {
  background: var(--tz-orange-600);
  color: #ffffff;
  transform: translateY(-1px);
}

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 992px) {
  .tz-caribe-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tz-caribe-why-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (max-width: 600px) {
  .tz-caribe-cards {
    grid-template-columns: 1fr;
  }

  .tz-caribe-badges {
    gap: 18px 22px;
  }

  .tz-caribe-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .tz-caribe-btn-cta {
    width: 100%;
    justify-content: center;
  }
}
