/* ===================================================
   Red Turística — Proveedor / Tour Operador
   Scope: /red-turistica/tours/*, /red-turistica/*/
   Prefijo: rt-
   =================================================== */

/* --- Cabecera de página --- */
.rt-header {
  padding-top: 48px;
}

.container.rt-header {
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.rt-title {
  font-family: "DM Sans Medium";
  font-weight: normal;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--packo-header, #1C3D59);
  margin: 0;
  line-height: 1.2;
}

.rt-subtitle {
  font-family: "DM Sans Regular";
  font-weight: normal;
  font-size: 15px;
  color: #6b7280;
  margin: 6px 0 0;
}

/* --- Descripción --- */
.rt-description {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  margin-top: 16px;
}

/* --- Layout: tarjeta + lista lado a lado --- */
.rt-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 800px;
  margin: 30px auto 40px;
  justify-content: center;
}

/* --- Tarjeta del proveedor --- */
.rt-card {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}

.rt-card__logo {
  width: 52%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
}

.rt-card__name {
  font-family: "DM Sans Medium";
  font-weight: normal;
  font-size: 18px;
  line-height: 1.2;
  color: var(--packo-header, #1C3D59);
  margin: 0 0 4px;
}

.rt-card__category {
  font-family: "DM Sans Regular";
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 16px;
}

.rt-card__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  border: none;
  cursor: pointer;
}

.rt-card__wa-btn:hover {
  background: #1ebe5d;
}

.rt-card__socials {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  margin-top: 8px;
  width: 100%;
}

.rt-card__socials a img {
  width: 26px;
  height: 26px;
  display: block;
  margin: 0;
}

/* --- Lista de características --- */
.rt-features {
  flex: 0 0 360px;
  align-self: center;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rt-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #374151;
  line-height: 1.4;
}

.rt-feature img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .rt-layout {
    flex-direction: column;
    align-items: center;
  }

  .rt-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
  }

  .rt-features {
    flex: 0 0 auto;
    width: 100%;
  }
}
