/** Shopify CDN: Minification failed

Line 684:17 Unterminated string token

**/

/* HULEY EXPERIENCE — Brand kit oficial 2026
   Uso: <link rel="stylesheet" href="../_brand/huley-brand.css">
   Fuentes via Google Fonts:
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
*/

:root {
  /* PALETA OFICIAL */
  --huley-bg:        #060606;
  --huley-bg-2:      #0F0F0F;
  --huley-bg-card:   #141414;
  --huley-line:      #1F1F1F;
  --huley-text:      #F5F5F5;
  --huley-text-mut:  #B5B5B5;
  --huley-accent:    #2EC4B6;       /* turquesa Huley */
  --huley-accent-2:  #FF6B35;       /* naranja desierto (para Marrakech) */
  --huley-accent-3:  #4FC3F7;       /* azul nieve (para colegios invierno) */
  --huley-success:   #2EC4B6;
  --huley-warning:   #FFB627;
  --huley-danger:    #E63946;

  /* TIPOGRAFIA */
  --font-display: 'Bebas Neue', 'Anton', Impact, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ESCALA */
  --fs-h1: clamp(2.5rem, 7vw, 5.5rem);
  --fs-h2: clamp(1.75rem, 4.5vw, 3.25rem);
  --fs-h3: clamp(1.25rem, 2.5vw, 1.75rem);
  --fs-body: 1.05rem;
  --fs-small: 0.875rem;

  /* SPACING */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 5rem;

  /* RADIUS */
  --r-s: 6px;
  --r-m: 12px;
  --r-l: 24px;
  --r-pill: 999px;

  /* SHADOWS */
  --sh-glow: 0 0 32px rgba(46, 196, 182, 0.18);
  --sh-card: 0 12px 28px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--huley-bg);
  color: var(--huley-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--huley-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.huley-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

/* TIPOGRAFIA */
.h-display {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h-section {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.h-card {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  text-transform: uppercase;
  line-height: 1.1;
}
.text-muted { color: var(--huley-text-mut); }
.text-accent { color: var(--huley-accent); }

/* CTA BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--r-pill);
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--huley-accent);
  color: var(--huley-bg);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-glow);
  text-decoration: none;
}
.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--huley-text);
  border: 1.5px solid var(--huley-line);
}
.btn-ghost:hover { border-color: var(--huley-accent); color: var(--huley-accent); text-decoration: none; }

/* CARDS */
.card {
  background: var(--huley-bg-card);
  border: 1px solid var(--huley-line);
  border-radius: var(--r-l);
  padding: var(--sp-4);
  transition: transform .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--huley-accent);
}

/* LAYOUT */
.section { padding: var(--sp-6) 0; }
.section-tight { padding: var(--sp-5) 0; }
.grid { display: grid; gap: var(--sp-3); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* UTILS */
.eyebrow {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--huley-accent);
  color: var(--huley-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-2);
}
.divider { height: 1px; background: var(--huley-line); margin: var(--sp-4) 0; }
.center { text-align: center; }

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,6,0.45) 0%, rgba(6,6,6,0.85) 100%);
}
.hero > .huley-container { position: relative; z-index: 2; }

/* FORMS */
.field {
  display: block;
  width: 100%;
  padding: 14px 18px;
  background: var(--huley-bg-2);
  color: var(--huley-text);
  border: 1.5px solid var(--huley-line);
  border-radius: var(--r-m);
  font-family: var(--font-body);
  font-size: 1rem;
}
.field:focus { outline: 0; border-color: var(--huley-accent); }
.label {
  display: block;
  font-size: 0.85rem;
  color: var(--huley-text-mut);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* FOOTER */
.footer {
  padding: var(--sp-5) 0 var(--sp-3);
  background: var(--huley-bg-2);
  border-top: 1px solid var(--huley-line);
  text-align: center;
  color: var(--huley-text-mut);
  font-size: var(--fs-small);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--huley-bg); }
::-webkit-scrollbar-thumb { background: var(--huley-line); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--huley-accent); }

/* WHATSAPP FLOAT BUTTON (incluir en todas las landings) */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); text-decoration: none; }
.wa-float svg { width: 32px; height: 32px; fill: white; }

@media (max-width: 640px) {
  .wa-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
}


  /* ============================================
     MARRAKECH 4x4 — naranja desierto override
     ============================================ */
  :root {
    --huley-accent: var(--huley-accent-2);   /* #FF6B35 naranja */
    --desert-gold: #E8A86A;
    --desert-deep: #8B3A1F;
    --desert-night: #1A0F08;
    --desert-glow: 0 0 40px rgba(255, 107, 53, 0.28);
  }

  /* ============================================
     ANIMACIONES & UTILIDADES
     ============================================ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
  }
  @keyframes scrollIndicator {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(8px); opacity: 1; }
  }
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  /* ============================================
     TOPBAR sticky minimalista
     ============================================ */
  .topbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(6,6,6,0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--huley-line);
  }
  .topbar-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 14px var(--sp-3);
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--sp-3);
  }
  .topbar-brand {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--huley-text);
    letter-spacing: 0.04em;
    text-decoration: none;
  }
  .topbar-brand span { color: var(--huley-accent); }
  .topbar-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform .2s;
  }
  .topbar-cta:hover { transform: translateY(-2px); text-decoration: none; }
  .topbar-cta svg { width: 16px; height: 16px; fill: white; }
  @media (max-width: 540px) {
    .topbar-cta span.long { display: none; }
  }

  /* ============================================
     HERO cinematográfico
     ============================================ */
  .hero-mk {
    position: relative;
    min-height: 100svh;
    display: flex; align-items: center;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(6,6,6,0.35) 0%, rgba(6,6,6,0.55) 50%, rgba(6,6,6,0.92) 100%),
      url('https://images.unsplash.com/photo-1750859876327-f9360664c362?w=2000&q=85&auto=format&fit=crop') center/cover no-repeat;
    background-attachment: scroll;
  }
  .hero-mk::before {
    content: "";
    position: absolute; inset: auto 0 0 0; height: 40%;
    background: radial-gradient(ellipse at 50% 100%, rgba(255,107,53,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-mk-inner {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
    padding: var(--sp-6) var(--sp-3) var(--sp-5);
    width: 100%;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 16px;
    background: rgba(255,107,53,0.12);
    border: 1px solid rgba(255,107,53,0.45);
    color: var(--huley-accent);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border-radius: var(--r-pill);
    margin-bottom: var(--sp-3);
    animation: fadeUp .8s ease both;
  }
  .hero-eyebrow::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--huley-accent);
    border-radius: 50%;
    animation: shimmer 2s ease-in-out infinite;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 7.5rem);
    line-height: 0.92;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    color: var(--huley-text);
    margin-bottom: var(--sp-3);
    animation: fadeUp .9s .1s ease both;
    text-shadow: 0 4px 32px rgba(0,0,0,0.55);
  }
  .hero-title .accent {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB627 60%, #FF6B35 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }
  .hero-sub {
    max-width: 620px;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: rgba(245,245,245,0.88);
    line-height: 1.5;
    margin-bottom: var(--sp-4);
    animation: fadeUp .9s .2s ease both;
  }
  .hero-cta-row {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: var(--sp-4);
    animation: fadeUp .9s .3s ease both;
  }
  .btn-wa-large {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 32px;
    background: #25D366;
    color: white;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--r-pill);
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 12px 32px rgba(37,211,102,0.35);
  }
  .btn-wa-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(37,211,102,0.5);
    text-decoration: none;
  }
  .btn-wa-large svg { width: 22px; height: 22px; fill: white; }
  .btn-secondary-mk {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 28px;
    background: rgba(255,255,255,0.06);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
    border-radius: var(--r-pill);
    font-weight: 600;
    text-decoration: none;
    transition: background .25s, border-color .25s;
  }
  .btn-secondary-mk:hover {
    background: rgba(255,107,53,0.12);
    border-color: var(--huley-accent);
    text-decoration: none;
  }
  .hero-trust {
    display: flex; gap: 10px; flex-wrap: wrap;
    animation: fadeUp .9s .4s ease both;
  }
  .trust-pill {
    padding: 8px 14px;
    background: rgba(20,20,20,0.55);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border-radius: var(--r-pill);
    font-size: 0.85rem;
    color: rgba(245,245,245,0.92);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .scroll-indicator {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: center;
    animation: scrollIndicator 2.2s ease-in-out infinite;
  }
  .scroll-indicator::after {
    content: "";
    display: block;
    width: 1px; height: 28px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6));
    margin: 8px auto 0;
  }

  /* ============================================
     POR QUÉ ESTE VIAJE — diferenciación
     ============================================ */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-3);
    margin-top: var(--sp-4);
  }
  .why-card {
    padding: var(--sp-4);
    background: linear-gradient(180deg, var(--huley-bg-card) 0%, rgba(20,20,20,0.4) 100%);
    border: 1px solid var(--huley-line);
    border-radius: var(--r-l);
    position: relative;
    transition: transform .3s, border-color .3s;
  }
  .why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,107,53,0.4);
  }
  .why-icon {
    font-size: 2.2rem;
    margin-bottom: var(--sp-2);
    display: block;
    line-height: 1;
  }
  .why-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--huley-text);
    letter-spacing: 0.01em;
  }
  .why-card p { color: var(--huley-text-mut); line-height: 1.6; }

  /* ============================================
     ITINERARIO timeline visual
     ============================================ */
  .timeline {
    position: relative;
    margin-top: var(--sp-4);
    padding-left: 0;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 32px; top: 32px; bottom: 32px;
    width: 2px;
    background: linear-gradient(180deg,
      var(--huley-accent) 0%,
      rgba(255,107,53,0.4) 50%,
      var(--huley-line) 100%);
  }
  .day-card-pro {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-4) var(--sp-3) 0;
    margin-bottom: var(--sp-3);
  }
  .day-num-pro {
    font-family: var(--font-display);
    font-size: 3.2rem;
    color: var(--huley-accent);
    line-height: 1;
    text-align: center;
    background: var(--huley-bg);
    border: 2px solid var(--huley-accent);
    border-radius: 50%;
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--huley-bg), var(--desert-glow);
    flex-shrink: 0;
    margin-left: 0;
    font-size: 1.8rem;
  }
  .day-content {
    background: var(--huley-bg-card);
    border: 1px solid var(--huley-line);
    border-radius: var(--r-m);
    padding: var(--sp-3);
    transition: border-color .3s, transform .3s;
  }
  .day-content:hover {
    border-color: rgba(255,107,53,0.35);
    transform: translateX(4px);
  }
  .day-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--huley-text);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
  }
  .day-content p { color: var(--huley-text-mut); line-height: 1.65; margin-bottom: 12px; }
  .day-highlights {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-top: 12px;
  }
  .day-tag {
    padding: 5px 12px;
    background: rgba(255,107,53,0.1);
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: var(--r-pill);
    font-size: 0.78rem;
    color: var(--desert-gold);
  }

  /* ============================================
     INCLUYE / NO INCLUYE
     ============================================ */
  .includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--sp-3);
    margin-top: var(--sp-4);
  }
  .includes-card {
    padding: var(--sp-4);
    background: var(--huley-bg-card);
    border: 1px solid var(--huley-line);
    border-radius: var(--r-l);
  }
  .includes-card.in {
    border-color: rgba(255,107,53,0.25);
  }
  .includes-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: var(--sp-2);
    display: flex; align-items: center; gap: 10px;
  }
  .includes-card.in h3 { color: var(--huley-accent); }
  .includes-card.out h3 { color: var(--huley-text-mut); }
  .includes-list { list-style: none; padding: 0; margin-top: var(--sp-2); }
  .includes-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--huley-line);
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 0.97rem;
  }
  .includes-list li:last-child { border-bottom: 0; }
  .includes-list .ic {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 1px;
  }
  .ic-yes { background: rgba(46,196,182,0.18); color: #2EC4B6; }
  .ic-no { background: rgba(230,57,70,0.15); color: #E63946; }

  /* ============================================
     SOCIAL PROOF
     ============================================ */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--sp-3);
    margin: var(--sp-4) 0 var(--sp-5);
    padding: var(--sp-4);
    background: linear-gradient(135deg, rgba(255,107,53,0.06), rgba(255,107,53,0.02));
    border: 1px solid rgba(255,107,53,0.15);
    border-radius: var(--r-l);
  }
  .stat {
    text-align: center;
    padding: var(--sp-2);
  }
  .stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--huley-accent);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    color: var(--huley-text-mut);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--sp-3);
  }
  .testimonial {
    padding: var(--sp-4);
    background: var(--huley-bg-card);
    border: 1px solid var(--huley-line);
    border-radius: var(--r-l);
    position: relative;
  }
  .testimonial::before {
    content: """;
    position: absolute;
    top: -10px; left: 20px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--huley-accent);
    line-height: 1;
    opacity: 0.7;
  }
  .testimonial-text {
    color: var(--huley-text);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: var(--sp-2);
    font-size: 1.02rem;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 12px;
    margin-top: var(--sp-2);
    padding-top: var(--sp-2);
    border-top: 1px solid var(--huley-line);
  }
  .testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--huley-accent), var(--desert-gold));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    color: var(--huley-bg);
    font-size: 1.2rem;
  }
  .testimonial-meta strong { color: var(--huley-text); display: block; font-size: 0.92rem; }
  .testimonial-meta span { color: var(--huley-text-mut); font-size: 0.8rem; }
  .placeholder-mark {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 8px;
    background: rgba(255,182,39,0.15);
    border: 1px solid rgba(255,182,39,0.4);
    color: #FFB627;
    font-size: 0.7rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
  }

  /* ============================================
     GALERÍA
     ============================================ */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
    margin-top: var(--sp-4);
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-m);
    background: var(--huley-bg-2);
    cursor: pointer;
  }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
  }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55));
    pointer-events: none;
  }
  .gallery-item .caption {
    position: absolute; bottom: 12px; left: 14px;
    color: white;
    font-size: 0.82rem;
    font-weight: 500;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  }
  .gallery-item.span-2 { grid-column: span 2; }
  .gallery-item.span-3 { grid-column: span 3; }
  .gallery-item.row-2 { grid-row: span 2; }
  @media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .gallery-item.span-3, .gallery-item.span-2 { grid-column: span 2; }
    .gallery-item.row-2 { grid-row: span 1; }
  }

  /* ============================================
     URGENCY BANNER
     ============================================ */
  .urgency-banner {
    margin-top: var(--sp-4);
    padding: var(--sp-3) var(--sp-4);
    background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(230,57,70,0.08));
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: var(--r-l);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--sp-3);
    align-items: center;
  }
  .urgency-banner h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--huley-accent);
    margin-bottom: 6px;
  }
  .urgency-banner p { color: var(--huley-text-mut); font-size: 0.95rem; }
  .urgency-slots {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-top: 12px;
  }
  .slot {
    padding: 8px 16px;
    background: rgba(6,6,6,0.5);
    border: 1px solid var(--huley-line);
    border-radius: var(--r-pill);
    font-size: 0.88rem;
    color: var(--huley-text);
  }
  .slot strong { color: var(--huley-accent); }
  @media (max-width: 720px) {
    .urgency-banner { grid-template-columns: 1fr; }
  }

  /* ============================================
     FAQ accordion
     ============================================ */
  .faq-list {
    margin-top: var(--sp-4);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
  .faq-item {
    border: 1px solid var(--huley-line);
    border-radius: var(--r-m);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--huley-bg-card);
    transition: border-color .25s;
  }
  .faq-item[open] { border-color: rgba(255,107,53,0.35); }
  .faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    color: var(--huley-text);
    list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--sp-2);
    font-size: 1.02rem;
    user-select: none;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+";
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--huley-accent);
    transition: transform .3s;
    line-height: 1;
  }
  .faq-item[open] summary::after { content: "−"; transform: rotate(0deg); }
  .faq-item .faq-answer {
    padding: 0 22px 20px;
    color: var(--huley-text-mut);
    line-height: 1.65;
  }

  /* ============================================
     CTA FINAL emocional
     ============================================ */
  .cta-final {
    position: relative;
    padding: var(--sp-6) 0;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(6,6,6,0.55) 0%, rgba(6,6,6,0.92) 100%),
      url('https://images.unsplash.com/photo-1750859876327-f9360664c362?w=1920&q=85&auto=format&fit=crop') center/cover no-repeat;
    overflow: hidden;
  }
  .cta-final::after {
    content: "";
    position: absolute; inset: auto 0 0 0; height: 50%;
    background: radial-gradient(ellipse at 50% 100%, rgba(255,107,53,0.25), transparent 65%);
    pointer-events: none;
  }
  .cta-final-inner { position: relative; z-index: 2; }
  .cta-final h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4.5rem);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: var(--sp-3);
    color: var(--huley-text);
  }
  .cta-final h2 .accent {
    background: linear-gradient(135deg, #FF6B35, #FFB627);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .cta-final-sub {
    max-width: 620px;
    margin: 0 auto var(--sp-4);
    color: rgba(245,245,245,0.85);
    font-size: 1.15rem;
    line-height: 1.55;
  }
  .cta-row-triple {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: var(--sp-3);
  }
  .cta-trust-row {
    display: flex; gap: var(--sp-3);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--sp-3);
    color: var(--huley-text-mut);
    font-size: 0.88rem;
  }
  .cta-trust-row span {
    display: inline-flex; align-items: center; gap: 6px;
  }

  /* ============================================
     FORM PRO
     ============================================ */
  .form-pro {
    background: var(--huley-bg-card);
    padding: var(--sp-4);
    border-radius: var(--r-l);
    border: 1px solid var(--huley-line);
  }
  .form-pro h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .form-row.full { grid-template-columns: 1fr; }
  @media (max-width: 540px) {
    .form-row { grid-template-columns: 1fr; }
  }
  .field-pro {
    width: 100%;
    padding: 14px 16px;
    background: var(--huley-bg-2);
    color: var(--huley-text);
    border: 1.5px solid var(--huley-line);
    border-radius: var(--r-m);
    font-family: var(--font-body);
    font-size: 0.97rem;
    transition: border-color .2s, background .2s;
  }
  .field-pro:focus {
    outline: 0;
    border-color: var(--huley-accent);
    background: rgba(255,107,53,0.04);
  }
  .label-pro {
    display: block;
    font-size: 0.78rem;
    color: var(--huley-text-mut);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
  }
  .gdpr-row {
    display: flex; gap: 10px; align-items: flex-start;
    margin-top: 6px; margin-bottom: 14px;
    font-size: 0.82rem;
    color: var(--huley-text-mut);
    line-height: 1.5;
  }
  .gdpr-row input { margin-top: 3px; accent-color: var(--huley-accent); }
  .gdpr-row a { color: var(--huley-accent); }
  .btn-submit-pro {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border: 0;
    border-radius: var(--r-pill);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(37,211,102,0.32);
  }
  .btn-submit-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37,211,102,0.45);
  }
  .btn-submit-pro svg { width: 18px; height: 18px; fill: white; }

  /* ============================================
     QUOTE
     ============================================ */
  .quote-pro {
    border-left: 3px solid var(--huley-accent);
    padding: var(--sp-3);
    background: rgba(255,107,53,0.05);
    border-radius: 0 var(--r-m) var(--r-m) 0;
    font-style: italic;
    color: var(--huley-text);
    font-size: 1.08rem;
    line-height: 1.55;
    margin-top: var(--sp-3);
  }
  .quote-pro cite {
    display: block;
    margin-top: 12px;
    color: var(--huley-text-mut);
    font-style: normal;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* ============================================
     FOOTER pro
     ============================================ */
  .footer-pro {
    background: var(--huley-bg-2);
    border-top: 1px solid var(--huley-line);
    padding: var(--sp-5) 0 var(--sp-3);
    color: var(--huley-text-mut);
  }
  .footer-grid {
    max-width: 1280px; margin: 0 auto;
    padding: 0 var(--sp-3);
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--sp-4);
  }
  @media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
  }
  .footer-brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--huley-text);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }
  .footer-brand span { color: var(--huley-accent); }
  .footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--huley-text);
    margin-bottom: 12px;
    letter-spacing: 0.06em;
  }
  .footer-col ul { list-style: none; padding: 0; }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a {
    color: var(--huley-text-mut);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color .2s;
  }
  .footer-col a:hover { color: var(--huley-accent); }
  .footer-bottom {
    max-width: 1280px; margin: var(--sp-4) auto 0;
    padding: var(--sp-2) var(--sp-3) 0;
    border-top: 1px solid var(--huley-line);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 0.8rem;
  }

  /* ============================================
     SECTION HEADERS
     ============================================ */
  .section-pro {
    padding: var(--sp-6) 0;
  }
  .section-pro.alt {
    background: var(--huley-bg-2);
  }
  .section-head {
    max-width: 760px;
    margin-bottom: var(--sp-3);
  }
  .section-head .eyebrow-pro {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid var(--huley-accent);
    color: var(--huley-accent);
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border-radius: var(--r-pill);
    margin-bottom: var(--sp-2);
  }
  .section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1;
    text-transform: uppercase;
    color: var(--huley-text);
    letter-spacing: -0.005em;
  }
  .section-head .lead {
    margin-top: var(--sp-2);
    color: var(--huley-text-mut);
    font-size: 1.1rem;
    line-height: 1.55;
    max-width: 640px;
  }

  /* ============================================
     RESPONSIVE
     ============================================ */
  @media (max-width: 720px) {
    .day-card-pro { grid-template-columns: 56px 1fr; gap: var(--sp-2); }
    .day-num-pro { width: 48px; height: 48px; font-size: 1.4rem; box-shadow: 0 0 0 4px var(--huley-bg), var(--desert-glow); }
    .timeline::before { left: 24px; }
    .hero-cta-row { flex-direction: column; align-items: stretch; }
    .hero-cta-row .btn-wa-large, .hero-cta-row .btn-secondary-mk { justify-content: center; }
  }

  /* ============================================
     PRINT-FRIENDLY (por si imprime el itinerario)
     ============================================ */
  @media print {
    .topbar, .wa-float, .hero-cta-row, .cta-final, .form-pro { display: none; }
    body { background: white; color: black; }
  }


/* Reset margenes/paddings que Shopify a veces inyecta */
.huley-landing-wrapper { background: var(--huley-bg); color: var(--huley-text); margin: 0; padding: 0; }
.huley-landing-wrapper * { box-sizing: border-box; }
/*HM-RESP-V3*/html,body{overflow-x:hidden!important;max-width:100vw!important}@media(max-width:900px){section,[class*="-sec"],.shopify-section{width:100%!important;max-width:100vw!important;overflow-x:hidden!important;padding-left:0!important;padding-right:0!important}div[style*="max-width:1280px"],div[style*="max-width:1320px"],div[style*="max-width:1200px"],div[style*="max-width:1600px"],div[style*="max-width:1100px"],div[style*="max-width:960px"],div[style*="max-width:900px"],div[style*="max-width:800px"]{max-width:100%!important;width:100%!important;padding:32px 16px!important;margin:0!important;box-sizing:border-box!important}div[style*="grid-template-columns:repeat(2"],div[style*="grid-template-columns:repeat(3"],div[style*="grid-template-columns:repeat(4"],div[style*="grid-template-columns:1fr 1fr"],div[style*="grid-template-columns:1fr 1fr 1fr"]{grid-template-columns:1fr!important;gap:14px!important}h1,h1[style*="clamp"]{font-size:clamp(1.8rem,7vw,3rem)!important;line-height:1.05!important;word-wrap:break-word!important}h2,h2[style*="clamp"]{font-size:clamp(1.5rem,6.5vw,2.4rem)!important;line-height:1.1!important;word-wrap:break-word!important}h3{font-size:clamp(1.2rem,5vw,1.6rem)!important}p{font-size:clamp(.92rem,3.6vw,1.05rem)!important;line-height:1.6!important}video,img{max-width:100%!important;height:auto!important;object-fit:cover!important}a[class*="btn"],button,a[href*="wa.me"]{padding:14px 22px!important;font-size:.85rem!important;width:100%!important;min-height:48px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;box-sizing:border-box!important}form,input,textarea{display:none!important}}@media(max-width:540px){div[style*="max-width"]{padding:32px 16px!important}h1{font-size:clamp(1.7rem,8vw,2.6rem)!important}}