  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  /* ═══ PALETA PROPIA DE EN SRI LANKA (misma estructura que En Bali, distinto acento) ═══
     --bark   → verde té oscuro (reemplaza el marrón "bark" de Bali)
     --gold   → terracota/canela (reemplaza el dorado de Bali)
     --green  → verde té vivo (acento secundario)
  */
  :root {
    --sand: #F6F1E7;
    --sand-dark: #EAE0CC;
    --bark: #1E2A3D;
    --bark-light: #3A4D66;
    --gold: #D98A2B;
    --gold-light: #F0B563;
    --green: #4C7A6B;
    --green-light: #85AD9F;
    --white: #FDFBF7;
    --text: #1A2028;
    --text-muted: #5C6570;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--white); color: var(--text); overflow-x: hidden; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 3rem;
    background: transparent;
    transition: background 0.3s, backdrop-filter 0.3s;
  }
  nav.scrolled {
    background: rgba(253,251,247,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-dark);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s;
  }
  nav.scrolled .nav-logo { color: var(--bark); }
  .nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
  .nav-links a {
    font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
    color: rgba(255,255,255,0.9); text-decoration: none;
    transition: color 0.2s;
  }
  nav.scrolled .nav-links a { color: var(--text-muted); }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold); color: var(--bark) !important;
    padding: 8px 18px; border-radius: 100px;
    font-weight: 500 !important;
  }
  nav.scrolled .nav-cta { background: var(--gold); color: var(--bark) !important; }

  /* ── HERO ── */
  .hero {
    height: 100vh; min-height: 680px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-img {
    position: absolute; inset: 0;
    background-position: center; background-size: cover; background-repeat: no-repeat;
    transform: scale(1.05);
    animation: heroZoom 8s ease-out forwards;
  }
  @keyframes heroZoom { to { transform: scale(1); } }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(9,13,20,0.28) 0%, rgba(9,13,20,0.48) 50%, rgba(9,13,20,0.72) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 1.5rem;
    max-width: 780px;
    animation: fadeUp 1s 0.3s both;
  }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .hero-eyebrow {
    font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold-light);
    margin-bottom: 1.25rem;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    font-weight: 400; color: var(--white);
    line-height: 1.12; letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-sub {
    font-size: 17px; color: rgba(255,255,255,0.85);
    font-weight: 300; line-height: 1.6;
    max-width: 540px; margin: 0 auto 2.5rem;
  }
  .hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: var(--bark);
    font-size: 15px; font-weight: 500;
    padding: 14px 28px; border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(217,138,43,0.4);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(217,138,43,0.5); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 15px; font-weight: 400;
    padding: 14px 28px; border-radius: 100px;
    text-decoration: none; border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
  .hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.1em;
    text-transform: uppercase; z-index: 2;
  }
  .hero-scroll span { width: 1px; height: 48px; background: rgba(255,255,255,0.3); animation: scrollLine 2s infinite; }
  @keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--bark);
    padding: 1.25rem 3rem;
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
  }
  .trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 14px; }
  .trust-item strong { color: var(--gold-light); font-weight: 500; }
  .trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.4; }

  /* ── SECTION BASE ── */
  section { padding: 6rem 3rem; }
  .container { max-width: 1100px; margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
  .section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400; color: var(--bark);
    line-height: 1.15; letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }
  .section-title em { font-style: italic; }
  .section-sub { font-size: 16px; color: var(--text-muted); font-weight: 300; line-height: 1.7; max-width: 560px; }

  /* ── SERVICIOS ── */
  .servicios { background: var(--sand); }
  .servicios-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
  .servicio-card {
    background: var(--white); border-radius: 16px; padding: 2rem 2rem 1.75rem;
    position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid var(--sand-dark);
  }
  .servicio-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(34,54,42,0.1); }
  .servicio-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
  .servicio-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 600; color: var(--sand-dark); line-height: 1; margin-bottom: 1rem; }
  .servicio-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--bark); margin-bottom: 0.5rem; }
  .servicio-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
  .servicio-bullets { list-style: none; margin-bottom: 1.75rem; }
  .servicio-bullets li { font-size: 13px; color: var(--text); padding: 5px 0; border-bottom: 1px solid var(--sand); display: flex; align-items: center; gap: 8px; }
  .servicio-bullets li::before { content: '—'; color: var(--gold); font-weight: 500; }
  .btn-servicio {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bark); color: var(--white);
    font-size: 14px; font-weight: 500;
    padding: 12px 22px; border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-servicio:hover { background: var(--bark-light); transform: translateX(2px); }

  /* ── RUTAS (packs) ── */
  .packs { background: var(--white); }
  .packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
  .pack-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--sand-dark); transition: transform 0.25s, box-shadow 0.25s; position: relative; }
  .pack-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(34,54,42,0.12); }
  .pack-card.featured { border-color: var(--gold); }
  .pack-badge { position: absolute; top: 12px; right: 12px; background: var(--gold); color: var(--bark); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
  .pack-img { width: 100%; height: 200px; object-fit: cover; background: var(--sand-dark); display: block; }
  .pack-body { padding: 1.25rem 1.5rem 1.5rem; }
  .pack-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--bark); margin-bottom: 4px; }
  .pack-meta { display: flex; gap: 12px; margin-bottom: 0.875rem; flex-wrap: wrap; }
  .pack-meta span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
  .pack-includes { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
  .btn-pack { display: flex; align-items: center; justify-content: space-between; background: var(--sand); color: var(--bark); font-size: 13px; font-weight: 500; padding: 10px 16px; border-radius: 8px; text-decoration: none; transition: background 0.2s; }
  .btn-pack:hover { background: var(--sand-dark); }
  .packs-footer { margin-top: 2rem; text-align: center; }
  .link-all { font-size: 14px; color: var(--bark); font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color 0.2s; }
  .link-all:hover { color: var(--gold); }

  /* ── CONFIANZA (equipo compartido con En Bali) ── */
  .confianza { background: var(--bark); padding: 5rem 3rem; }
  .confianza .section-title { color: var(--white); }
  .confianza .section-label { color: var(--gold-light); }
  .confianza-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1100px; margin: 0 auto; }
  .confianza-list { list-style: none; }
  .confianza-list li { font-size: 15px; color: rgba(255,255,255,0.85); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; gap: 10px; }
  .confianza-list li:last-child { border-bottom: none; }
  .confianza-list li::before { content: '✓'; color: var(--gold-light); font-weight: 600; flex-shrink: 0; }
  .confianza-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 2rem; }
  .confianza-card .quote { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--white); line-height: 1.5; margin-bottom: 1rem; }
  .confianza-card .attrib { font-size: 13px; color: rgba(255,255,255,0.6); }
  .confianza-card .attrib a { color: var(--gold-light); text-decoration: none; }

  /* ── DESTINOS (tours) ── */
  .tours { background: var(--sand); }
  .tours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
  .tour-card { border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 3/4; transition: transform 0.25s; }
  .tour-card:hover { transform: scale(1.02); }
  .tour-card:hover .tour-overlay { opacity: 1; }
  .tour-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,16,12,0.85) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.1rem; opacity: 0.75; transition: opacity 0.25s; }
  .tour-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--white); line-height: 1.25; }

  /* ── EXPERIENCIAS (actividades/trekking/transporte) ── */
  .experiencias { background: var(--white); }
  .exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
  .exp-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--sand-dark); transition: transform 0.25s, box-shadow 0.25s; }
  .exp-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(34,54,42,0.1); }
  .exp-body { padding: 1.1rem 1.35rem 1.35rem; }
  .exp-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--bark); margin-bottom: 6px; }
  .exp-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.1rem; }
  .btn-exp { font-size: 13px; color: var(--bark); font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--gold); padding-bottom: 1px; transition: color 0.2s; }
  .btn-exp:hover { color: var(--gold); }

  /* ── WHATSAPP BLOCK ── */
  .wa-block { background: linear-gradient(135deg, var(--green) 0%, #2A4640 100%); padding: 5rem 3rem; }
  .wa-inner { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
  .wa-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 0.875rem; }
  .wa-title em { font-style: italic; color: var(--gold-light); }
  .wa-sub { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 1.75rem; }
  .wa-features { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
  .wa-feat { font-size: 13px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; }
  .wa-feat::before { content: '✓'; color: var(--gold-light); font-weight: 600; }
  .btn-wa { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); font-size: 16px; font-weight: 500; padding: 16px 32px; border-radius: 100px; text-decoration: none; white-space: nowrap; box-shadow: 0 8px 32px rgba(37,211,102,0.35); transition: transform 0.2s, box-shadow 0.2s; }
  .btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.45); }

  /* ── BLOG ── */
  .blog { background: var(--sand); }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
  .blog-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--sand-dark); transition: transform 0.25s, box-shadow 0.25s; text-decoration: none; display: block; }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(34,54,42,0.1); }
  .blog-img { width: 100%; height: 170px; object-fit: cover; display: block; }
  .blog-body { padding: 1.1rem 1.35rem 1.35rem; }
  .blog-cat { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
  .blog-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--bark); line-height: 1.35; }

  /* ── FAQ ── */
  .enb-faq { background: var(--white); padding: 6rem 3rem; }
  .enb-faq-inner { max-width: 800px; margin: 0 auto; }
  .enb-faq-title { font-family: var(--font-display); font-size: clamp(1.9rem,3.4vw,2.6rem); font-weight: 400; color: var(--bark); text-align: center; margin-bottom: 3rem; line-height: 1.2; }
  .enb-faq-item { border-bottom: 1px solid var(--sand-dark); padding: 1.4rem 0; }
  .enb-faq-q { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--bark); margin-bottom: 0.5rem; }
  .enb-faq-a { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }

  /* ── FOOTER ── */
  footer { background: var(--bark); padding: 4rem 3rem 2rem; color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 0; }
  .footer-container { max-width: 1280px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2.2rem; margin-bottom: 2.5rem; }
  .footer-logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--white); margin-bottom: 0.875rem; display: block; text-decoration: none; }
  .footer-tagline { line-height: 1.65; margin-bottom: 1.25rem; }
  .footer-col-title { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-legal-links a { color: rgba(255,255,255,0.5); text-decoration: none; margin-right: 12px; }
  .footer-legal-links a:hover { color: var(--gold-light); }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 99;
    display: flex; align-items: center; gap: 8px;
    background: rgba(37,211,102,0.92); backdrop-filter: blur(8px);
    color: #fff; font-size: 13px; font-weight: 500;
    padding: 10px 16px 10px 12px; border-radius: 100px; text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s; opacity: 0.9;
  }
  .wa-float:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
  .wa-float svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

  /* ── MOBILE NAV ── */
  .nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 101; }
  .nav-hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.9); border-radius: 2px; transition: background 0.3s; }
  nav.scrolled .nav-hamburger span { background: var(--bark); }
  .mobile-menu { display: none; position: fixed; inset: 0; z-index: 300; background: var(--white); flex-direction: column; padding: 5rem 2rem 2rem; overflow-y: auto; }
  .mobile-menu.open { display: flex !important; }
  .mobile-menu-close { position: absolute; top: 1.25rem; right: 1.5rem; font-size: 1.5rem; color: var(--bark); background: none; border: none; cursor: pointer; line-height: 1; z-index: 301; }
  .mobile-menu a { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--bark); text-decoration: none; padding: 0.55rem 0; border-bottom: 1px solid var(--sand-dark); display: block; }
  .mobile-cta { margin-top: 1.5rem; background: #25D366 !important; color: #fff !important; text-align: center; border-radius: 100px; padding: 14px !important; font-family: var(--font-body) !important; font-size: 15px !important; font-weight: 500 !important; border-bottom: none !important; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    section { padding: 4rem 1.5rem; }
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .servicios-grid { grid-template-columns: 1fr; }
    .packs-grid { grid-template-columns: 1fr; }
    .confianza-inner { grid-template-columns: 1fr; }
    .tours-grid { grid-template-columns: 1fr 1fr; }
    .exp-grid { grid-template-columns: 1fr 1fr !important; }
    .wa-inner { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .trust-bar { padding: 0.875rem 1.5rem; gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .trust-dot { display: none; }
    .trust-item { font-size: 12px; }
  }
  @media (max-width: 600px) {
    .tours-grid { grid-template-columns: 1fr 1fr; }
    .exp-grid { grid-template-columns: 1fr !important; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
  }
  /* ── HERO PILLS (datos rápidos bajo el hero) ── */
  .hero-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }
  .hero-pill { background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 13px; padding: 8px 16px; border-radius: 100px; }

  /* ── COMPARATIVA CONDUCTOR VS GUÍA ── */
  .compare-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
  .compare-card { background: var(--white); border: 1px solid var(--sand-dark); border-radius: 16px; padding: 1.75rem; }
  .compare-card.highlight { border-color: var(--gold); }
  .compare-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .compare-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--bark); margin-bottom: 10px; }
  .compare-list { list-style: none; margin-top: 1rem; }
  .compare-list li { font-size: 14px; color: var(--text-muted); padding: 7px 0; border-bottom: 1px solid var(--sand); display: flex; gap: 8px; }
  .compare-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

  /* ── PASOS (cómo funciona) ── */
  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .step-card { text-align: center; padding: 0 0.5rem; }
  .step-num { font-family: var(--font-display); font-size: 2.75rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.5rem; }
  .step-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--bark); margin-bottom: 0.5rem; }
  .step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

  /* ── PRECIO ── */
  .price-block { background: var(--sand); border-radius: 20px; padding: 2.5rem; margin-top: 3rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
  .price-range { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--bark); }
  .price-range span { font-size: 1rem; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }
  .price-note { font-size: 13px; color: var(--text-muted); margin-top: 6px; line-height: 1.6; max-width: 480px; }
  .price-source { font-size: 11px; color: var(--text-muted); opacity: 0.75; margin-top: 10px; }

  /* ── INCLUYE / NO INCLUYE ── */
  .includes-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
  .includes-col { background: var(--white); border: 1px solid var(--sand-dark); border-radius: 16px; padding: 1.75rem; }
  .includes-col h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--bark); margin-bottom: 1rem; }
  .includes-col ul { list-style: none; }
  .includes-col li { font-size: 14px; color: var(--text); padding: 6px 0; display: flex; gap: 8px; align-items: flex-start; }
  .includes-col.yes li::before { content: '✓'; color: var(--green); font-weight: 700; }
  .includes-col.no li::before { content: '✕'; color: var(--gold); font-weight: 700; }

  @media (max-width: 900px) {
    .compare-wrap { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .price-block { grid-template-columns: 1fr; text-align: center; }
    .includes-wrap { grid-template-columns: 1fr; }
  }
  /* ── DÍA A DÍA (itinerario) ── */
  .day-card { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; margin-bottom: 2.5rem; align-items: start; }
  .day-img { width: 100%; height: 190px; object-fit: cover; border-radius: 14px; }
  .day-num { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
  .day-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--bark); margin-bottom: 10px; }
  .day-text { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; }
  .day-text strong { color: var(--text); font-weight: 600; }

  /* ── PARA QUIÉN ── */
  .audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
  .audience-card { background: var(--sand); border-radius: 14px; padding: 1.5rem; text-align: center; }
  .audience-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
  .audience-text { font-size: 13.5px; color: var(--text); line-height: 1.5; }

  /* ── PRECIO POR PERSONA (rutas) ── */
  .price-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
  .tier-card { background: var(--white); border: 1px solid var(--sand-dark); border-radius: 12px; padding: 1.25rem 1rem; text-align: center; }
  .tier-card.top { border-color: var(--gold); }
  .tier-stars { font-size: 12px; color: var(--gold); margin-bottom: 6px; letter-spacing: 2px; }
  .tier-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--bark); }
  .tier-unit { font-size: 11px; color: var(--text-muted); }

  /* ── PERSONALIZACIÓN NOTE ── */
  .custom-note { background: var(--sand); border-radius: 12px; padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem; margin-top: 2rem; border: 1px solid var(--sand-dark); }

  @media (max-width: 900px) {
    .day-card { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .price-tiers { grid-template-columns: 1fr 1fr; }
  }
  /* ── DROPDOWN NAV (Planifícate / Destinos) ── */
  .nav-dropdown { position: relative; display: flex; align-items: center; }
  .nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
  .nav-dropdown-caret { font-size: 9px; opacity: 0.7; transition: transform 0.2s; }
  .nav-dropdown:hover .nav-dropdown-caret { transform: rotate(180deg); }
  /* Zona de hover: arranca justo debajo del enlace (sin hueco) y se extiende
     hasta la tarjeta visual, para que el cursor nunca "salga" del área activa. */
  .nav-dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    padding-top: 14px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 50;
  }
  .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; }
  /* Tarjeta visual (dentro del área de hover, con su propia animación de entrada) */
  .dropdown-card {
    position: relative;
    background: var(--white); border-radius: 14px;
    box-shadow: 0 20px 48px rgba(20,30,20,0.16), 0 3px 10px rgba(20,30,20,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 10px; min-width: 240px;
    transform: translateY(-8px) scale(0.97);
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
  }
  .nav-dropdown:hover .dropdown-card { transform: translateY(0) scale(1); }
  /* Flechita que conecta visualmente el botón con la tarjeta */
  .dropdown-card::before {
    content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 10px; height: 10px; background: var(--white);
    border-left: 1px solid rgba(0,0,0,0.05); border-top: 1px solid rgba(0,0,0,0.05);
    border-radius: 2px 0 0 0;
  }
  .dropdown-card a { display: block; padding: 9px 14px; font-size: 13px; color: var(--bark) !important; text-decoration: none; border-radius: 8px; letter-spacing: normal; font-weight: 400; transition: background 0.15s, color 0.15s, transform 0.15s; }
  .dropdown-card a:hover { background: var(--sand); color: var(--gold) !important; transform: translateX(2px); }
  /* Mega-menú (Destinos, en columnas por zona) */
  .dropdown-card.mega-card { display: flex; gap: 1.75rem; min-width: 680px; padding: 1.1rem 1.4rem; }
  .mega-col { display: flex; flex-direction: column; gap: 2px; min-width: 130px; }
  .mega-col-title { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; padding: 0 14px; border-bottom: 1px solid var(--sand); padding-bottom: 8px; }
  .mega-col a { padding: 6px 14px !important; }
  @media (max-width: 1200px) { .dropdown-card.mega-card { min-width: 560px; flex-wrap: wrap; } }  /* ── SELECTOR DE RUTA ── */
  .quiz-section { background: var(--bark); padding: 5rem 3rem; }
  .quiz-wrap { max-width: 620px; margin: 0 auto; }
  .quiz-header { text-align: center; margin-bottom: 2rem; }
  .quiz-header .section-label { color: var(--gold-light); }
  .quiz-header .section-title { color: var(--white); }
  .quiz-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 20px; padding: 2.25rem; min-height: 320px; }
  .quiz-progress-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
  .quiz-progress-label span { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }
  .quiz-progress-bar { height: 4px; background: rgba(255,255,255,0.14); border-radius: 3px; overflow: hidden; margin-bottom: 1.75rem; }
  .quiz-progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 3px; width: 0%; transition: width 0.5s cubic-bezier(0.4,0,0.2,1); }
  .quiz-fade { animation: quizFadeIn 0.4s cubic-bezier(0.4,0,0.2,1) both; }
  @keyframes quizFadeIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }
  .quiz-option { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: var(--white); font-size: 14.5px; font-family: var(--font-body); text-align: left; padding: 14px 18px; border-radius: 12px; cursor: pointer; transition: background 0.2s, border-color 0.2s, transform 0.15s; display: flex; align-items: center; justify-content: space-between; }
  .quiz-option:disabled { cursor: default; }
  .quiz-option .quiz-arrow { opacity: 0; transform: translateX(-4px); transition: opacity 0.2s, transform 0.2s; color: var(--gold-light); font-size: 13px; }
  .quiz-option:hover:not(:disabled) .quiz-arrow { opacity: 1; transform: translateX(0); }
  .quiz-option.selected { background: var(--gold); border-color: var(--gold); color: var(--bark); transform: scale(0.98); }
  .quiz-option.selected .quiz-arrow { opacity: 1; color: var(--bark); transform: translateX(0); }
  .quiz-option.dimmed { opacity: 0.35; }
  .quiz-question { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--white); text-align: center; margin-bottom: 1.75rem; line-height: 1.3; }
  .quiz-options { display: flex; flex-direction: column; gap: 10px; }
  .quiz-option { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: var(--white); font-size: 14.5px; font-family: var(--font-body); text-align: left; padding: 14px 18px; border-radius: 12px; cursor: pointer; transition: background 0.2s, border-color 0.2s, transform 0.15s; }
  .quiz-option:hover { background: rgba(255,255,255,0.15); border-color: var(--gold-light); transform: translateX(3px); }
  .quiz-result { display: none; text-align: center; }
  .quiz-result.show { display: block; animation: fadeUp 0.5s both; }
  .quiz-result-img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; margin-bottom: 1.25rem; }
  .quiz-result-eyebrow { font-size: 12px; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
  .quiz-result-name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
  .quiz-result-desc { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 1.5rem; }
  .quiz-result-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
  .quiz-restart { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 12.5px; text-decoration: underline; cursor: pointer; margin-top: 1.25rem; }
  .quiz-questions { display: block; }
  .quiz-questions.hide { display: none; }
  /* ── DESTINO: FICHA RÁPIDA ── */
  .fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
  .fact-item { background: var(--sand); border-radius: 12px; padding: 1.1rem; text-align: center; }
  .fact-label { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
  .fact-value { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--bark); line-height: 1.2; }

  /* ── PUNTOS DESTACADOS ── */
  .spot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3rem; }
  .spot-card { background: var(--white); border: 1px solid var(--sand-dark); border-radius: 14px; padding: 1.5rem; }
  .spot-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--bark); margin-bottom: 8px; }
  .spot-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

  @media (max-width: 900px) {
    .fact-grid { grid-template-columns: 1fr 1fr; }
    .spot-grid { grid-template-columns: 1fr; }
  }
  /* ── RESPUESTA RÁPIDA ── */
  .quick-answer { background: var(--sand); border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; padding: 1.5rem 2rem; margin-top: 2.5rem; }
  .quick-answer strong { color: var(--bark); }

  /* ── TARJETAS DE PRESUPUESTO ── */
  .budget-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
  .budget-card { background: var(--white); border: 1px solid var(--sand-dark); border-radius: 16px; padding: 1.75rem; }
  .budget-card.mid { border-color: var(--gold); position: relative; }
  .budget-card.mid::before { content: 'Más habitual'; position: absolute; top: -11px; left: 20px; background: var(--gold); color: #fff; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
  .budget-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--bark); margin-bottom: 4px; }
  .budget-range { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--gold); margin-bottom: 12px; }
  .budget-range span { font-size: 12px; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }
  .budget-list { list-style: none; }
  .budget-list li { font-size: 13px; color: var(--text-muted); padding: 5px 0; border-bottom: 1px solid var(--sand); }

  /* ── TABLA DE DESGLOSE ── */
  .cost-table { width: 100%; border-collapse: collapse; margin-top: 2rem; font-size: 14px; }
  .cost-table th { text-align: left; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); padding: 10px 14px; border-bottom: 2px solid var(--sand-dark); }
  .cost-table td { padding: 12px 14px; border-bottom: 1px solid var(--sand); color: var(--text); }
  .cost-table tr:last-child td { border-bottom: none; }
  .cost-table td.num { color: var(--bark); font-weight: 600; white-space: nowrap; }

  @media (max-width: 900px) {
    .budget-grid { grid-template-columns: 1fr; }
    .cost-table { font-size: 12.5px; }
    .cost-table th, .cost-table td { padding: 8px 10px; }
  }
  /* ── ZONAS Y ÉPOCA ── */
  .zone-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3rem; }
  .zone-card { background: var(--white); border: 1px solid var(--sand-dark); border-radius: 16px; padding: 1.75rem; }
  .zone-card.good { border-color: var(--green); }
  .zone-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--bark); margin-bottom: 6px; }
  .zone-months { display: inline-block; background: var(--sand); color: var(--bark); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
  .zone-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

  /* ── HIGHLIGHTS DE TEMPORADA ── */
  .highlight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3rem; }
  .highlight-card { background: var(--sand); border-radius: 14px; padding: 1.5rem; }
  .highlight-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--bark); margin-bottom: 6px; }
  .highlight-when { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
  .highlight-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

  @media (max-width: 900px) {
    .zone-grid { grid-template-columns: 1fr; }
    .highlight-grid { grid-template-columns: 1fr; }
  }
  /* ── TARJETAS DE DÍAS ── */
  .days-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3rem; }
  .days-card { background: var(--white); border: 1px solid var(--sand-dark); border-radius: 16px; padding: 1.75rem; }
  .days-card.reco { border-color: var(--gold); position: relative; }
  .days-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--gold); margin-bottom: 4px; }
  .days-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--bark); margin-bottom: 10px; }
  .days-list { list-style: none; margin-bottom: 1rem; }
  .days-list li { font-size: 13.5px; color: var(--text-muted); padding: 5px 0; display: flex; gap: 8px; }
  .days-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
  .days-route-link { font-size: 13px; color: var(--bark); font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

  @media (max-width: 900px) { .days-grid { grid-template-columns: 1fr; } }

  /* ── MENÚ MÓVIL: ACORDEÓN (Destinos / Planifícate) ── */
  .mobile-accordion { border-bottom: 1px solid var(--sand-dark); }
  .mobile-accordion-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    background: none; border: none; cursor: pointer; text-align: left;
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--bark);
    padding: 0.55rem 0;
  }
  .mobile-accordion-caret { font-size: 1.1rem; color: var(--gold); transition: transform 0.25s ease; flex-shrink: 0; }
  .mobile-accordion.open .mobile-accordion-caret { transform: rotate(180deg); }
  .mobile-accordion-panel {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .mobile-accordion.open .mobile-accordion-panel { max-height: 900px; }
  .mobile-accordion-panel a {
    display: block; font-family: var(--font-body); font-size: 1rem; font-weight: 500;
    color: var(--text-muted); text-decoration: none; padding: 0.5rem 0 0.5rem 1rem;
    border-bottom: none !important;
  }
  .mobile-accordion-zone {
    font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--gold); padding: 0.6rem 0 0.2rem 1rem;
  }
