/* ─────────────────────────────────────────────
       TOKENS
    ───────────────────────────────────────────── */
    :root {
      --bosque: #1E2812;
      --selva:  #4A5830;
      --tierra: #A77C4B;
      --tierra-claro: #BF9A6E;
      --inti:   #E4C77D;
      --inti-suave: #F0DCA0;
      --crema:  #F0EDD8;
      --crema-dark: #E0DCCA;
      --blanco: #FAFAF6;
      --texto:  #1a1a14;
      --texto-suave: #5a5a4a;

      --ff-t: 'Aleo', 'Georgia', serif;
      --font-cuerpo: 'Poppins', 'Helvetica Neue', sans-serif;

      --radio: 4px;
      --radio-lg: 8px;
      --sombra: 0 16px 48px rgba(20,26,10,0.12);
      --sombra-hover: 0 28px 64px rgba(20,26,10,0.2);
      --tr: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

      --gold-line: 1px solid rgba(228,199,125,0.25);
      --dl: 1px solid rgba(240,237,216,0.08);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
    body {
      font-family: var(--font-cuerpo);
      color: var(--texto);
      background: var(--blanco);
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; height: auto; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ─────────────────────────────────────────────
       UTILIDADES
    ───────────────────────────────────────────── */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 48px;
    }
    .eyebrow {
      display: block;
      font-size: 0.65rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--tierra);
      margin-bottom: 14px;
    }
    .eyebrow.light { color: var(--inti); }
    .section-title {
      font-family: var(--ff-t);
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 300;
      color: var(--bosque);
      line-height: 1.12;
    }
    .section-title strong { font-weight: 700; }
    .section-title.light { color: var(--crema); }
    .section-title.light strong { color: var(--inti); }
    .section-sub {
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--texto-suave);
      line-height: 1.85;
      max-width: 560px;
    }
    .section-sub.light { color: rgba(240,237,216,0.6); }
    .gold-rule {
      display: block;
      width: 48px;
      height: 2px;
      background: linear-gradient(90deg, var(--tierra), var(--inti));
      margin: 20px 0 32px;
    }
    .gold-rule.center { margin-left: auto; margin-right: auto; }

    /* ── FADE-IN ── */
    .fi {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fi.show { opacity: 1; transform: translateY(0); }
    .fi-d1 { transition-delay: 0.1s; }
    .fi-d2 { transition-delay: 0.2s; }
    .fi-d3 { transition-delay: 0.3s; }
    .fi-d4 { transition-delay: 0.4s; }
    .fi-d5 { transition-delay: 0.5s; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      font-family: var(--font-cuerpo);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      border-radius: var(--radio);
      transition: var(--tr);
      cursor: pointer;
      border: none;
    }
    .btn-gold {
      background: linear-gradient(135deg, var(--tierra), var(--tierra-claro));
      color: var(--blanco);
    }
    .btn-gold:hover {
      background: linear-gradient(135deg, #8a6339, var(--tierra));
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(167,124,75,0.35);
    }
    .btn-outline-light {
      background: transparent;
      border: 1px solid rgba(240,237,216,0.35);
      color: var(--crema);
    }
    .btn-outline-light:hover {
      background: rgba(240,237,216,0.08);
      border-color: rgba(240,237,216,0.6);
    }
    .btn-outline-dark {
      background: transparent;
      border: 1px solid rgba(30,40,18,0.2);
      color: var(--bosque);
    }
    .btn-outline-dark:hover {
      background: var(--bosque);
      color: var(--crema);
    }

    /* ══════════════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════════════ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 24px 0;
      transition: var(--tr);
    }
    #navbar.scrolled {
      background: rgba(14,20,8,0.95);
      backdrop-filter: blur(16px);
      padding: 14px 0;
      border-bottom: var(--dl);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo { display: flex; align-items: center; }
    .nav-logo img { height: 44px; width: auto; display: block; }
    .nav-logo-fb {
      font-family: var(--ff-t);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--crema);
      letter-spacing: 1px;
    }
    .nav-logo-fb span { color: var(--inti); }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .nav-menu a {
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 400;
      color: rgba(240,237,216,0.75);
      transition: color 0.25s;
    }
    .nav-menu a:hover { color: var(--inti); }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .nav-wa {
      font-size: 0.78rem;
      font-weight: 400;
      color: rgba(240,237,216,0.6);
      display: flex;
      align-items: center;
      gap: 7px;
      transition: color 0.25s;
    }
    .nav-wa:hover { color: var(--inti); }
    .nav-wa i { color: #4ade80; font-size: 1rem; }
    .nav-btn { padding: 10px 24px !important; font-size: 0.67rem !important; letter-spacing: 2px !important; }

    /* hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 6px;
      cursor: pointer;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 1px;
      background: var(--crema);
      transition: var(--tr);
      transform-origin: center;
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* mobile menu */
    .mob-menu {
      position: fixed;
      inset: 0;
      background: var(--bosque);
      z-index: 2000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      transform: translateX(100%);
      transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .mob-menu.open { transform: translateX(0); }
    .mob-menu a {
      font-family: var(--ff-t);
      font-size: 1.3rem;
      font-weight: 300;
      color: var(--crema);
      letter-spacing: 1.5px;
      transition: color 0.2s;
    }
    .mob-menu a:hover { color: var(--inti); }
    .mob-close {
      position: absolute;
      top: 16px; right: 20px;
      color: rgba(240,237,216,0.45);
      font-size: 1.2rem;
      transition: color 0.2s;
      width: 48px; height: 48px;
      display: flex; align-items: center; justify-content: center;
      z-index: 1;
    }
    .mob-close:hover { color: var(--crema); }
    .mobile-wa-btn {
      font-size: 0.7rem;
      letter-spacing: 2px;
      margin-top: 8px;
      padding: 10px 22px;
    }

    /* ══════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('/imagenes/machu_picchu_amplio.jpg');
      background-image: image-set(url('/imagenes/machu_picchu_amplio.webp') type('image/webp'), url('/imagenes/machu_picchu_amplio.jpg') type('image/jpeg'));
      background-size: cover;
      background-position: center 30%;
      will-change: transform;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(14,20,8,0.25) 0%,
        rgba(14,20,8,0.15) 40%,
        rgba(14,20,8,0.7) 80%,
        rgba(14,20,8,0.92) 100%
      );
    }
    .hero-vignette {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, transparent 40%, rgba(14,20,8,0.5) 100%);
    }
    .hero-accent {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--tierra), var(--inti), var(--tierra), transparent);
    }
    .hero-steps-deco {
      position: absolute;
      top: 0; right: 0;
      height: 100%;
      width: auto;
      opacity: 0.025;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding-bottom: 100px;
      padding-top: 160px;
      max-width: 700px;
    }
    .hero-title {
      font-family: var(--ff-t);
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 300;
      color: var(--crema);
      line-height: 1.08;
      letter-spacing: -0.5px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--inti);
    }
    .hero-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 24px 0 32px;
    }
    .hero-divider-line {
      display: block;
      width: 40px;
      height: 1px;
      background: var(--tierra);
      flex-shrink: 0;
    }
    .hero-tagline {
      font-size: 0.82rem;
      font-weight: 300;
      color: rgba(240,237,216,0.65);
      letter-spacing: 0.5px;
    }
    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 56px;
    }
    .hero-stat {}
    .hero-stat-num {
      font-family: var(--ff-t);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--inti);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.68rem;
      font-weight: 300;
      color: rgba(240,237,216,0.5);
      letter-spacing: 0.5px;
      margin-top: 5px;
      line-height: 1.5;
    }
    .hero-scroll {
      position: absolute;
      bottom: 40px;
      right: 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      z-index: 2;
    }
    .hero-scroll-text {
      font-size: 0.6rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(240,237,216,0.35);
      writing-mode: vertical-rl;
    }
    .hero-scroll-line {
      display: block;
      width: 1px;
      height: 56px;
      background: linear-gradient(to bottom, rgba(240,237,216,0.35), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.35; transform: scaleY(1); }
      50% { opacity: 0.7; transform: scaleY(0.6); }
    }
    .hero-noise {
      position: absolute;
      inset: 0;
      opacity: 0.018;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    /* ══════════════════════════════════════════════
       WHY
    ══════════════════════════════════════════════ */
    #why {
      padding: 120px 0;
      background: var(--blanco);
    }
    .why-inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 96px;
      align-items: start;
    }
    .why-left {
      position: relative;
    }
    .why-float-box {
      position: absolute;
      top: -24px; left: -24px;
      width: 120px; height: 120px;
      border: 1px solid rgba(167,124,75,0.15);
      pointer-events: none;
    }
    .why-img-wrap {
      display: block;
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/5;
    }
    .why-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
      filter: saturate(0.9);
    }
    .why-img-wrap:hover img { transform: scale(1.04); }
    .why-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(14,20,8,0.55) 0%, transparent 50%);
    }
    .why-img-badge {
      position: absolute;
      bottom: 28px; left: 28px;
      background: rgba(14,20,8,0.85);
      backdrop-filter: blur(10px);
      border: var(--gold-line);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .why-img-badge-num {
      font-family: var(--ff-t);
      font-size: 2rem;
      font-weight: 700;
      color: var(--inti);
      line-height: 1;
    }
    .why-img-badge-text {
      font-size: 0.72rem;
      font-weight: 300;
      color: rgba(240,237,216,0.65);
      line-height: 1.5;
    }
    .why-img-badge-text strong { display: block; color: var(--crema); font-weight: 500; }
    .why-conocenos-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(14,20,8,0);
      transition: background 0.4s ease;
    }
    .why-img-wrap:hover .why-conocenos-overlay {
      background: rgba(14,20,8,0.3);
    }
    .why-conocenos-text {
      font-family: var(--ff-t);
      font-size: 1.3rem;
      font-weight: 300;
      color: var(--crema);
      letter-spacing: 3px;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(8px);
      transition: var(--tr);
    }
    .why-img-wrap:hover .why-conocenos-text {
      opacity: 1;
      transform: translateY(0);
    }
    .why-right {}
    .why-items {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .why-item {
      display: flex;
      gap: 24px;
      padding: 24px 0;
      border-bottom: 1px solid rgba(30,40,18,0.07);
    }
    .why-item:first-child { border-top: 1px solid rgba(30,40,18,0.07); }
    .why-item-num {
      font-family: var(--ff-t);
      font-size: 0.75rem;
      font-weight: 700;
      color: rgba(167,124,75,0.35);
      letter-spacing: 2px;
      min-width: 28px;
      padding-top: 2px;
    }
    .why-item-content h3 {
      font-family: var(--ff-t);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--bosque);
      margin-bottom: 6px;
    }
    .why-item-content p {
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--texto-suave);
      line-height: 1.75;
    }

    /* ══════════════════════════════════════════════
       TOURS
    ══════════════════════════════════════════════ */
    #tours {
      padding: 120px 0;
      background: var(--crema);
    }
    .tours-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      flex-wrap: wrap;
      gap: 24px;
    }
    .tours-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .tour-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
      background: var(--bosque);
    }
    .tour-card-img {
      position: absolute;
      inset: 0;
    }
    .tour-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
      filter: brightness(0.75) saturate(0.85);
    }
    .tour-card:hover .tour-card-img img {
      transform: scale(1.03);
      filter: brightness(0.85) saturate(0.95);
    }
    .tour-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(14,20,8,0.9) 0%,
        rgba(14,20,8,0.4) 40%,
        rgba(14,20,8,0.05) 70%,
        transparent 100%
      );
      transition: opacity 0.4s ease;
    }
    .tour-card:hover .tour-card-overlay {
      background: linear-gradient(
        to top,
        rgba(14,20,8,0.92) 0%,
        rgba(14,20,8,0.5) 50%,
        rgba(14,20,8,0.1) 80%,
        transparent 100%
      );
    }
    /* Badge "Más vendido" */
    .tour-card-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--tierra);
      color: var(--blanco);
      font-family: var(--font-cuerpo);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 6px 12px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: var(--radio);
    }
    .tour-card-badge i { font-size: 0.65rem; }
    /* Price badge */
    .tour-card-price {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(18,24,10,0.72);
      backdrop-filter: blur(8px);
      border: var(--gold-line);
      border-radius: var(--radio);
      padding: 8px 14px;
      font-family: var(--ff-t);
      font-size: 1rem;
      font-weight: 600;
      color: var(--inti);
      z-index: 3;
    }
    .tour-card-price span {
      font-size: 0.72rem;
      font-weight: 300;
      color: rgba(228,199,125,0.6);
    }
    .tour-card-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 28px 28px 32px;
      z-index: 2;
    }
    .tour-card-days {
      font-size: 0.65rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      font-weight: 400;
      color: var(--inti);
      margin-bottom: 8px;
    }
    .tour-card-title {
      font-family: var(--ff-t);
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--crema);
      line-height: 1.15;
      margin-bottom: 6px;
    }
    .tour-card-places {
      font-size: 0.76rem;
      font-weight: 300;
      color: rgba(240,237,216,0.55);
      margin-bottom: 14px;
      letter-spacing: 0.2px;
    }
    .tour-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--inti);
      opacity: 0;
      transform: translateY(8px);
      transition: var(--tr);
    }
    .tour-card:hover .tour-card-cta {
      opacity: 1;
      transform: translateY(0);
    }
    /* Featured card (spans 2 cols) */
    .tour-card.featured {
      grid-column: span 2;
      aspect-ratio: auto;
      min-height: 400px;
    }
    .tour-card.featured .tour-card-title {
      font-size: 1.9rem;
    }
    .tour-card.featured .tour-card-cta {
      opacity: 1;
      transform: translateY(0);
      color: var(--inti);
    }

    /* ══════════════════════════════════════════════
       DESTINOS
    ══════════════════════════════════════════════ */
    #destinos {
      padding: 120px 0;
      background: var(--bosque);
    }
    .destinos-head {
      text-align: center;
      margin-bottom: 64px;
    }
    .destinos-mosaic {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 320px 320px;
      gap: 2px;
    }
    .dest-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .dest-card:nth-child(1) {
      grid-row: span 2;
    }
    .dest-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
      filter: brightness(0.7) saturate(0.8);
    }
    .dest-card:hover img {
      transform: scale(1.05);
      filter: brightness(0.8) saturate(0.9);
    }
    .dest-hover-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) translateY(10px);
      background: rgba(14,20,8,0.75);
      backdrop-filter: blur(8px);
      border: var(--gold-line);
      color: var(--inti);
      font-size: 0.68rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
      padding: 10px 20px;
      opacity: 0;
      transition: var(--tr);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .dest-card:hover .dest-hover-btn {
      opacity: 1;
      transform: translate(-50%, -50%) translateY(0);
    }
    .dest-card-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 20px 24px;
      background: linear-gradient(to top, rgba(14,20,8,0.85), transparent);
    }
    .dest-card-info h3 {
      font-family: var(--ff-t);
      font-size: 1rem;
      font-weight: 600;
      color: var(--crema);
      margin-bottom: 3px;
    }
    .dest-card-info span {
      font-size: 0.7rem;
      font-weight: 300;
      color: rgba(240,237,216,0.5);
      letter-spacing: 1px;
    }

    /* ══════════════════════════════════════════════
       MANIFIESTO
    ══════════════════════════════════════════════ */
    #manifiesto {
      position: relative;
      padding: 140px 0;
      background: var(--bosque);
      overflow: hidden;
      text-align: center;
    }
    .manifiesto-photo {
      position: absolute;
      inset: 0;
      background-image: url('/imagenes/salkantay.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.12;
      filter: grayscale(0.6);
    }
    .manifiesto-frame-tl,
    .manifiesto-frame-br {
      position: absolute;
      width: 80px; height: 80px;
      border-color: rgba(228,199,125,0.2);
      border-style: solid;
    }
    .manifiesto-frame-tl {
      top: 48px; left: 64px;
      border-width: 1px 0 0 1px;
    }
    .manifiesto-frame-br {
      bottom: 48px; right: 64px;
      border-width: 0 1px 1px 0;
    }
    .manifiesto-inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto;
    }
    .manifiesto-ornament {
      font-family: var(--ff-t);
      font-size: 8rem;
      color: var(--tierra);
      opacity: 0.3;
      line-height: 0.5;
      display: block;
      margin-bottom: 32px;
    }
    .manifiesto-text {
      font-family: var(--ff-t);
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 300;
      font-style: italic;
      color: rgba(240,237,216,0.75);
      line-height: 1.9;
      margin-bottom: 40px;
    }
    .manifiesto-text strong { font-style: normal; font-weight: 700; color: var(--inti); }
    .manifiesto-sig {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 40px;
    }
    .manifiesto-sig-line {
      display: block;
      width: 40px;
      height: 1px;
      background: rgba(167,124,75,0.4);
    }
    .manifiesto-sig-text {
      font-size: 0.65rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 400;
      color: rgba(240,237,216,0.35);
    }

    /* ══════════════════════════════════════════════
       TESTIMONIOS
    ══════════════════════════════════════════════ */
    #testimonios {
      padding: 120px 0;
      background: var(--bosque);
    }
    .testimonios-head {
      text-align: center;
      margin-bottom: 64px;
    }
    .testimonios-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testi-card {
      background: rgba(240,237,216,0.04);
      border: var(--dl);
      padding: 36px 32px;
      transition: var(--tr);
    }
    .testi-card:hover {
      background: rgba(240,237,216,0.07);
      border-color: rgba(228,199,125,0.2);
    }
    .testi-stars {
      display: flex;
      gap: 4px;
      color: var(--inti);
      font-size: 0.75rem;
      margin-bottom: 20px;
    }
    .testi-quote {
      font-size: 0.88rem;
      font-weight: 300;
      color: rgba(240,237,216,0.65);
      line-height: 1.85;
      margin-bottom: 24px;
      font-style: italic;
    }
    .testi-sep {
      width: 32px;
      height: 1px;
      background: rgba(167,124,75,0.3);
      margin-bottom: 20px;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      object-fit: cover;
      border: 1px solid rgba(228,199,125,0.2);
    }
    .testi-name {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--crema);
    }
    .testi-country {
      font-size: 0.72rem;
      font-weight: 300;
      color: rgba(240,237,216,0.4);
      margin-top: 2px;
    }

    /* ══════════════════════════════════════════════
       EQUIPO
    ══════════════════════════════════════════════ */
    #equipo {
      padding: 120px 0;
      background: var(--blanco);
    }
    .equipo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .guia-card {
      position: relative;
      aspect-ratio: 3/4;            /* coincide con las fotos 720x960 → se ven completas */
      background: var(--bosque);
      overflow: hidden;
    }
    .guia-img {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .guia-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 25%;  /* prioriza el rostro */
      filter: grayscale(0.25) brightness(0.92);
      transition: var(--tr);
    }
    .guia-card:hover .guia-img img {
      filter: grayscale(0) brightness(1);
      transform: scale(1.03);
    }
    .guia-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(14,20,8,0.35), transparent 45%);
      pointer-events: none;
    }
    .guia-body {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      padding: 40px 28px 30px;
      /* verde sólido → degradado transparente */
      background: linear-gradient(to top,
        rgba(30,40,18,0.97) 0%,
        rgba(30,40,18,0.92) 22%,
        rgba(30,40,18,0.7) 50%,
        rgba(30,40,18,0.25) 78%,
        rgba(30,40,18,0) 100%);
    }
    .guia-body h3 {
      font-family: var(--ff-t);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--crema);
      margin-bottom: 4px;
    }
    .guia-role {
      font-size: 0.68rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 400;
      color: var(--inti);
      margin-bottom: 12px;
    }
    .guia-sep {
      width: 28px;
      height: 1px;
      background: rgba(167,124,75,0.35);
      margin-bottom: 12px;
    }
    .guia-body p {
      font-size: 0.82rem;
      font-weight: 300;
      color: rgba(240,237,216,0.78);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .guia-langs {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }
    .lang-tag {
      font-size: 0.6rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 400;
      color: rgba(240,237,216,0.4);
      border: 1px solid rgba(240,237,216,0.1);
      padding: 4px 10px;
    }

    /* ══════════════════════════════════════════════
       BLOG
    ══════════════════════════════════════════════ */
    #blog {
      padding: 120px 0;
      background: var(--crema);
    }
    .blog-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      flex-wrap: wrap;
      gap: 24px;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .blog-card {}
    .blog-img-link { display: block; }
    .blog-img {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .blog-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: saturate(0.85) brightness(0.9);
      transition: var(--tr);
    }
    .blog-img-hover-ov {
      position: absolute;
      inset: 0;
      background: rgba(14,20,8,0);
      transition: background 0.4s ease;
    }
    .blog-img-link:hover .blog-img img { transform: scale(1.04); }
    .blog-img-link:hover .blog-img-hover-ov { background: rgba(14,20,8,0.2); }
    .blog-body {}
    .blog-cat {
      font-size: 0.62rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--tierra);
      margin-bottom: 10px;
    }
    .blog-body h3 {
      font-family: var(--ff-t);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--bosque);
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .blog-body p {
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--texto-suave);
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .blog-link {
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--tierra);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.2s;
    }
    .blog-link:hover { gap: 12px; }

    /* ══════════════════════════════════════════════
       CONTACTO
    ══════════════════════════════════════════════ */
    #contacto {
      padding: 120px 0;
      background: var(--blanco);
    }
    .contacto-wrap {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: start;
    }
    .contacto-left {}
    .contacto-left h2 {
      font-family: var(--ff-t);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--bosque);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .contacto-left h2 strong { font-weight: 700; }
    .contacto-left p {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--texto-suave);
      line-height: 1.9;
      margin-bottom: 40px;
    }
    .contacto-items { display: flex; flex-direction: column; gap: 0; }
    .ci {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 22px 0;
      border-bottom: 1px solid rgba(30,40,18,0.07);
    }
    .ci:first-child { border-top: 1px solid rgba(30,40,18,0.07); }
    .ci-icon {
      width: 40px; height: 40px;
      border: 1px solid rgba(167,124,75,0.3);
      display: flex; align-items: center; justify-content: center;
      color: var(--tierra);
      font-size: 0.9rem;
      flex-shrink: 0;
    }
    .ci-text strong {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--bosque);
      font-weight: 500;
      margin-bottom: 4px;
    }
    .ci-text a, .ci-text span {
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--texto-suave);
      transition: color 0.2s;
    }
    .ci-text a:hover { color: var(--tierra); }

    /* Formulario */
    .contacto-form-wrap {
      background: var(--blanco);
      border: 1px solid rgba(30,40,18,0.07);
      padding: 44px;
    }
    .contacto-form-wrap h3 {
      font-family: var(--ff-t);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--bosque);
      margin-bottom: 6px;
    }
    .contacto-form-wrap p {
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--texto-suave);
      margin-bottom: 32px;
    }
    .fgrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .fgrid .full { grid-column: 1 / -1; }
    .fg { display: flex; flex-direction: column; gap: 6px; }
    .fg label {
      font-size: 0.68rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--bosque);
    }
    .fg input, .fg select, .fg textarea {
      padding: 13px 16px;
      border: 1px solid rgba(30,40,18,0.12);
      font-family: var(--font-cuerpo);
      font-size: 0.87rem;
      font-weight: 300;
      color: var(--texto);
      background: var(--blanco);
      outline: none;
      transition: border-color 0.25s;
      border-radius: 0;
      -webkit-appearance: none;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus {
      border-color: var(--tierra);
    }
    .fg textarea { resize: vertical; min-height: 100px; }
    .form-btn {
      margin-top: 8px;
      width: 100%;
      padding: 17px;
      font-size: 0.72rem;
      letter-spacing: 3px;
      justify-content: center;
    }

    /* ══════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════ */
    footer {
      background: #141A0A;
      padding: 80px 0 0;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 64px;
      padding-bottom: 64px;
      border-bottom: var(--dl);
    }
    .footer-brand img {
      height: 52px;
      width: auto;
      margin-bottom: 20px;
    }
    .footer-brand-fb {
      font-family: var(--ff-t);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--crema);
      margin-bottom: 20px;
      letter-spacing: 1px;
    }
    .footer-brand-fb span { color: var(--inti); }
    .footer-brand p {
      font-size: 0.84rem;
      font-weight: 300;
      color: rgba(240,237,216,0.4);
      line-height: 1.8;
      max-width: 260px;
      margin-bottom: 28px;
    }
    .footer-socials { display: flex; gap: 8px; }
    .soc {
      width: 36px; height: 36px;
      border: var(--dl);
      display: flex; align-items: center; justify-content: center;
      color: rgba(240,237,216,0.45);
      font-size: 0.85rem;
      transition: var(--tr);
    }
    .soc:hover {
      border-color: var(--tierra);
      color: var(--inti);
    }
    .footer-col h4 {
      font-size: 0.65rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--inti);
      font-weight: 500;
      margin-bottom: 24px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-col ul li a {
      font-size: 0.84rem;
      font-weight: 300;
      color: rgba(240,237,216,0.4);
      letter-spacing: 0.2px;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: rgba(240,237,216,0.8); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 0;
      border-top: var(--dl);
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-copy {
      font-size: 0.75rem;
      font-weight: 300;
      color: rgba(240,237,216,0.25);
      letter-spacing: 0.5px;
    }
    .footer-legal {
      display: flex;
      gap: 24px;
    }
    .footer-legal a {
      font-size: 0.72rem;
      font-weight: 300;
      color: rgba(240,237,216,0.25);
      letter-spacing: 0.5px;
      transition: color 0.2s;
    }
    .footer-legal a:hover { color: rgba(240,237,216,0.6); }

    /* ══════════════════════════════════════════════
       WHATSAPP FLOAT
    ══════════════════════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 32px; right: 32px;
      z-index: 900;
      width: 56px; height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: white;
      font-size: 1.6rem;
      box-shadow: 0 8px 24px rgba(37,211,102,0.4);
      transition: var(--tr);
    }
    .wa-float:hover {
      transform: scale(1.1) translateY(-2px);
      box-shadow: 0 14px 32px rgba(37,211,102,0.5);
    }
    .wa-float-tip {
      position: absolute;
      right: 68px;
      background: rgba(18,24,10,0.92);
      border: var(--gold-line);
      color: var(--crema);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.5px;
      padding: 8px 14px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    .wa-float:hover .wa-float-tip { opacity: 1; }

    /* ══════════════════════════════════════════════
       POPUP
    ══════════════════════════════════════════════ */
    .popup-overlay {
      display: none;
      position: fixed; inset: 0;
      background: rgba(10,14,6,0.75);
      backdrop-filter: blur(6px);
      z-index: 2000;
      align-items: center; justify-content: center;
      padding: 24px;
    }
    .popup-overlay.open { display: flex; }
    .popup-box {
      background: var(--blanco);
      max-width: 560px; width: 100%;
      position: relative;
      max-height: 90vh; overflow-y: auto;
      border-top: 3px solid var(--tierra);
    }
    .popup-header {
      background: var(--bosque);
      padding: 32px 36px;
      position: relative;
    }
    .popup-header h2 {
      font-family: var(--ff-t);
      font-size: 1.6rem;
      font-weight: 300;
      color: var(--crema);
    }
    .popup-header h2 strong { font-weight: 700; color: var(--inti); }
    .popup-header p {
      font-size: 0.84rem;
      color: rgba(240,237,216,0.55);
      font-weight: 300;
      margin-top: 6px;
    }
    .popup-close {
      position: absolute;
      top: 20px; right: 24px;
      background: none;
      color: rgba(240,237,216,0.35);
      font-size: 1.3rem;
      transition: color 0.2s;
    }
    .popup-close:hover { color: var(--crema); }
    .popup-body { padding: 32px 36px; }

    /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
    /* ══ TABLET LANDSCAPE ≤1199px ══ */
    @media (max-width: 1199px) {
      .nav-menu { gap: 24px; }
      .nav-menu a { font-size: 0.7rem; letter-spacing: 1.5px; }
      .tours-grid { grid-template-columns: repeat(2, 1fr); }
      .tour-card.featured { grid-column: span 1; min-height: 320px; }
      .destinos-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 260px;
      }
      .dest-card:nth-child(1) { grid-row: span 1; }
      .equipo-grid { grid-template-columns: 1fr 1fr; }
      .section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
    }

    /* ══ TABLET PORTRAIT — hamburger ≤900px ══ */
    @media (max-width: 900px) {
      .nav-menu { display: none; }
      .nav-wa { display: none; }
      .hamburger { display: flex; }
      .nav-logo img { height: 40px; }
      .why-float-box { display: none; }
      .why-inner { grid-template-columns: 1fr; gap: 48px; }
      .why-left { max-width: 480px; }
      .equipo-grid { grid-template-columns: 1fr 1fr; }
      .contacto-wrap { grid-template-columns: 1fr; gap: 48px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .testimonios-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ══ MÓVIL ≤680px ══ */
    @media (max-width: 680px) {
      .container { padding: 0 18px; }
      #navbar { padding: 12px 0; }
      .nav-logo img { height: 34px; }
      .nav-btn { display: none; }
      #hero { height: 100vh; min-height: 100svh; }
      .hero-title { font-size: clamp(1.9rem, 8.5vw, 2.8rem); line-height: 1.12; }
      .hero-content { padding-top: 96px; padding-bottom: 60px; }
      .hero-btns { flex-direction: column; gap: 10px; }
      .hero-btns .btn { width: 100%; justify-content: center; font-size: 0.68rem; padding: 13px 20px; }
      .hero-stats { gap: 20px; margin-top: 36px; }
      .hero-stat-num { font-size: 1.3rem; }
      .hero-scroll { display: none; }
      .tours-grid { grid-template-columns: 1fr; }
      .tour-card { aspect-ratio: 4/3; min-height: 0; }
      .tour-card.featured { grid-column: 1 / -1; aspect-ratio: 4/3; min-height: 0; }
      .tour-card-title { font-size: 1.1rem; }
      .tour-card.featured .tour-card-title { font-size: 1.3rem; }
      .tour-card-cta { opacity: 1; transform: translateY(0); }
      .destinos-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
      .dest-card { min-height: 200px; }
      .equipo-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
      .fgrid { grid-template-columns: 1fr; }
      .fgrid .full { grid-column: 1; }
      .contacto-form-wrap { padding: 24px 18px; }
      .manifiesto-frame-tl, .manifiesto-frame-br { display: none; }
      #why, #tours, #destinos, #manifiesto, #equipo,
      #testimonios, #blog, #contacto { padding: 64px 0; }
      .popup-header { padding: 24px 22px; }
      .popup-body { padding: 24px 22px; }
    }

/* ── Selector de idioma ES/EN ── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border: 1px solid rgba(228, 199, 125, 0.35);
  border-radius: 20px;
  color: var(--crema);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .25s;
}
.lang-switch:hover { background: var(--tierra); border-color: var(--tierra); }
.lang-switch i { font-size: .75rem; }
.mob-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tierra-claro);
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}
@media(max-width:680px) { .lang-switch { padding: 5px 10px; font-size: .62rem; } }
