/* ==========================================================
   Nelson Mudanzas · Stylesheet
   Paleta: rojo Nelson, navy profundo, naranja accent, WhatsApp
   ========================================================== */

:root {
  --c-red:        #C8102E;
  --c-red-dark:   #A00B23;
  --c-navy:       #1F3A5F;
  --c-navy-dark:  #15293F;
  --c-orange:     #FF6B1A;
  --c-orange-d:   #E25510;
  --c-wa:         #25D366;
  --c-wa-dark:    #1FAE53;
  --c-text:       #1A1A1A;
  --c-text-soft:  #555E6E;
  --c-muted:      #8B95A4;
  --c-line:       #E1E5EB;
  --c-bg:         #FFFFFF;
  --c-bg-soft:    #F6F8FB;
  --c-bg-dark:    #0E1A2E;
  --c-bg-overlay: rgba(14, 26, 46, 0.65);
  --c-card-shadow: 0 4px 24px rgba(31, 58, 95, 0.08);
  --c-card-shadow-hover: 0 10px 32px rgba(31, 58, 95, 0.18);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --container: 1200px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Botones ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all .2s ease;
  cursor: pointer;
  text-align: center;
}
.btn-block { width: 100%; }
.btn-primary {
  background: var(--c-red);
  color: white;
}
.btn-primary:hover { background: var(--c-red-dark); transform: translateY(-1px); }

.btn-accent {
  background: var(--c-orange);
  color: white;
}
.btn-accent:hover { background: var(--c-orange-d); transform: translateY(-1px); }

.btn-whatsapp {
  background: var(--c-wa);
  color: white;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .35);
}
.btn-whatsapp:hover { background: var(--c-wa-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--c-navy);
  border: 2px solid var(--c-navy);
}
.btn-outline:hover { background: var(--c-navy); color: white; }

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-outline-light:hover { background: white; color: var(--c-navy); }


/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}
.brand-logo-footer {
  height: 64px;
  width: auto;
  margin-bottom: 12px;
}
/* Compatibilidad por si quedó algún brand-name/brand-sub residual */
.brand-name, .brand-sub,
.brand-name-light, .brand-sub-light { display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-menu a {
  font-weight: 500;
  font-size: 15px;
  color: var(--c-text);
  transition: color .15s;
}
.nav-menu a:hover { color: var(--c-red); }
.nav-cta {
  background: var(--c-orange);
  color: white !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.nav-cta:hover { background: var(--c-orange-d); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  width: 26px; height: 2px; background: var(--c-navy);
  transition: transform .25s, opacity .2s;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  margin-top: 72px;
  min-height: 700px;
  padding: 80px 0 80px;
  color: white;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  /* Foto del Cerro de los Siete Colores (Purmamarca, Jujuy) - Wikimedia Commons.
     Es el paisaje detrás del camión Nelson en la foto del cliente.
     Reemplazar por la foto real del camión Nelson cuando esté disponible
     (debería ir en assets/img/hero-purmamarca.jpg y cambiar la url() abajo). */
  background-image: url("assets/hero-purmamarca.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #4a2510;
}
.hero-overlay {
  position: absolute; inset: 0;
  /* Gradiente que oscurece más el lado izquierdo (donde va el texto)
     y deja más visible el paisaje del lado derecho. */
  background:
    linear-gradient(90deg, rgba(14,26,46,0.85) 0%, rgba(14,26,46,0.50) 38%, rgba(14,26,46,0.10) 75%, rgba(14,26,46,0.05) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.40) 100%);
}

/* Camión Nelson SVG: oculto porque ahora tenemos la foto real del camión en el hero.
   Si querés re-mostrarlo (fallback visual), eliminá este `display: none`. */
.hero-truck { display: none; }
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: var(--c-orange);
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin-bottom: 24px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 36px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero form */
.hero-form {
  background: white;
  color: var(--c-text);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--c-text-soft);
  margin-bottom: 22px;
}
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.form-row input, .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  font-size: 14px;
  font-family: inherit;
  background: white;
  transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus, .form-row select:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.15);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-disclaimer {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 12px;
  text-align: center;
}

/* ==========================================================
   CONTADORES
   ========================================================== */
.counters {
  background: var(--c-navy);
  color: white;
  padding: 32px 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.counter { display: flex; flex-direction: column; gap: 6px; }
.counter-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}
.counter-num.counter-stars {
  font-size: 22px;
  color: #FBBC04;
  letter-spacing: 2px;
  line-height: 1.5;
}
.counter-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}

/* ==========================================================
   SECCIONES GENERALES
   ========================================================== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--c-red);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.lead {
  font-size: 17px;
  color: var(--c-text-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* ==========================================================
   SERVICIOS (3 paquetes)
   ========================================================== */
.services {
  padding: 90px 0;
  background: var(--c-bg-soft);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.card {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--c-card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--c-card-shadow-hover); }
.card header { border-bottom: 1px solid var(--c-line); padding-bottom: 18px; margin-bottom: 22px; }
.card h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.card-tag {
  font-size: 14px;
  color: var(--c-text-soft);
  font-style: italic;
}
.card-list {
  flex-grow: 1;
  margin-bottom: 24px;
}
.card-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.45;
}
.card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-red);
  font-weight: 700;
  font-size: 16px;
}
.card-featured {
  background: linear-gradient(160deg, white 0%, #FFF6F7 100%);
  border: 2px solid var(--c-red);
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(200, 16, 46, 0.18);
}
.card-featured:hover { transform: scale(1.02) translateY(-4px); }
.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-red);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.card-featured .card-list li::before { color: var(--c-red); }
.card-premium .card-list li::before { color: var(--c-orange); }

/* ==========================================================
   CÓMO TRABAJAMOS
   ========================================================== */
.steps { padding: 90px 0; background: white; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  display: inline-flex;
  width: 64px; height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), var(--c-orange));
  color: white;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.25);
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.step p { font-size: 14.5px; color: var(--c-text-soft); line-height: 1.5; }

/* ==========================================================
   ESPECIALIDADES
   ========================================================== */
.specialties { padding: 90px 0; background: var(--c-bg-soft); }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.spec {
  background: white;
  padding: 32px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--c-card-shadow);
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid var(--c-red);
}
.spec:hover { transform: translateY(-4px); box-shadow: var(--c-card-shadow-hover); }
.spec-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.spec h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.spec p { font-size: 14.5px; color: var(--c-text-soft); line-height: 1.55; }

/* ==========================================================
   CLIENTES
   ========================================================== */
.clients { padding: 90px 0; background: white; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.client {
  background: white;
  border-radius: var(--r-md);
  padding: 24px 16px 20px;
  text-align: center;
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 150px;
  transition: all .2s;
}
.client:hover {
  border-color: var(--c-red);
  transform: translateY(-3px);
  box-shadow: var(--c-card-shadow);
}
.client-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 70px;
  padding: 4px 8px;
}
.client-logo img,
.client-logo svg {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.92;
  transition: filter .25s, opacity .25s;
}
.client:hover .client-logo img,
.client:hover .client-logo svg {
  filter: grayscale(0%);
  opacity: 1;
}
.client small {
  display: block;
  font-size: 11.5px;
  color: var(--c-text-soft);
  font-style: italic;
  line-height: 1.3;
  padding: 0 4px;
}
.clients-footer {
  text-align: center;
  margin-top: 36px;
  color: var(--c-muted);
  font-size: 13px;
  font-style: italic;
}

/* ==========================================================
   TESTIMONIOS
   ========================================================== */
.testimonials {
  padding: 90px 0;
  background: var(--c-bg-soft);
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: var(--c-card-shadow);
  margin-top: 20px;
}
.google-badge .stars { color: #FBBC04; font-size: 16px; letter-spacing: 1px; }
.google-badge .rating-text { font-size: 14px; color: var(--c-text); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--c-card-shadow);
  margin: 0;
  position: relative;
}
.testimonial .stars {
  color: #FBBC04;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.testimonial p {
  font-size: 16px;
  font-style: italic;
  color: var(--c-text);
  line-height: 1.55;
  margin-bottom: 22px;
}
.testimonial footer { border-top: 1px solid var(--c-line); padding-top: 14px; }
.testimonial footer strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-navy);
}
.testimonial footer span {
  font-size: 12.5px;
  color: var(--c-text-soft);
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq { padding: 90px 0; background: white; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--c-bg-soft);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: background .15s;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--c-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--c-red);
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-item[open] { background: white; box-shadow: var(--c-card-shadow); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--c-text-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================
   CTA FINAL
   ========================================================== */
.cta-band {
  background: linear-gradient(110deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
  color: white;
  padding: 70px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.cta-inner p { font-size: 16px; color: rgba(255,255,255,.85); }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--c-bg-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-grid h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-grid p {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-grid a:hover { color: var(--c-orange); }
.footer-brand { display: flex; flex-direction: column; }
.footer-tag {
  margin-top: 18px;
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ==========================================================
   WHATSAPP FLOTANTE
   ========================================================== */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 64px; height: 64px;
  background: var(--c-wa);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form { order: -1; }
  .cards, .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid, .spec-grid, .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-featured { transform: none; }
  .card-featured:hover { transform: translateY(-4px); }

  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 16px 20px;
    border-bottom: 1px solid var(--c-line);
    transform: translateY(-120%);
    transition: transform .3s ease;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-menu a { padding: 14px 4px; border-bottom: 1px solid var(--c-line); }
  .nav-menu a:last-child { border-bottom: 0; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .nav-toggle { display: flex; }

  .hero-truck { width: min(420px, 80%); bottom: 12px; }
  .hero { padding-bottom: 160px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero { padding: 50px 0 130px; min-height: auto; }
  .hero-eyebrow { font-size: 11px; }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-form { padding: 24px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-truck { width: 88%; bottom: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .steps-grid, .spec-grid, .clients-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .counter-num { font-size: 28px; }
  .counter-num.counter-stars { font-size: 18px; }
  .wa-float { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 28px; height: 28px; }
  .brand-name { font-size: 30px; }
}

/* ==========================================================
   SUBPÁGINAS DE DESTINOS · v2 con contenido rico
   ========================================================== */

.dest-page { background: var(--c-bg); }

/* Breadcrumb */
.breadcrumb {
  margin-top: 72px;
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-line);
  padding: 12px 0;
  font-size: 13px;
}
.breadcrumb a {
  color: var(--c-text-soft);
  text-decoration: none;
  transition: color .15s;
}
.breadcrumb a:hover { color: var(--c-dest, var(--c-red)); }
.bc-sep { color: var(--c-muted); margin: 0 8px; }
.bc-current { color: var(--c-navy); font-weight: 600; }

/* Hero del destino */
.dest-hero {
  position: relative;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: white;
  padding: 90px 0 100px;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.dest-hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 2;
}
.dest-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.dest-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.dest-hero-subtitle {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin-bottom: 30px;
  max-width: 620px;
}
.dest-hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.dest-hero-stats > div { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}
.stat-lbl {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.dest-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Eyebrow color del destino */
.eyebrow-dest {
  color: var(--c-dest, var(--c-red)) !important;
}

/* Sección Sobre el destino */
.dest-about {
  padding: 80px 0;
  background: white;
}
.dest-about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.dest-about-text h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.dest-about-text p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: 16px;
}
.dest-about-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(31,58,95,0.18);
  aspect-ratio: 4 / 3;
}
.dest-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dest-about-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--c-dest, var(--c-red));
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Sección Zonas cubiertas */
.dest-zonas {
  padding: 70px 0;
  background: var(--c-dest-bg, var(--c-bg-soft));
}
.dest-zonas h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.zonas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
}
.zonas-grid li {
  background: white;
  padding: 14px 18px 14px 40px;
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-dest, var(--c-red));
  font-size: 15px;
  font-weight: 600;
  color: var(--c-navy);
  position: relative;
}
.zonas-grid li::before {
  content: "📍";
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 14px;
}

/* Sección Tips */
.dest-tips {
  padding: 80px 0;
  background: white;
}
.dest-tips h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.tip-card {
  background: var(--c-bg-soft);
  border-radius: var(--r-md);
  padding: 26px 24px;
  border-top: 4px solid var(--c-dest, var(--c-red));
  transition: transform .25s, box-shadow .25s;
}
.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--c-card-shadow-hover);
}
.tip-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.tip-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--c-text-soft);
}

/* Sección Qué incluye */
.dest-includes {
  padding: 70px 0;
  background: var(--c-dest-bg, var(--c-bg-soft));
}
.dest-includes h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
}
.includes-grid ul { list-style: none; padding: 0; margin: 0; }
.includes-grid li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.includes-grid li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 10px;
  color: var(--c-dest, var(--c-red));
  font-weight: 800;
  font-size: 16px;
}

/* Galería */
.dest-gallery-section {
  padding: 70px 0;
  background: white;
}
.dest-gallery-section h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.dest-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dest-gallery figure {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--c-bg-soft);
}
.dest-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.dest-gallery figure:hover img { transform: scale(1.05); }

/* FAQ */
.dest-faq {
  padding: 70px 0;
  background: var(--c-dest-bg, var(--c-bg-soft));
}
.dest-faq h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

/* CTA banda */
.dest-cta {
  background: linear-gradient(110deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
  color: white;
  padding: 70px 0;
  text-align: center;
}
.dest-cta h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.dest-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.dest-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cross-links */
.dest-cross {
  padding: 70px 0;
  background: white;
}
.dest-cross h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.cross-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.cross-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  font-weight: 600;
  color: var(--c-navy);
  text-decoration: none;
  transition: all .2s;
}
.cross-link:hover {
  background: var(--c-dest, var(--c-navy));
  color: white;
  border-color: var(--c-dest, var(--c-navy));
  transform: translateY(-2px);
  box-shadow: var(--c-card-shadow);
}
.cross-name { font-size: 15px; }
.cross-arrow { font-size: 18px; font-weight: 700; }

/* Responsive subpáginas */
@media (max-width: 960px) {
  .dest-about-grid { grid-template-columns: 1fr; gap: 36px; }
  .tips-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .dest-gallery { grid-template-columns: repeat(2, 1fr); }
  .dest-hero { padding: 70px 0 70px; min-height: 460px; }
}
@media (max-width: 560px) {
  .dest-hero { padding: 60px 0 50px; min-height: 380px; }
  .dest-hero-title { font-size: 30px; }
  .dest-hero-stats { gap: 22px; }
  .stat-num { font-size: 18px; }
  .dest-about, .dest-tips, .dest-includes, .dest-gallery-section, .dest-faq, .dest-cross { padding: 50px 0; }
  .breadcrumb { font-size: 12px; }
}

/* ==========================================================
   HOME · Sección "Destinos que cubrimos" (cards en la home)
   ========================================================== */
.destinos {
  padding: 90px 0;
  background: var(--c-bg-soft);
}
.destinos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.destino-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 32px 20px;
  background: white;
  border: 2px solid var(--c-line);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--c-text);
  transition: all .25s;
}
.destino-card:hover {
  border-color: var(--c-red);
  transform: translateY(-4px);
  box-shadow: var(--c-card-shadow-hover);
}
.destino-emoji {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.destino-nombre {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.3px;
  display: block;
}
.destino-info {
  font-size: 13px;
  color: var(--c-text-soft);
  font-weight: 500;
  display: block;
}
.destino-card-all {
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-dark));
  border-color: var(--c-navy);
}
.destino-card-all .destino-nombre { color: white; }
.destino-card-all .destino-info { color: rgba(255,255,255,0.75); }
.destino-card-all:hover {
  border-color: var(--c-orange);
  background: linear-gradient(135deg, var(--c-navy-dark), #0a1830);
}

/* Hacer clickeables las tarjetas "spec" que linkean a subpáginas */
a.spec.spec-link {
  text-decoration: none;
  color: inherit;
  position: relative;
  cursor: pointer;
}
a.spec.spec-link .spec-cta {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  font-size: 13px;
  color: var(--c-red);
  letter-spacing: 0.3px;
}
a.spec.spec-link:hover .spec-cta { color: var(--c-orange); }

@media (max-width: 960px) {
  .destinos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .destinos { padding: 60px 0; }
  .destinos-grid { grid-template-columns: 1fr; }
  .destino-emoji { font-size: 36px; }
  .destino-nombre { font-size: 18px; }
}

/* ==========================================================
   TOAST de feedback (formulario)
   ========================================================== */
.toast {
  position: fixed;
  bottom: 110px;
  right: 26px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-navy);
  color: white;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  max-width: 360px;
  transform: translateY(80px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.toast-show { transform: translateY(0); opacity: 1; }
.toast-success { background: var(--c-wa); }
.toast-info { background: var(--c-navy); }
.toast-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .toast { right: 12px; left: 12px; bottom: 90px; max-width: none; }
}
