/* =============================================
   CAMINO SACRO — Global CSS v1.0
   ============================================= */

/* Reset + Variables */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde:  #1a3a2a;
  --vm:     #2d5a3d;
  --vc:     #3d7a52;
  --oro:    #f0c060;
  --oroh:   #e0a840;
  --w:      #ffffff;
  --gris:   #f7f5f0;
  --borde:  #e8e3d8;
  --txt:    #1a1a1a;
  --sec:    #666666;
  --footer: #111e17;
  --nh:     68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--txt);
  background: var(--w);
  line-height: 1.6;
  padding-top: var(--nh);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── NAV FIJA ─── */
.cs-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(26,58,42,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--nh);
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cs-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cs-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.cs-nav__icon {
  width: 34px;
  height: 34px;
  background: var(--oro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cs-nav__brand {
  font-size: 17px;
  font-weight: 500;
  color: var(--w);
  line-height: 1.2;
}

.cs-nav__sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--oro);
  line-height: 1;
}

.cs-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin-left: auto;
}

.cs-nav__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  white-space: nowrap;
}

.cs-nav__links a:hover { color: var(--w); }

.cs-nav__cta {
  background: var(--oro);
  color: var(--verde);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.cs-nav__cta:hover { background: var(--oroh); transform: translateY(-1px); }

.cs-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.cs-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--w);
  border-radius: 2px;
  transition: all 0.3s;
}

.cs-nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cs-nav__toggle.open span:nth-child(2) { opacity: 0; }
.cs-nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.cs-nav__mobile {
  display: none;
  background: var(--verde);
  border-top: 1px solid rgba(255,255,255,0.1);
  position: absolute;
  top: var(--nh);
  left: 0; right: 0;
  z-index: 998;
}

.cs-nav__mobile.open { display: block; }

.cs-nav__mobile ul {
  list-style: none;
  padding: 16px 24px;
}

.cs-nav__mobile ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.cs-nav__mobile ul li:last-child { border-bottom: none; }

.cs-nav__mobile ul li a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.cs-nav__mobile ul li a:hover { color: var(--oro); }

.cs-nav__cta-mobile {
  background: var(--oro) !important;
  color: var(--verde) !important;
  border-radius: 20px;
  padding: 10px 20px !important;
  text-align: center;
  font-weight: 500;
  margin-top: 8px;
  display: block !important;
}

/* ─── HERO CON FOTO ─── */
.cs-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
}

.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,58,42,0.25) 0%, rgba(26,58,42,0.72) 100%);
  z-index: 1;
}

.cs-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  width: 100%;
}

.cs-hero--short  { min-height: 70vh; }
.cs-hero--medium { min-height: 50vh; }
.cs-hero--small  { min-height: 40vh; }

.cs-hero--gradient {
  background: linear-gradient(135deg, var(--verde) 0%, var(--vm) 100%);
  min-height: 280px;
}
.cs-hero--gradient::before { display: none; }

.cs-hero__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--oro);
  margin-bottom: 12px;
  font-weight: 500;
}

.cs-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 5vw, 62px);
  font-weight: 500;
  color: var(--w);
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 720px;
}

.cs-hero__title em { color: var(--oro); font-style: normal; }

.cs-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.cs-hero__badge {
  display: inline-block;
  background: var(--oro);
  color: var(--verde);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 14px;
}

.cs-hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── DATOS STRIP ─── */
.cs-datos {
  background: var(--vm);
  display: flex;
  overflow-x: auto;
}

.cs-datos__item {
  flex: 1;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.cs-datos__item:last-child { border-right: none; }

.cs-datos__val {
  font-size: 19px;
  font-weight: 500;
  color: var(--oro);
  line-height: 1.2;
}

.cs-datos__lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ─── LAYOUT PRINCIPAL ─── */
.cs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.cs-layout {
  display: grid;
  grid-template-columns: 65% 32%;
  gap: 52px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
}

.cs-aside { position: sticky; top: calc(var(--nh) + 24px); }

/* ─── SIDEBAR CARDS ─── */
.cs-sb-dark {
  background: var(--verde);
  border-radius: 12px;
  padding: 26px;
  margin-bottom: 16px;
  color: var(--w);
}

.cs-sb-dark h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.cs-sb-meta { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.cs-sb-price-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }

.cs-sb-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--oro);
  line-height: 1;
  margin-bottom: 6px;
}

.cs-sb-price-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }

.cs-sb-btn-wa {
  display: block;
  width: 100%;
  background: #25D366;
  color: var(--w);
  border: none;
  border-radius: 24px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 12px;
}

.cs-sb-btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); color: var(--w); }

.cs-sb-note { font-size: 11px; color: rgba(255,255,255,0.45); text-align: center; }

.cs-sb-light {
  border: 1px solid var(--borde);
  border-radius: 12px;
  padding: 22px;
}

.cs-sb-light h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--verde);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cs-sb-include-list { list-style: none; }

.cs-sb-include-list li {
  font-size: 13px;
  color: var(--txt);
  padding: 6px 0;
  border-bottom: 1px solid var(--borde);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.cs-sb-include-list li:last-child { border-bottom: none; }

.cs-sb-include-list li::before {
  content: '✓';
  color: #25D366;
  font-weight: 700;
  flex-shrink: 0;
}

.cs-sb-dates {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--borde);
  font-size: 13px;
  color: var(--vm);
  font-weight: 500;
}

/* ─── CARDS DE RUTAS ─── */
.cs-routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cs-route-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--borde);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--w);
}

.cs-route-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }

.cs-route-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--gris);
}

.cs-route-card__img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--vm) 0%, var(--verde) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.cs-route-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }

.cs-route-card__badge {
  display: inline-block;
  background: var(--gris);
  color: var(--vm);
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 10px;
  align-self: flex-start;
}

.cs-route-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--verde);
  margin-bottom: 6px;
  line-height: 1.2;
}

.cs-route-card__meta { font-size: 12px; color: var(--sec); margin-bottom: 14px; }

.cs-route-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
  margin-top: auto;
}

.cs-route-card__from { font-size: 11px; color: var(--sec); text-transform: uppercase; }

.cs-route-card__price {
  font-size: 24px;
  font-weight: 500;
  color: var(--verde);
  font-family: 'Cormorant Garamond', serif;
}

.cs-route-card__buttons { display: flex; gap: 8px; }

.cs-route-card__btn-primary {
  flex: 1;
  background: var(--verde);
  color: var(--w);
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s;
  display: block;
}

.cs-route-card__btn-primary:hover { background: var(--vm); color: var(--w); }

.cs-route-card__btn-wa {
  background: #25D366;
  color: var(--w);
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s;
  white-space: nowrap;
  display: block;
}

.cs-route-card__btn-wa:hover { background: #1ebe5d; color: var(--w); }

/* ─── FILTROS ─── */
.cs-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }

.cs-filter__btn {
  background: var(--w);
  border: 1px solid var(--borde);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--txt);
}

.cs-filter__btn:hover { border-color: var(--vc); color: var(--vc); }
.cs-filter__btn.active { background: var(--verde); border-color: var(--verde); color: var(--w); }

/* ─── PRECIOS ─── */
.cs-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }

.cs-price-card {
  border-radius: 10px;
  padding: 22px;
  border: 1px solid var(--borde);
}

.cs-price-card--dark { background: var(--verde); color: var(--w); border-color: transparent; }

.cs-price-card__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sec); margin-bottom: 6px; }
.cs-price-card--dark .cs-price-card__label { color: rgba(255,255,255,0.55); }

.cs-price-card__val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--verde);
  line-height: 1;
  margin-bottom: 6px;
}

.cs-price-card--dark .cs-price-card__val { color: var(--oro); }

.cs-price-card__note { font-size: 12px; color: var(--sec); }
.cs-price-card--dark .cs-price-card__note { color: rgba(255,255,255,0.5); }

.cs-price-supplements {
  background: var(--gris);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--sec);
  margin-top: 8px;
}

.cs-price-supplements p { margin-bottom: 4px; }
.cs-price-supplements p:last-child { margin-bottom: 0; }

/* ─── INCLUYE / EXCLUYE ─── */
.cs-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }

.cs-include-item, .cs-exclude-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.cs-include-item { color: var(--txt); }
.cs-exclude-item { color: var(--sec); }

.cs-include-item::before { content: '✓'; color: #25D366; font-weight: 700; flex-shrink: 0; }
.cs-exclude-item::before { content: '✗'; color: var(--sec); flex-shrink: 0; }

.cs-excludes { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }

/* ─── OPCIONALES ─── */
.cs-optional-table { width: 100%; }

.cs-optional-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--borde);
  padding: 11px 0;
  font-size: 13px;
}

.cs-optional-item:last-child { border-bottom: none; }

.cs-optional-item__price { font-weight: 500; color: var(--verde); white-space: nowrap; margin-left: 16px; }

.cs-optional-note { font-size: 12px; color: var(--sec); margin-top: 10px; font-style: italic; }

/* ─── FAQ ACORDEÓN ─── */
.cs-faq { max-width: 740px; }
.cs-faq__category { margin-bottom: 40px; }

.cs-faq__category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--verde);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--borde);
}

.cs-faq__item { border-bottom: 1px solid var(--borde); }

.cs-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--verde);
  gap: 12px;
}

.cs-faq__q::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--vc); flex-shrink: 0; transition: content 0.2s; }
.cs-faq__item.open .cs-faq__q::after { content: '−'; }

.cs-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.cs-faq__item.open .cs-faq__a { max-height: 600px; }

.cs-faq__a-inner { padding: 0 0 16px; font-size: 14px; color: var(--sec); line-height: 1.7; }

/* ─── TESTIMONIOS ─── */
.cs-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.cs-test-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 24px;
}

.cs-test-stars { color: var(--oro); font-size: 13px; margin-bottom: 12px; }

.cs-test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 16px;
}

.cs-test-author { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ─── SECCIONES ─── */
.cs-section { padding: 88px 48px; background: var(--w); }
.cs-section--gris { background: var(--gris); }
.cs-section--verde { background: var(--verde); }
.cs-section--vm { background: var(--vm); }

.cs-section__inner { max-width: 1200px; margin: 0 auto; }

.cs-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vc);
  margin-bottom: 10px;
  font-weight: 500;
  display: block;
}

.cs-label--gold { color: var(--oro); }

.cs-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 500;
  color: var(--verde);
  line-height: 1.12;
  margin-bottom: 14px;
}

.cs-h2--white { color: var(--w); }

.cs-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
}

.cs-section-header__link {
  font-size: 13px;
  color: var(--vc);
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid var(--vc);
  padding-bottom: 2px;
}

.cs-section-header__link:hover { color: var(--verde); border-color: var(--verde); }

/* ─── TIPOGRAFÍA MAIN ─── */
.cs-main h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--verde);
  margin: 44px 0 16px;
  padding-top: 36px;
  border-top: 1px solid var(--borde);
}

.cs-main h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.cs-main p { font-size: 15px; color: var(--txt); line-height: 1.75; margin-bottom: 16px; }

/* ─── ITINERARIO ─── */
.cs-itinerary { list-style: none; position: relative; }

.cs-itinerary::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--borde);
}

.cs-itinerary__item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}

.cs-itinerary__dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--vm);
  color: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.cs-itinerary__dot--gold { background: var(--oro); color: var(--verde); }

.cs-itinerary__body { flex: 1; padding-top: 4px; }

.cs-itinerary__title { font-size: 16px; font-weight: 500; color: var(--verde); margin-bottom: 4px; }
.cs-itinerary__sub { font-size: 12px; color: var(--vc); font-weight: 500; margin-bottom: 6px; }
.cs-itinerary__desc { font-size: 14px; color: var(--sec); line-height: 1.6; }

/* ─── BOTONES ─── */
.cs-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--oro);
  color: var(--verde);
  border-radius: 24px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.cs-btn-gold:hover { background: var(--oroh); transform: translateY(-1px); color: var(--verde); }

.cs-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--w);
  border-radius: 24px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.cs-btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); color: var(--w); }

.cs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--w);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 24px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.cs-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: var(--w); }

/* ─── TRUST STRIP ─── */
.cs-trust { background: var(--vm); display: grid; grid-template-columns: repeat(4, 1fr); }

.cs-trust__item {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.cs-trust__item:last-child { border-right: none; }

.cs-trust__val {
  font-size: 28px;
  font-weight: 500;
  color: var(--oro);
  font-family: 'Cormorant Garamond', serif;
  display: block;
  margin-bottom: 4px;
}

.cs-trust__lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); }

/* ─── CARDS GRID ─── */
.cs-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.cs-card {
  background: var(--w);
  border: 1px solid var(--borde);
  border-radius: 12px;
  padding: 28px;
}

.cs-card__icon { font-size: 28px; margin-bottom: 14px; }
.cs-card__title { font-size: 17px; font-weight: 500; color: var(--verde); margin-bottom: 10px; }
.cs-card__text { font-size: 14px; color: var(--sec); line-height: 1.65; }

/* ─── TABLA COMPARATIVA ─── */
.cs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cs-table th { background: var(--gris); padding: 12px 16px; text-align: left; font-weight: 500; color: var(--verde); border-bottom: 2px solid var(--borde); }
.cs-table td { padding: 12px 16px; border-bottom: 1px solid var(--borde); color: var(--txt); }
.cs-table tr:last-child td { border-bottom: none; }

/* ─── COMBO BOX ─── */
.cs-combo-box {
  background: var(--gris);
  border: 1px solid var(--borde);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cs-combo-box__text { font-size: 14px; color: var(--txt); font-weight: 500; }

/* ─── CONTACTO ─── */
.cs-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }

.cs-contact-card {
  border: 1px solid var(--borde);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.cs-contact-card__icon { font-size: 32px; margin-bottom: 12px; }
.cs-contact-card__title { font-size: 17px; font-weight: 500; color: var(--verde); margin-bottom: 8px; }
.cs-contact-card__text { font-size: 13px; color: var(--sec); line-height: 1.5; margin-bottom: 16px; }

/* ─── FORMULARIO ─── */
.cs-form { max-width: 600px; }
.cs-form__group { margin-bottom: 20px; }

.cs-form__label { display: block; font-size: 13px; font-weight: 500; color: var(--verde); margin-bottom: 6px; }

.cs-form__input, .cs-form__select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--borde);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--txt);
  background: var(--w);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.cs-form__input:focus, .cs-form__select:focus { outline: none; border-color: var(--vc); }

.cs-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.cs-form__privacy { font-size: 12px; color: var(--sec); margin-top: 10px; text-align: center; }

/* ─── CTA ─── */
.cs-cta { text-align: center; padding: 72px 48px; background: var(--vm); }
.cs-cta .cs-label { display: block; }
.cs-cta .cs-h2 { margin-bottom: 12px; }
.cs-cta p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cs-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── AÑO SANTO BOX ─── */
.cs-year-santo {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 36px;
  color: var(--w);
  margin: 32px 0;
}

.cs-year-santo h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--oro);
  margin-bottom: 12px;
}

.cs-year-santo p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 10px; }
.cs-year-santo p:last-of-type { margin-bottom: 20px; }

/* ─── NOSOTROS PERSONAS ─── */
.cs-personas { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin: 32px 0; }

.cs-persona__img-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--vm), var(--verde));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin-bottom: 16px;
}

.cs-persona__name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--verde); margin-bottom: 4px; }
.cs-persona__role { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--vc); margin-bottom: 12px; font-weight: 500; }
.cs-persona__text { font-size: 14px; color: var(--sec); line-height: 1.7; margin-bottom: 8px; }

.cs-persona__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--vm);
  border-left: 3px solid var(--oro);
  padding-left: 14px;
  margin-top: 12px;
}

/* ─── PLANIFICAR ─── */
.cs-plan-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 16px; }
.cs-plan-table th { background: var(--verde); color: var(--w); padding: 10px 14px; text-align: left; font-weight: 500; }
.cs-plan-table td { padding: 10px 14px; border-bottom: 1px solid var(--borde); color: var(--txt); }
.cs-plan-table tr:nth-child(even) td { background: var(--gris); }

.cs-seasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 20px; }

.cs-season-card { background: var(--gris); border-radius: 8px; padding: 20px; text-align: center; }
.cs-season-card__icon { font-size: 28px; margin-bottom: 8px; }
.cs-season-card__title { font-size: 14px; font-weight: 500; color: var(--verde); margin-bottom: 6px; }
.cs-season-card__text { font-size: 12px; color: var(--sec); line-height: 1.5; }

.cs-equip-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.cs-equip-list li {
  font-size: 14px;
  color: var(--txt);
  padding: 8px 12px;
  background: var(--gris);
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.cs-equip-list li.warn { background: #fff8e8; border-left: 3px solid var(--oro); font-weight: 500; }

.cs-airports-grid { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

.cs-airport-badge {
  background: var(--verde);
  color: var(--w);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
}

/* ─── EXPERIENCIAS ─── */
.cs-experience-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0; }

/* ─── DIAS/TIPO GRID 2COL ─── */
.cs-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 24px 0; }

.cs-two-col__title { font-size: 16px; font-weight: 500; color: var(--verde); margin-bottom: 12px; }

.cs-two-col ul { list-style: none; }
.cs-two-col ul li {
  font-size: 14px;
  color: var(--txt);
  padding: 8px 0;
  border-bottom: 1px solid var(--borde);
  display: flex;
  gap: 8px;
}
.cs-two-col ul li:last-child { border-bottom: none; }
.cs-two-col ul li span { color: var(--sec); }

/* ─── CONTACTO INFO ─── */
.cs-contact-info { list-style: none; }

.cs-contact-info li {
  font-size: 15px;
  color: var(--txt);
  padding: 10px 0;
  border-bottom: 1px solid var(--borde);
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs-contact-info li:last-child { border-bottom: none; }
.cs-contact-info a { color: var(--vm); }
.cs-contact-info a:hover { color: var(--verde); }

/* ─── FOOTER ─── */
.cs-footer { background: var(--footer); padding: 52px 48px 28px; }

.cs-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.cs-footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.cs-footer__icon { width: 32px; height: 32px; font-size: 14px; }

.cs-footer__brand { font-size: 15px; font-weight: 500; color: var(--w); line-height: 1.2; }
.cs-footer__tagline { font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }

.cs-footer__iniciativa { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.cs-footer__iniciativa a { color: var(--oro); text-decoration: underline; text-decoration-color: rgba(240,192,96,0.4); }
.cs-footer__iniciativa a:hover { color: var(--oroh); }

.cs-footer__heading { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); margin-bottom: 16px; font-weight: 500; }

.cs-footer__links { list-style: none; line-height: 2; }
.cs-footer__links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.cs-footer__links a:hover { color: var(--w); }

.cs-footer__contact { list-style: none; line-height: 2; }
.cs-footer__contact li { font-size: 13px; color: rgba(255,255,255,0.5); }
.cs-footer__contact a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.cs-footer__contact a:hover { color: var(--w); }

.cs-footer__social { list-style: none; line-height: 2; }
.cs-footer__social a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.cs-footer__social a:hover { color: var(--w); }

.cs-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

.cs-footer__bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.cs-footer__bottom a:hover { color: var(--w); }

/* ─── ISABEL ─── */
.cs-isabel { position: fixed; bottom: 24px; right: 24px; z-index: 9999; text-decoration: none; }

.cs-isabel__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cs-isabel:hover .cs-isabel__btn {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ─── RESPONSIVE 1024px ─── */
@media (max-width: 1024px) {
  .cs-layout { grid-template-columns: 1fr; padding: 40px 32px; gap: 24px; }
  .cs-aside { position: static; order: -1; }
  .cs-test-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .cs-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-trust { grid-template-columns: repeat(2, 1fr); }
  .cs-trust__item:nth-child(2) { border-right: none; }
  .cs-trust__item:nth-child(3),
  .cs-trust__item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.15); }
  .cs-seasons { grid-template-columns: repeat(2, 1fr); }
  .cs-experience-cards { grid-template-columns: repeat(2, 1fr); }
  .cs-contact-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ─── RESPONSIVE 768px ─── */
@media (max-width: 768px) {
  .cs-nav__links, .cs-nav__cta { display: none; }
  .cs-nav__toggle { display: flex; }
  .cs-nav__inner { padding: 0 20px; }

  .cs-hero { min-height: 70vh; }
  .cs-hero--gradient { min-height: 220px; }
  .cs-hero--medium { min-height: 45vh; }
  .cs-hero--small { min-height: 35vh; }
  .cs-hero__content { padding: 40px 20px; }
  .cs-hero__title { font-size: 28px; }
  .cs-hero__buttons { flex-direction: column; }

  .cs-datos { display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .cs-datos__item { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); }
  .cs-datos__item:nth-child(3n) { border-right: none; }
  .cs-datos__item:nth-last-child(-n+3) { border-bottom: none; }

  .cs-layout { grid-template-columns: 1fr; padding: 28px 20px; gap: 24px; }

  .cs-prices { grid-template-columns: 1fr; }
  .cs-includes { grid-template-columns: 1fr; }
  .cs-test-grid { grid-template-columns: 1fr; }
  .cs-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .cs-cards-grid { grid-template-columns: 1fr; }
  .cs-routes-grid { grid-template-columns: 1fr; }
  .cs-trust { grid-template-columns: repeat(2, 1fr); }
  .cs-experience-cards { grid-template-columns: 1fr; }
  .cs-contact-cards { grid-template-columns: 1fr; }
  .cs-personas { grid-template-columns: 1fr; }
  .cs-seasons { grid-template-columns: 1fr 1fr; }
  .cs-equip-list { grid-template-columns: 1fr; }
  .cs-two-col { grid-template-columns: 1fr; }

  .cs-section { padding: 56px 20px; }
  .cs-cta { padding: 56px 20px; }
  .cs-container { padding: 0 20px; }

  .cs-btn-gold, .cs-btn-wa, .cs-btn-ghost {
    min-height: 48px;
    width: 100%;
    justify-content: center;
  }

  .cs-h2 { font-size: 26px; }

  .cs-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  .cs-combo-box { flex-direction: column; text-align: center; }

  .cs-footer__bottom { flex-direction: column; text-align: center; }

  .cs-plan-table { font-size: 11px; }
  .cs-plan-table th, .cs-plan-table td { padding: 8px 8px; }
}

/* === CARD IMAGES === */
.cs-route-card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.cs-route-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.cs-route-card:hover .cs-route-card__img img {
  transform: scale(1.05);
}

/* === HERO SHORT PLAIN (no background image) === */
.cs-hero--short-plain {
  background: linear-gradient(160deg, #1a3a2a 0%, #2d5a3d 100%);
  min-height: 280px;
  padding-top: 120px;
}

/* === CONTACTO PAGE LAYOUT === */
.cs-contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.cs-contact-main { }
.cs-contact-side { }

.cs-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cs-form__textarea {
  resize: vertical;
  min-height: 120px;
}
.cs-form__submit {
  background: var(--dorado, #f0c060);
  color: var(--verde, #1a3a2a);
  border: none;
  padding: 14px 32px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: 'DM Sans', sans-serif;
  margin-top: 8px;
}
.cs-form__submit:hover {
  background: var(--dorado-h, #e0a840);
  transform: translateY(-1px);
}

.cs-contact-card--wa {
  background: #e8f8ee;
  border-color: #25D366;
}
.cs-contact-card__hours {
  font-size: 12px;
  color: var(--sec, #666);
  margin-top: 8px;
  line-height: 1.5;
}
.cs-contact-card__link {
  font-size: 14px;
  color: var(--verde, #1a3a2a);
  font-weight: 500;
  text-decoration: none;
}
.cs-contact-card__link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .cs-contact-layout {
    grid-template-columns: 1fr;
  }
  .cs-form__row {
    grid-template-columns: 1fr;
  }
}

/* === PERSONA PHOTOS === */
.cs-persona__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* === EQUIPO ESPAÑA HORIZONTAL === */
.cs-equipo-espana {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding: 32px;
  background: var(--gris, #f7f5f0);
  border-radius: 16px;
  border: 1px solid var(--borde, #e8e3d8);
}
.cs-equipo-espana__icon {
  font-size: 48px;
  flex-shrink: 0;
}
.cs-equipo-espana__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--verde, #1a3a2a);
  margin-bottom: 4px;
}
.cs-equipo-espana__role {
  font-size: 13px;
  color: var(--dorado, #f0c060);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.cs-equipo-espana__bio {
  font-size: 14px;
  color: var(--sec, #666);
  line-height: 1.6;
}
@media (max-width: 600px) {
  .cs-equipo-espana {
    flex-direction: column;
    text-align: center;
  }
}

/* === BLOG GRID === */
.cs-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cs-blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--borde, #e8e3d8);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cs-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.cs-blog-card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.cs-blog-card__body {
  padding: 24px;
}
.cs-blog-card__date {
  font-size: 12px;
  color: var(--sec, #666);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cs-blog-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin: 8px 0 12px;
  line-height: 1.3;
}
.cs-blog-card__title a {
  color: var(--verde, #1a3a2a);
  text-decoration: none;
}
.cs-blog-card__title a:hover { color: var(--dorado, #f0c060); }
.cs-blog-card__excerpt {
  font-size: 14px;
  color: var(--sec, #666);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cs-blog-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--verde, #1a3a2a);
  text-decoration: none;
}
.cs-blog-card__link:hover { color: var(--dorado, #f0c060); }
.cs-blog-pagination { text-align: center; margin-top: 48px; }
.cs-blog-pagination .nav-links a,
.cs-blog-pagination .nav-links span {
  padding: 8px 16px;
  margin: 0 4px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
}
.cs-blog-pagination .nav-links a { color: var(--verde, #1a3a2a); border: 1px solid var(--borde, #e8e3d8); }
.cs-blog-pagination .nav-links a:hover { background: var(--gris, #f7f5f0); }
.cs-blog-pagination .nav-links .current { background: var(--verde, #1a3a2a); color: #fff; }

/* === SINGLE POST === */
.cs-single-post { max-width: 760px; margin: 0 auto; }
.cs-single-post__featured { margin-bottom: 32px; border-radius: 12px; overflow: hidden; }
.cs-single-post__featured img { width: 100%; height: auto; display: block; }
.cs-single-post__content { font-size: 16px; line-height: 1.8; color: var(--txt, #1a1a1a); }
.cs-single-post__content h2 { font-family: 'Cormorant Garamond', serif; font-size: 28px; margin: 32px 0 16px; color: var(--verde, #1a3a2a); }
.cs-single-post__content h3 { font-size: 20px; margin: 24px 0 12px; color: var(--verde, #1a3a2a); }
.cs-single-post__content p { margin-bottom: 16px; }
.cs-single-post__content img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; }
.cs-single-post__back { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--borde, #e8e3d8); }
.cs-single-post__back a { font-size: 14px; font-weight: 500; color: var(--verde, #1a3a2a); text-decoration: none; }

@media (max-width: 900px) { .cs-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cs-blog-grid { grid-template-columns: 1fr; } }
