/* ==========================================================================
   Boletos Aereos landing page
   ========================================================================== */

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

.tz-boletos-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.3) 100%);
}

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

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

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

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

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

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

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

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

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

.tz-boletos-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-boletos-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-boletos-section-sub {
  margin: 0;
  color: #5d718b;
  font-size: 15px;
}

/* ---- Servicios ----------------------------------------------------------- */
.tz-boletos-services {
  padding: 56px 0 60px;
  background: #f7fafd;
}

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

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

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

.tz-boletos-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #eff5ff;
  color: var(--tz-blue-900);
  font-size: 24px;
}

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

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

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

.tz-boletos-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-boletos-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-boletos-why-intro h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 4px;
  border-radius: 4px;
  background: var(--tz-orange-500);
}

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

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

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

.tz-boletos-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-boletos-why-item h3 {
  margin: 0 0 6px;
  color: var(--tz-blue-900);
  font-size: 15px;
  font-weight: 700;
}

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

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

.tz-boletos-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-boletos-cta-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tz-boletos-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-boletos-cta-copy h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-family: "Oswald", "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

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

.tz-boletos-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-boletos-btn-cta:hover {
  background: var(--tz-orange-600);
  color: #ffffff;
  transform: translateY(-1px);
}

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

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

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

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

  .tz-boletos-badges {
    gap: 18px 20px;
  }

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

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