/* assets/css/travels.css
   Categoría dinámica de tours: travels/index.php.
   Carga solo en /travels/slug para mantener mejor rendimiento.
*/

.travels-single-page,
.travels-page {
  background: #fff;
}

.travels-hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(3, 161, 240, .18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.travels-list-section {
  padding-block: clamp(54px, 6vw, 24px);
  background: #fff;
}

.travels-section-head {
  max-width: 1280px;
  margin: 0 auto clamp(30px, 4vw, 46px);
  text-align: center;
}

.travels-section-head h2 {
  margin: 12px 0 12px;
  color: #101010;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.travels-intro {
  max-width: 1280px;
  margin: 0 auto;
  color: #4c4c4c;
  text-align: center;
}

.travels-intro p,
.travels-intro li {
  color: #4c4c4c;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.8;
}

.travels-intro p:last-child {
  margin-bottom: 0;
}

.travels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.travel-tour-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: #111;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .12);
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease;
}

.travel-tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(15, 23, 42, .18);
}

.travel-tour-card__image {
  position: absolute;
  inset: 0;
  display: block;
  color: #fff;
}

.travel-tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.travel-tour-card:hover .travel-tour-card__image img {
  transform: scale(1.06);
}

.travel-tour-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .32) 42%, rgba(0, 0, 0, .88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .24), rgba(0, 0, 0, .05));
}

.travel-tour-card__chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(3, 161, 240, .94);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.travel-tour-card__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 28px;
  color: #fff;
}

.travel-tour-card__content .rating-dots {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 13px;
  color: #fff;
}

.travel-tour-card__content .rating-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #36a25d;
}

.travel-tour-card__content .rating-dots small {
  margin-left: 6px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 700;
}

.travel-tour-card h3 {
  margin: 0 0 16px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.0em;
}

.travel-tour-card h3 a {
  color: #fff;
}

.travel-tour-card h3 a:hover {
  color: #9fe6ff;
}

.travel-tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.travel-tour-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .9);
  font-size: 10px;
  font-weight: 800;
}

.travel-tour-card__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.travel-tour-card__bottom small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 700;
}

.travel-tour-card__bottom strong {
  display: block;
  color: #36a25d;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.travel-tour-card__bottom strong span,
.travel-tour-card__bottom strong small,
.travel-tour-card__bottom strong font {
  color: inherit !important;
}

.travel-tour-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(3, 161, 240, .28);
}

.travel-tour-card__btn:hover {
  background: #028bd0;
  color: #fff;
}

.travels-empty {
  max-width: 640px;
  margin: 0 auto;
  padding: 42px 28px;
  border-radius: 18px;
  background: #f6fbff;
  border: 1px solid rgba(3, 161, 240, .14);
  text-align: center;
}

.travels-empty h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 28px;
  font-weight: 900;
}

.travels-empty p {
  margin: 0 0 20px;
  color: #555;
  line-height: 1.7;
}

.travels-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .travels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .travels-grid {
    grid-template-columns: 1fr;
  }

  .travel-tour-card {
    min-height: 410px;
  }

  .travel-tour-card__content {
    padding: 24px;
  }

  .travel-tour-card__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .travels-section-head {
    text-align: left;
  }

  .travels-intro {
    text-align: left;
  }

  .travel-tour-card {
    border-radius: 16px;
  }
}


.pricetravelers strong sup {
  font-size: 15px;
  font-weight: 500;
  margin-left: 2px;
  margin-right: 2px;
}

.pricetravelers strong .price {
  color: #33C154;  
  font-size:30px;
}