/* =========================================================
   CUSCO TRADICIONAL 4 DÍAS - 3 NOCHES
   Archivo exclusivo de esta página
========================================================= */

:root {
  --ct-primary: #f02f36;
  --ct-primary-dark: #d91f2b;
  --ct-orange: #ff9624;
  --ct-orange-dark: #f47d0d;
  --ct-navy: #14253d;
  --ct-text: #263140;
  --ct-muted: #6d7785;
  --ct-soft: #f5f7f9;
  --ct-border: #dfe4e8;
  --ct-white: #ffffff;
  --ct-shadow: 0 18px 45px rgba(20, 37, 61, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ct-text);
  background: #ffffff;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.ct-page {
  overflow: hidden;
}

.ct-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}



/* =========================================================
   PORTADA CON IMAGEN
========================================================= */

.ct-hero {
  position: relative;

  width: 100%;
  min-height: 480px;

  display: flex;
  align-items: flex-end;

  overflow: hidden;

  background-color: #14253d;
}

/* IMAGEN DE FONDO */
.ct-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center center;
}

/* CAPA OSCURA SOBRE LA IMAGEN */
.ct-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(
      90deg,
      rgba(9, 25, 42, 0.88) 0%,
      rgba(9, 25, 42, 0.48) 55%,
      rgba(9, 25, 42, 0.12) 100%
    ),
    linear-gradient(
      0deg,
      rgba(9, 25, 42, 0.75) 0%,
      transparent 60%
    );

  pointer-events: none;
}

/* TEXTO SOBRE LA IMAGEN */
.ct-hero-content {
  position: relative;
  z-index: 3;

  width: 100%;

  padding-top: 100px;
  padding-bottom: 70px;

  color: #ffffff;
}

.ct-hero h1 {
  max-width: 1100px;

  margin: 12px 0 8px;

  color: #ffffff;

  font-size: clamp(2.7rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;

  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.25);
}

.ct-hero-content > p {
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.2rem, 2.6vw, 2rem);
  font-weight: 800;

  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.3);
}

.ct-hero-content > p span {
  color: #ff9624;
}

.ct-eyebrow {
  position: relative;
  z-index: 4;

  color: #ff9624;

  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ct-hero-actions {
  position: relative;
  z-index: 4;

  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 30px;
}

.ct-eyebrow,
.ct-section-label,
.ct-card-heading > span,
.ct-panel-title > span,
.ct-sidebar-title > span,
.ct-subheading span,
.ct-final-banner-overlay > span {
  display: inline-block;
  color: var(--ct-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ct-hero h1 {
  max-width: 800px;
  margin: 12px 0 4px;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.ct-hero-content > p {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
}

.ct-hero-content > p span {
  color: var(--ct-orange);
}

.ct-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ct-btn {
  min-height: 52px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  transition: 0.28s ease;
}

.ct-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ct-orange), var(--ct-orange-dark));
  box-shadow: 0 12px 28px rgba(244, 125, 13, 0.3);
}

.ct-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(244, 125, 13, 0.4);
}

.ct-btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
}

.ct-btn-outline:hover {
  color: var(--ct-navy);
  background: #ffffff;
  transform: translateY(-3px);
}

/* =========================================================
   INFORMACIÓN RÁPIDA
========================================================= */

.ct-facts {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}

.ct-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(20, 37, 61, 0.08);
  border-radius: 18px;
  box-shadow: var(--ct-shadow);
}

.ct-fact {
  min-height: 102px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--ct-border);
}

.ct-fact:last-child {
  border-right: 0;
}

.ct-fact-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  color: var(--ct-primary);
  background: rgba(240, 47, 54, 0.08);
  border-radius: 14px;
  font-size: 1.35rem;
}

.ct-fact span {
  display: block;
  margin-bottom: 3px;
  color: var(--ct-muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ct-fact strong {
  display: block;
  color: var(--ct-navy);
  font-size: 0.91rem;
  line-height: 1.35;
}

/* =========================================================
   CONTENIDO
========================================================= */

.ct-content {
  padding: 78px 0 90px;
}

.ct-heading {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.ct-heading h2 {
  margin: 7px 0 0;
  color: var(--ct-navy);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ct-rating {
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ct-orange);
  background: #fff8ec;
  border: 1px solid #ffe0b5;
  border-radius: 12px;
  white-space: nowrap;
}

.ct-rating span {
  margin-left: 5px;
  color: var(--ct-navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.ct-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 28px;
}

.ct-main-column,
.ct-sidebar {
  min-width: 0;
}

.ct-card,
.ct-panel-card,
.ct-booking-card,
.ct-train-card {
  border: 1px solid var(--ct-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(20, 37, 61, 0.06);
}

.ct-pricing {
  padding: 28px;
}

.ct-card-heading h3,
.ct-panel-title h3,
.ct-sidebar-title h3,
.ct-subheading h4 {
  margin: 7px 0 0;
  color: var(--ct-navy);
  font-weight: 900;
  line-height: 1.18;
}

.ct-card-heading h3 {
  font-size: 1.45rem;
}

.ct-card-heading p {
  max-width: 700px;
  margin: 9px 0 0;
  color: var(--ct-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* SELECTOR DE MODALIDAD */

.ct-plan-tabs {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
}

.ct-plan-tab {
  min-height: 100px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--ct-navy);
  background: var(--ct-soft);
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  transition: 0.25s ease;
}

.ct-plan-tab i {
  margin-bottom: 3px;
  color: var(--ct-orange);
  font-size: 1.2rem;
}

.ct-plan-tab span {
  font-size: 0.85rem;
  font-weight: 900;
}

.ct-plan-tab small {
  color: var(--ct-muted);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.2;
}

.ct-plan-tab:hover {
  border-color: rgba(240, 47, 54, 0.25);
  transform: translateY(-2px);
}

.ct-plan-tab.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ct-primary), var(--ct-primary-dark));
  box-shadow: 0 10px 24px rgba(240, 47, 54, 0.25);
}

.ct-plan-tab.active i,
.ct-plan-tab.active small {
  color: #ffffff;
}

/* PRECIOS */

.ct-price-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ct-price-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ct-orange), var(--ct-orange-dark));
  border-radius: 14px;
  text-align: center;
}

.ct-price-card::after {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  right: -45px;
  bottom: -50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.ct-price-card span {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
}

.ct-price-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 3px;
  font-size: 1.4rem;
  font-weight: 900;
}

.ct-plan-note {
  margin-top: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #82561a;
  background: #fff8e9;
  border: 1px solid #ffe2ad;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

/* HOTELES */

.ct-hotels-section {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--ct-border);
}

.ct-subheading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.ct-subheading h4 {
  font-size: 1.1rem;
}

.ct-hotels-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ct-hotel-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--ct-border);
  border-radius: 13px;
  transition: 0.25s ease;
}

.ct-hotel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 47, 54, 0.3);
  box-shadow: 0 12px 28px rgba(20, 37, 61, 0.1);
}

.ct-hotel-card img {
  width: 112px;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
}

.ct-hotel-card-content {
  min-width: 0;
  padding: 13px;
}

.ct-hotel-card-content small {
  color: var(--ct-orange);
  font-weight: 900;
}

.ct-hotel-card-content h5 {
  margin: 5px 0 12px;
  color: var(--ct-navy);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.3;
}

.ct-hotel-card-content a {
  min-height: 34px;
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ct-primary);
  border: 1px solid rgba(240, 47, 54, 0.3);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
}

.ct-hotel-card-content a:hover {
  color: #ffffff;
  background: var(--ct-primary);
}

/* INTRO */

.ct-intro {
  margin: 24px 0;
  padding: 28px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(20, 37, 61, 0.98), rgba(28, 67, 83, 0.96));
  border-radius: 18px;
  box-shadow: var(--ct-shadow);
}

.ct-intro-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--ct-orange);
  border-radius: 18px;
  font-size: 1.45rem;
}

.ct-intro span {
  color: var(--ct-orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ct-intro h3 {
  margin: 6px 0 9px;
  font-size: 1.35rem;
  font-weight: 900;
}

.ct-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* =========================================================
   PESTAÑAS DE INFORMACIÓN
========================================================= */

.ct-tour-details {
  margin-top: 24px;
}

.ct-detail-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.ct-detail-tab {
  min-height: 78px;
  padding: 13px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ct-navy);
  background: #ffffff;
  border: 1px solid var(--ct-border);
  border-radius: 12px;
  cursor: pointer;
  transition: 0.25s ease;
}

.ct-detail-tab i {
  font-size: 1.12rem;
}

.ct-detail-tab span {
  font-size: 0.85rem;
  font-weight: 900;
}

.ct-detail-tab:hover {
  border-color: rgba(240, 47, 54, 0.35);
  transform: translateY(-2px);
}

.ct-detail-tab.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ct-primary), var(--ct-primary-dark));
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(240, 47, 54, 0.22);
}

.ct-tab-panel {
  margin-top: 12px;
}

.ct-tab-panel[hidden] {
  display: none !important;
}

.ct-panel-card {
  padding: 38px;
}

.ct-panel-title h3 {
  font-size: 1.45rem;
}

/* RESUMEN */

.ct-summary-days {
  margin-top: 25px;
  display: grid;
  gap: 12px;
}

.ct-summary-days article {
  padding: 16px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  background: var(--ct-soft);
  border-radius: 13px;
}

.ct-summary-days article > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--ct-primary);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 900;
}

.ct-summary-days strong {
  color: var(--ct-navy);
  font-size: 0.95rem;
}

.ct-summary-days p {
  margin: 4px 0 0;
  color: var(--ct-muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.ct-reservation-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 14px;
}

.ct-reservation-box {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border-radius: 14px;
}

.ct-reservation-box > i {
  margin-top: 2px;
  font-size: 1.15rem;
}

.ct-reservation-box h4 {
  margin: 0 0 5px;
  font-size: 0.9rem;
  font-weight: 900;
}

.ct-reservation-box p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.ct-reservation-warning {
  color: #403d00;
  background: #fff716;
}

.ct-reservation-dark {
  color: #ffffff;
  background: #54575c;
}

.ct-booking-steps {
  margin-top: 18px;
  padding: 32px;
  background: #fff8ec;
  border: 1px solid #ffe1b6;
  border-radius: 18px;
}

.ct-booking-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ct-booking-grid article {
  padding: 17px;
  background: #ffffff;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(20, 37, 61, 0.06);
}

.ct-booking-grid article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--ct-orange);
  border-radius: 10px;
  font-weight: 900;
}

.ct-booking-grid h4 {
  margin: 13px 0 6px;
  color: var(--ct-navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.ct-booking-grid p {
  margin: 0;
  color: var(--ct-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

/* ITINERARIO */

.ct-itinerary {
  padding: 35px;
  display: grid;
  gap: 28px;
  background: #ffffff;
  border: 1px solid var(--ct-border);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(20, 37, 61, 0.06);
}

.ct-itinerary-item {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 30px;
}

.ct-itinerary-item:not(:last-child) {
  padding-bottom: 28px;
  border-bottom: 1px dashed #cfd6dc;
}

.ct-itinerary-media {
  position: relative;
}

.ct-itinerary-media img {
  width: 100%;
  height: 205px;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

.ct-itinerary-media span {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 8px 12px;
  color: #ffffff;
  background: var(--ct-orange);
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.ct-itinerary-content {
  padding-top: 6px;
}

.ct-itinerary-heading {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.ct-itinerary-heading i {
  margin-top: 2px;
  color: var(--ct-primary);
  font-size: 1.2rem;
}

.ct-itinerary-heading h3 {
  margin: 0;
  color: var(--ct-navy);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ct-itinerary-content > p {
  margin: 15px 0 12px;
  color: var(--ct-text);
  font-size: 0.9rem;
  line-height: 1.72;
}

.ct-itinerary-content ul,
.ct-service-card ul,
.ct-packing-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.ct-itinerary-content li,
.ct-service-card li,
.ct-packing-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ct-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.ct-itinerary-content li::before,
.ct-service-card li::before,
.ct-packing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ct-orange);
  font-weight: 900;
}

/* INCLUYE */

.ct-service-grid,
.ct-packing-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.ct-service-card,
.ct-packing-card {
  padding: 22px;
  background: var(--ct-soft);
  border: 1px solid transparent;
  border-radius: 15px;
}

.ct-service-card > i,
.ct-packing-card > i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--ct-primary);
  background: rgba(240, 47, 54, 0.08);
  border-radius: 13px;
  font-size: 1.15rem;
}

.ct-service-card h4,
.ct-packing-card h4 {
  margin: 14px 0 12px;
  color: var(--ct-navy);
  font-size: 0.95rem;
  font-weight: 900;
}

.ct-not-included {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--ct-border);
}

.ct-not-included-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.ct-not-included-grid p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ct-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.ct-not-included-grid i {
  margin-top: 2px;
  color: var(--ct-primary);
}

/* =========================================================
   BANNER FINAL
========================================================= */

.ct-final-banner {
  position: relative;
  min-height: 430px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--ct-shadow);
}

.ct-final-banner img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}

.ct-final-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 25, 41, 0.86), rgba(10, 25, 41, 0.18));
}

.ct-final-banner-overlay {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  max-width: 520px;
  color: #ffffff;
}

.ct-final-banner-overlay h3 {
  margin: 8px 0 22px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.08;
}

/* =========================================================
   BARRA LATERAL
========================================================= */

.ct-sidebar-sticky {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 20px;
}

.ct-booking-card {
  padding: 22px;
}

.ct-booking-label {
  display: block;
  color: var(--ct-muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.ct-booking-price {
  margin-top: 12px;
  padding: 22px 14px;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--ct-orange), var(--ct-orange-dark));
  border-radius: 16px;
  text-align: center;
}

.ct-booking-price small,
.ct-booking-price span {
  display: block;
}

.ct-booking-price small {
  font-size: 0.75rem;
  font-weight: 800;
}

.ct-booking-price strong {
  display: block;
  margin: 4px 0;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.ct-booking-price span {
  font-size: 0.82rem;
  font-weight: 900;
}

.ct-booking-benefits {
  margin: 18px 0;
  display: grid;
  gap: 9px;
}

.ct-booking-benefits p {
  margin: 0;
  display: flex;
  gap: 8px;
  color: var(--ct-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.ct-booking-benefits i {
  color: var(--ct-orange);
}

.ct-booking-btn {
  width: 100%;
  min-height: 48px;
  margin-top: 9px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
}

.ct-booking-btn-light {
  color: var(--ct-primary);
  background: #fff1f2;
}

.ct-booking-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ct-primary), var(--ct-primary-dark));
}

.ct-booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(20, 37, 61, 0.12);
}

.ct-booking-btn-primary:hover {
  color: #ffffff;
}

.ct-booking-btn-light:hover {
  color: var(--ct-primary-dark);
}

/* TRENES */

.ct-train-card {
  padding: 22px;
}

.ct-sidebar-title h3 {
  font-size: 1.13rem;
}

.ct-train-option {
  margin-top: 18px;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid var(--ct-border);
}

.ct-train-option img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.ct-train-option h4 {
  margin: 0;
  color: var(--ct-navy);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.3;
}

.ct-train-option p {
  margin: 4px 0 9px;
  color: var(--ct-muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.ct-train-option a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  color: #ffffff;
  background: var(--ct-primary);
  border-radius: 7px;
  font-size: 0.66rem;
  font-weight: 900;
  text-decoration: none;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .ct-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .ct-plan-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .ct-booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ct-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ct-fact:nth-child(2) {
    border-right: 0;
  }

  .ct-fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ct-border);
  }

  .ct-layout {
    grid-template-columns: 1fr;
  }

  .ct-sidebar {
    order: -1;
  }

  .ct-sidebar-sticky {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .ct-itinerary-item {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .ct-container {
    width: min(100% - 26px, 1180px);
  }

  .ct-hero {
    min-height: 430px;
  }

  .ct-hero-content {
    padding-block: 90px 60px;
  }

  .ct-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .ct-rating {
    white-space: normal;
  }

  .ct-plan-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .ct-plan-tab:first-child {
    grid-column: 1 / -1;
  }

  .ct-price-grid {
    grid-template-columns: 1fr;
  }

  .ct-hotels-grid,
  .ct-service-grid,
  .ct-packing-grid,
  .ct-not-included-grid {
    grid-template-columns: 1fr;
  }

  .ct-intro {
    grid-template-columns: 1fr;
  }

  .ct-detail-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .ct-panel-card,
  .ct-itinerary {
    padding: 25px;
  }

  .ct-reservation-grid,
  .ct-sidebar-sticky {
    grid-template-columns: 1fr;
  }

  .ct-itinerary-item {
    grid-template-columns: 1fr;
  }

  .ct-itinerary-media img {
    height: 260px;
  }

  .ct-final-banner,
  .ct-final-banner img {
    min-height: 390px;
  }

  .ct-final-banner-overlay {
    right: 24px;
    left: 24px;
    bottom: 28px;
  }
}

@media (max-width: 520px) {
  .ct-facts {
    margin-top: -22px;
  }

  .ct-facts-grid {
    grid-template-columns: 1fr;
  }

  .ct-fact {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--ct-border);
  }

  .ct-fact:last-child {
    border-bottom: 0;
  }

  .ct-content {
    padding-top: 58px;
  }

  .ct-pricing {
    padding: 20px;
  }

  .ct-plan-tabs {
    grid-template-columns: 1fr;
  }

  .ct-plan-tab:first-child {
    grid-column: auto;
  }

  .ct-hotel-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .ct-hotel-card img {
    width: 100px;
  }

  .ct-detail-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .ct-detail-tab {
    min-height: 68px;
  }

  .ct-summary-days article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .ct-summary-days article > span {
    width: 44px;
    height: 44px;
  }

  .ct-booking-grid {
    grid-template-columns: 1fr;
  }

  .ct-panel-card,
  .ct-itinerary,
  .ct-booking-steps {
    padding: 20px;
  }

  .ct-itinerary-media img {
    height: 220px;
  }

  .ct-booking-price strong {
    font-size: 2rem;
  }
}
/* =========================================================
   PORTADA CUSCO TRADICIONAL — AJUSTADA
========================================================= */

.ct-hero {
  position: relative;

  width: 100%;
  min-height: 590px;

  display: flex;
  align-items: center;

  overflow: hidden;
  isolation: isolate;

  background-color: #14253d;
}

/* IMAGEN PRINCIPAL */
.ct-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  /* Recorta la parte superior donde está el texto de la imagen */
  object-position: center 82%;
}

/* CAPA OSCURA */
.ct-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(7, 23, 40, 0.92) 0%,
      rgba(7, 23, 40, 0.72) 38%,
      rgba(7, 23, 40, 0.28) 70%,
      rgba(7, 23, 40, 0.08) 100%
    ),
    linear-gradient(
      0deg,
      rgba(7, 23, 40, 0.68) 0%,
      rgba(7, 23, 40, 0.08) 65%
    );

  pointer-events: none;
}

/* CONTENEDOR DEL TEXTO */
.ct-hero .ct-hero-content {
  position: relative;
  z-index: 2;

  /* No colocar width: 100% */
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;
  padding: 125px 0 100px;

  color: #ffffff;
}

/* TEXTO PEQUEÑO SUPERIOR */
.ct-hero .ct-eyebrow {
  display: inline-block;

  margin: 0 0 14px;

  color: #ff9624;

  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

/* TÍTULO */
.ct-hero h1 {
  max-width: 950px;

  margin: 0 0 18px;

  color: #ffffff;

  font-size: clamp(3.2rem, 5.3vw, 5.25rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.045em;

  text-shadow: 0 7px 28px rgba(0, 0, 0, 0.32);
}

/* DURACIÓN */
.ct-hero-content > p {
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 800;

  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.ct-hero-content > p span {
  color: #ff9624;
}

/* BOTONES */
.ct-hero-actions {
  position: relative;
  z-index: 3;

  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 34px;
}

.ct-hero .ct-btn {
  min-height: 58px;
  padding: 15px 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 13px;

  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.ct-hero .ct-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ff9624, #f47d0d);
  border: 1px solid transparent;

  box-shadow: 0 14px 30px rgba(244, 125, 13, 0.3);
}

.ct-hero .ct-btn-primary:hover {
  color: #ffffff;

  transform: translateY(-3px);

  box-shadow: 0 18px 36px rgba(244, 125, 13, 0.4);
}

.ct-hero .ct-btn-outline {
  color: #ffffff;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.65);

  backdrop-filter: blur(8px);
}

.ct-hero .ct-btn-outline:hover {
  color: #14253d;
  background: #ffffff;

  transform: translateY(-3px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .ct-hero {
    min-height: 520px;
  }

  .ct-hero-image {
    object-position: center 78%;
  }

  .ct-hero .ct-hero-content {
    width: min(100% - 36px, 1180px);
    padding: 110px 0 90px;
  }

  .ct-hero h1 {
    max-width: 720px;
    font-size: clamp(3rem, 8vw, 4.6rem);
  }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 576px) {
  .ct-hero {
    min-height: 510px;
    align-items: flex-end;
  }

  .ct-hero-image {
    object-position: center bottom;
  }

  .ct-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(7, 23, 40, 0.88),
        rgba(7, 23, 40, 0.42)
      ),
      linear-gradient(
        0deg,
        rgba(7, 23, 40, 0.92) 0%,
        rgba(7, 23, 40, 0.18) 80%
      );
  }

  .ct-hero .ct-hero-content {
    width: calc(100% - 28px);
    padding: 100px 0 65px;
  }

  .ct-hero .ct-eyebrow {
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .ct-hero h1 {
    max-width: 100%;

    margin-bottom: 14px;

    font-size: clamp(2.7rem, 14vw, 3.7rem);
    line-height: 0.98;
  }

  .ct-hero-content > p {
    font-size: 1.3rem;
  }

  .ct-hero-actions {
    gap: 10px;
    margin-top: 27px;
  }

  .ct-hero .ct-btn {
    min-height: 52px;
    padding: 13px 18px;

    font-size: 0.83rem;
  }
}
.ct-itinerary-info{

margin-top:15px;
padding:12px 15px;

background:#f8fafc;

border-left:4px solid #ff7a00;

border-radius:10px;

display:flex;

align-items:center;

gap:10px;

font-size:14px;

color:#334155;

}


.ct-itinerary-info i{

color:#ff7a00;

font-size:18px;

}.ct-services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}


.ct-service-card{
    min-height:280px;
}


.ct-not-included{
    margin-top:35px;
    background:#fffaf5;
    border-radius:20px;
    padding:30px;
}


.ct-not-grid li{
    margin-bottom:12px;
    list-style:none;
    position:relative;
    padding-left:20px;
}


.ct-not-grid li::before{
    content:"✖";
    position:absolute;
    left:0;
    color:#ef4444;
}


@media(max-width:768px){

.ct-services-grid{
    grid-template-columns:1fr;
}

}
.cusco-columns{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}


@media(max-width:768px){

.cusco-columns{
grid-template-columns:1fr;
}

}
