    /* ========== CSS VARIABLES ========== */
    :root {
      --blue-primary: #0066CC;
      --blue-deep: #003A7A;
      --blue-light: #4DA6FF;
      --blue-sky: #87CEEB;
      --green-primary: #00A651;
      --green-light: #4FCB8D;
      --green-pale: #E8F8F0;
      --white: #FFFFFF;
      --off-white: #F7FBFF;
      --gray-100: #F0F4F8;
      --gray-300: #CBD5E0;
      --gray-600: #4A5568;
      --gray-900: #1A202C;
      --gold: #F5C518;
      --wa-green: #25D366;
      --shadow-soft: 0 4px 24px rgba(0,102,204,0.10);
      --shadow-card: 0 8px 40px rgba(0,58,122,0.13);
      --shadow-hover: 0 20px 60px rgba(0,58,122,0.20);
      --radius: 20px;
      --radius-sm: 12px;
      --font-display: 'Playfair Display', serif;
      --font-body: 'DM Sans', sans-serif;
      --font-impact: 'Bebas Neue', sans-serif;
    }

    /* ========== RESET & BASE ========== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 88px;
      overflow-x: hidden;
    }
    body {
      font-family: var(--font-body);
      color: var(--gray-900);
      background: var(--white);
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ========== ANIMATED BACKGROUND CANVAS ========== */
    #bg-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: -1;
      pointer-events: none;
    }

    /* ========== FLOATING PARTICLES ========== */
    .particles {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: -1;
      overflow: hidden;
      pointer-events: none;
    }
    .particle {
      position: absolute;
      border-radius: 50%;
      animation: floatParticle linear infinite;
      opacity: 0;
    }
    @keyframes floatParticle {
      0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
      10% { opacity: 0.6; }
      90% { opacity: 0.3; }
      100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
    }

    /* ========== SCROLL ANIMATIONS ========== */
    .fade-in {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in-left.visible { opacity: 1; transform: translateX(0); }
    .fade-in-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in-right.visible { opacity: 1; transform: translateX(0); }
    .scale-in {
      opacity: 0;
      transform: scale(0.85);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .scale-in.visible { opacity: 1; transform: scale(1); }

    /* ========== NAVBAR ========== */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 clamp(16px, 4vw, 40px);
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      overflow: visible;
      transition:
        background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease,
        border-color 0.45s ease,
        backdrop-filter 0.5s ease;
      background: transparent;
      border-bottom: 1px solid transparent;
    }

    /* Arriba del todo: barra tipo cristal sobre el hero (no blanco plano) */
    .navbar:not(.scrolled) {
      background: linear-gradient(
        180deg,
        rgba(0, 28, 72, 0.62) 0%,
        rgba(0, 50, 110, 0.38) 42%,
        rgba(0, 90, 120, 0.14) 78%,
        rgba(0, 120, 100, 0.03) 100%
      );
      backdrop-filter: blur(18px) saturate(165%);
      -webkit-backdrop-filter: blur(18px) saturate(165%);
      border-bottom-color: rgba(255, 255, 255, 0.14);
      box-shadow: 0 8px 32px rgba(0, 15, 50, 0.18);
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border-bottom-color: rgba(0, 102, 204, 0.08);
      box-shadow: 0 4px 24px rgba(0, 58, 122, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: inherit;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      overflow: visible;
    }
    .nav-logo-plate {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      background: transparent;
      border: none;
      box-shadow: none;
      isolation: isolate;
      overflow: visible;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    /* Resplandor diagonal suave (no caja sólida) */
    .nav-logo-plate::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(128%, 560px);
      height: 250%;
      transform: translate(-42%, -50%) rotate(-14deg);
      background: linear-gradient(
        122deg,
        rgba(255, 255, 255, 0.82) 0%,
        rgba(255, 255, 255, 0.42) 32%,
        rgba(255, 255, 255, 0.12) 52%,
        transparent 70%
      );
      filter: blur(24px);
      z-index: -1;
      pointer-events: none;
      opacity: 0.92;
      transition: opacity 0.35s ease, filter 0.35s ease;
    }
    .navbar.scrolled .nav-logo-plate::before {
      background: linear-gradient(
        122deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 252, 255, 0.55) 34%,
        rgba(255, 255, 255, 0.15) 54%,
        transparent 72%
      );
      opacity: 1;
    }
    .nav-logo:focus-visible {
      outline: none;
    }
    .nav-logo:focus-visible .nav-logo-plate {
      outline: 3px solid rgba(0, 102, 204, 0.55);
      outline-offset: 4px;
      border-radius: 4px;
    }
    .nav-logo:hover .nav-logo-plate {
      transform: scale(1.04);
    }
    .nav-logo:hover .nav-logo-plate::before {
      opacity: 1;
      filter: blur(24px);
    }
    .nav-logo-plate img {
      position: relative;
      z-index: 1;
      height: clamp(76px, 18vw, 132px);
      width: auto;
      max-width: min(620px, calc(100vw - 220px));
      object-fit: contain;
      object-position: left center;
      display: block;
      transform: translateY(10px);
    }

    @media (max-width: 1024px) {
      .nav-logo-plate img {
        height: clamp(60px, 15vw, 100px);
        max-width: calc(100vw - 132px);
        transform: translateY(6px);
      }
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(20px, 2.8vw, 40px);
      list-style: none;
    }
    .nav-links a {
      font-size: clamp(0.98rem, 1.1vw, 1.08rem);
      font-weight: 600;
      letter-spacing: 0.02em;
      padding: 10px 8px;
      border-radius: 10px;
      position: relative;
      transition: color 0.35s ease, background 0.35s ease;
    }
    @media (min-width: 1024px) {
      .nav-links a {
        font-size: clamp(1.06rem, 1.15vw, 1.14rem);
        padding: 10px 12px;
      }
    }

    .navbar:not(.scrolled) .nav-links a {
      color: rgba(255, 255, 255, 0.94);
    }
    .navbar.scrolled .nav-links a {
      color: var(--gray-600);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      border-radius: 2px;
      transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .navbar:not(.scrolled) .nav-links a::after {
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), var(--gold));
    }
    .navbar.scrolled .nav-links a::after {
      background: linear-gradient(90deg, var(--green-primary), var(--blue-primary));
    }
    .nav-links a:hover::after,
    .nav-links a:focus-visible::after {
      width: calc(100% - 16px);
    }

    .navbar:not(.scrolled) .nav-links a:hover,
    .navbar:not(.scrolled) .nav-links a:focus-visible {
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
    }
    .navbar.scrolled .nav-links a:hover,
    .navbar.scrolled .nav-links a:focus-visible {
      color: var(--blue-deep);
      background: rgba(0, 102, 204, 0.06);
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--wa-green), #128C7E);
      color: white !important;
      padding: 12px 22px;
      border-radius: 50px;
      font-weight: 700 !important;
      font-size: 0.92rem !important;
      letter-spacing: 0.03em;
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.06);
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease !important;
    }
    .navbar.scrolled .nav-cta {
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.32);
    }
    .nav-cta:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 10px 28px rgba(37, 211, 102, 0.48) !important;
    }
    .nav-cta::after {
      display: none !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 10px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.22);
      transition: background 0.35s ease, border-color 0.35s ease;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: white;
      border-radius: 2px;
      transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    .navbar.scrolled .hamburger {
      background: rgba(0, 102, 204, 0.08);
      border-color: rgba(0, 102, 204, 0.12);
    }
    .navbar.scrolled .hamburger span {
      background: var(--blue-deep);
    }
    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media (prefers-reduced-motion: reduce) {
      .navbar {
        transition-duration: 0.01ms;
      }
    }

    .mobile-menu {
      position: fixed;
      top: 78px; left: 0; right: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(20px);
      z-index: 999;
      padding: 24px;
      transform: translateY(-110%);
      transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
      box-shadow: 0 20px 60px rgba(0,58,122,0.15);
    }
    .mobile-menu.open { transform: translateY(0); }
    .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
    .mobile-menu a {
      display: block;
      padding: 14px 16px;
      font-size: 1rem;
      font-weight: 500;
      color: var(--gray-900);
      border-radius: var(--radius-sm);
      transition: all 0.2s;
    }
    .mobile-menu a:hover { background: var(--gray-100); color: var(--blue-primary); padding-left: 24px; }
    .mobile-menu .nav-cta { margin-top: 12px; justify-content: center; color: white !important; }

    /* ========== HERO ========== */
    @keyframes heroGradFlow {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    @keyframes heroMeshDrift {
      0% { transform: translate(0, 0) scale(1); opacity: 0.55; }
      100% { transform: translate(-3%, 2%) scale(1.06); opacity: 0.75; }
    }
    @keyframes heroGridPulse {
      0%, 100% { opacity: 0.12; }
      50% { opacity: 0.2; }
    }
    @keyframes heroFloatTilt {
      0%, 100% { transform: rotate(-7deg) translateY(0); }
      50% { transform: rotate(-5deg) translateY(-8px); }
    }
    @keyframes heroFloatTiltFront {
      0%, 100% { transform: rotate(5deg) translateY(0); }
      50% { transform: rotate(7deg) translateY(-12px); }
    }
    @keyframes heroTagPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(0, 200, 180, 0.35), 0 0 24px rgba(0, 166, 130, 0.25); }
      50% { box-shadow: 0 6px 28px rgba(0, 220, 200, 0.45), 0 0 36px rgba(0, 180, 150, 0.35); }
    }
    @keyframes heroFlashGlow {
      0%, 100% { filter: brightness(1); }
      50% { filter: brightness(1.12); }
    }

    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }
    .hero-gradient-fallback {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(
        125deg,
        #002a5c 0%,
        #003d7a 18%,
        #0066b8 38%,
        #008a9e 58%,
        #00a651 78%,
        #007a4a 100%
      );
      background-size: 280% 280%;
      animation: heroGradFlow 22s ease-in-out infinite alternate;
    }
    .hero-gradient-fallback::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 45% at 75% 35%, rgba(77, 200, 255, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 18% 72%, rgba(0, 220, 150, 0.18) 0%, transparent 50%);
      pointer-events: none;
    }
    .hero-bg-mesh {
      position: absolute;
      inset: -15%;
      z-index: 1;
      background:
        radial-gradient(ellipse 50% 40% at 60% 30%, rgba(0, 200, 190, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 45% 35% at 25% 60%, rgba(0, 120, 200, 0.12) 0%, transparent 48%);
      animation: heroMeshDrift 18s ease-in-out infinite alternate;
      pointer-events: none;
    }
    .hero-bg-grid {
      position: absolute;
      inset: 0;
      z-index: 2;
      opacity: 0.14;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, black 15%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, black 15%, transparent 70%);
      animation: heroGridPulse 10s ease-in-out infinite;
      pointer-events: none;
    }
    .hero-waves {
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      z-index: 5;
    }
    .hero-waves svg { display: block; }

    .hero-layout {
      position: relative;
      z-index: 4;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
      gap: clamp(24px, 5vw, 56px);
      align-items: center;
      max-width: 1240px;
      width: 100%;
      margin: 0 auto;
      padding: 110px clamp(20px, 4vw, 40px) 96px;
    }
    @media (min-width: 1025px) {
      .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 1.12fr);
        gap: clamp(32px, 4vw, 64px);
        max-width: 1320px;
      }
    }
    .hero-copy {
      text-align: left;
      max-width: 640px;
    }
    .hero-copy .hero-actions {
      justify-content: flex-start;
    }
    .hero-copy .hero-stats {
      justify-content: flex-start;
    }

    .hero-visual {
      position: relative;
      justify-self: end;
      width: 100%;
      max-width: 420px;
    }
    @media (min-width: 1025px) {
      .hero-visual {
        max-width: 580px;
      }
    }
    .hero-visual-caption {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 4.5vw, 3.65rem);
      font-weight: 700;
      font-style: italic;
      letter-spacing: 0.02em;
      text-transform: none;
      line-height: 1.12;
      margin: 0 0 18px 6px;
      color: #fff;
      text-shadow:
        0 1px 0 rgba(0, 45, 70, 0.35),
        0 4px 28px rgba(0, 25, 55, 0.45),
        0 0 48px rgba(0, 180, 170, 0.22);
      filter: drop-shadow(0 2px 20px rgba(0, 80, 100, 0.25));
    }
    .hero-visual-caption::after {
      content: '';
      display: block;
      width: min(120px, 40%);
      height: 3px;
      margin-top: 14px;
      margin-left: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, rgba(255, 229, 102, 0.95), rgba(0, 200, 180, 0.85), transparent);
      opacity: 0.95;
    }
    @media (min-width: 1025px) {
      .hero-visual-caption {
        margin-bottom: 22px;
        font-size: clamp(2.25rem, 3.6vw, 3.85rem);
      }
      .hero-visual-caption::after {
        width: min(160px, 55%);
        margin-top: 16px;
      }
    }
    .hero-float-wrap {
      position: relative;
      min-height: 400px;
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    @media (min-width: 1025px) {
      .hero-float-wrap {
        min-height: 480px;
      }
    }
    .hero-float-wrap.is-fading {
      opacity: 0;
      transform: scale(0.97);
    }
    .hero-float-stage {
      position: relative;
      width: 100%;
      height: 400px;
      perspective: 900px;
    }
    @media (min-width: 1025px) {
      .hero-float-stage {
        height: 480px;
        perspective: 1040px;
      }
    }
    .hero-float-card {
      position: absolute;
      border-radius: 20px;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
    }
    .hero-float-card--back {
      width: 58%;
      max-width: 220px;
      left: 4%;
      top: 12%;
      z-index: 1;
      animation: heroFloatTilt 7s ease-in-out infinite;
    }
    .hero-float-card--front {
      width: 68%;
      max-width: 270px;
      right: 2%;
      bottom: 6%;
      z-index: 2;
      animation: heroFloatTiltFront 6.5s ease-in-out infinite 0.4s;
    }
    @media (min-width: 1025px) {
      .hero-float-card--back {
        max-width: 300px;
        width: 56%;
        left: 2%;
        top: 10%;
      }
      .hero-float-card--front {
        max-width: 368px;
        width: 72%;
        right: 0;
        bottom: 4%;
      }
    }
    .hero-float-card-frame {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: rgba(0, 30, 60, 0.5);
      box-shadow:
        0 28px 56px rgba(0, 15, 45, 0.45),
        0 12px 28px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.14) inset,
        0 0 40px rgba(0, 180, 160, 0.12);
    }
    @media (min-width: 1025px) {
      .hero-float-card,
      .hero-float-card-frame {
        border-radius: 22px;
      }
      .hero-float-tag--chip {
        font-size: 0.74rem;
        padding: 7px 13px;
      }
      .hero-float-tag--pill {
        font-size: 0.78rem;
        padding: 11px 20px;
      }
      .hero-float-tag--flash {
        font-size: 0.65rem;
        padding: 6px 12px;
      }
    }
    .hero-float-card--back .hero-float-card-frame {
      aspect-ratio: 3 / 4;
    }
    .hero-float-card--front .hero-float-card-frame {
      aspect-ratio: 4 / 5;
    }
    .hero-float-card-img {
      width: 100%;
      height: 100%;
      min-height: 200px;
      background-size: cover;
      background-position: center;
      background-color: rgba(0, 50, 90, 0.4);
    }
    .hero-float-card--back .hero-float-card-img {
      background-position: 25% center;
    }
    .hero-float-card--front .hero-float-card-img {
      background-position: 60% center;
    }
    .hero-float-card:hover .hero-float-card-frame {
      box-shadow:
        0 36px 64px rgba(0, 20, 50, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.22) inset,
        0 0 48px rgba(0, 210, 180, 0.2);
    }
    .hero-float-card:hover {
      z-index: 5;
    }
    .hero-float-tag {
      position: absolute;
      font-family: var(--font-body);
      font-weight: 700;
      line-height: 1.2;
      z-index: 3;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    }
    .hero-float-tag--chip {
      top: 12px;
      right: 10px;
      font-size: 0.68rem;
      letter-spacing: 0.04em;
      padding: 6px 11px;
      border-radius: 10px;
      color: #fff;
      background: linear-gradient(135deg, rgba(0, 90, 160, 0.92), rgba(0, 150, 130, 0.9));
      border: 1px solid rgba(255, 255, 255, 0.28);
      box-shadow: 0 6px 18px rgba(0, 40, 80, 0.35);
      max-width: calc(100% - 20px);
      text-align: center;
    }
    .hero-float-tag--chip:hover {
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 10px 26px rgba(0, 60, 100, 0.4);
    }
    .hero-float-tag--pill {
      left: 50%;
      bottom: 14px;
      transform: translateX(-50%);
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      padding: 10px 18px;
      border-radius: 50px;
      white-space: nowrap;
      max-width: 92%;
      overflow: hidden;
      text-overflow: ellipsis;
      color: #fff;
      background: linear-gradient(100deg, #0096c8 0%, #00a896 45%, #00c896 100%);
      background-size: 200% 200%;
      animation: heroGradFlow 8s ease-in-out infinite, heroTagPulse 3s ease-in-out infinite;
      border: 1px solid rgba(255, 255, 255, 0.35);
    }
    .hero-float-tag--pill:hover {
      transform: translateX(-50%) scale(1.06) translateY(-3px);
      box-shadow: 0 12px 32px rgba(0, 200, 170, 0.45);
    }
    .hero-float-tag--flash {
      top: 10px;
      left: 10px;
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 8px;
      color: #0a2540;
      background: linear-gradient(135deg, #ffe566, #ffd54a);
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 4px 16px rgba(255, 200, 60, 0.45);
      animation: heroFlashGlow 2.5s ease-in-out infinite;
    }
    .hero-float-tag--flash:hover {
      transform: scale(1.08);
    }

    @media (max-width: 1024px) {
      .hero-layout {
        grid-template-columns: 1fr;
        padding-top: 100px;
      }
      .hero-copy {
        text-align: center;
        max-width: none;
      }
      .hero-copy .hero-actions,
      .hero-copy .hero-stats {
        justify-content: center;
      }
      .hero-visual {
        justify-self: center;
        order: -1;
        max-width: 380px;
        margin-bottom: 8px;
      }
      .hero-visual-caption {
        text-align: center;
        margin-left: 0;
        font-size: clamp(1.3rem, 5.5vw, 2.05rem);
      }
      .hero-visual-caption::after {
        margin-left: auto;
        margin-right: auto;
      }
      .hero-float-stage {
        height: 360px;
      }
      .hero-float-wrap {
        min-height: 360px;
      }
    }
    @media (max-width: 480px) {
      .hero-float-stage {
        height: 320px;
      }
      .hero-float-card--back {
        width: 52%;
        left: 0;
      }
      .hero-float-card--front {
        width: 62%;
        right: 0;
      }
      .hero-float-tag--pill {
        font-size: 0.65rem;
        padding: 8px 12px;
        white-space: normal;
        text-align: center;
      }
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.3);
      color: white;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeSlideDown 0.9s ease forwards;
    }
    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-badge .dot {
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: 0.7; }
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 6.5vw, 4.6rem);
      font-weight: 900;
      color: white;
      line-height: 1.05;
      margin-bottom: 12px;
      animation: fadeSlideUp 1s 0.2s ease forwards;
      opacity: 0;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    .hero h1 em {
      font-style: italic;
      color: #ffe566;
      -webkit-text-stroke: 0.5px rgba(0, 40, 60, 0.2);
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35), 0 0 32px rgba(0, 80, 90, 0.25);
    }
    .hero-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      color: rgba(255, 255, 255, 0.92);
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
      font-weight: 300;
      letter-spacing: 0.3px;
      margin-bottom: 40px;
      animation: fadeSlideUp 1s 0.4s ease forwards;
      opacity: 0;
    }
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeSlideUp 1s 0.6s ease forwards;
      opacity: 0;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
      border: none;
      outline: none;
    }
    .btn-wa {
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: white;
      box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    }
    .btn-wa:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 40px rgba(37,211,102,0.5); }
    .btn-outline {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      color: white;
      border: 2px solid rgba(255,255,255,0.5);
    }
    .btn-outline:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
    .btn-blue {
      background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
      color: white;
      box-shadow: 0 8px 25px rgba(0,102,204,0.4);
    }
    .btn-blue:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,102,204,0.5); }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 60px;
      flex-wrap: wrap;
      animation: fadeSlideUp 1s 0.8s ease forwards;
      opacity: 0;
    }
    .hero-stat { text-align: center; }
    .hero-stat .number {
      font-family: var(--font-impact);
      font-size: 2.5rem;
      color: #ffe566;
      letter-spacing: 1px;
      line-height: 1;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }
    .hero-stat .label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.88);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 4px;
      text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    }

    /* Floating airplane animation */
    .hero-plane {
      position: absolute;
      top: 20%;
      left: -80px;
      font-size: 2.5rem;
      animation: flyPlane 8s linear infinite;
      z-index: 3;
      opacity: 0.35;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    }
    @keyframes flyPlane {
      0% { left: -80px; top: 25%; opacity: 0; }
      5% { opacity: 0.4; }
      95% { opacity: 0.4; }
      100% { left: calc(100% + 80px); top: 20%; opacity: 0; }
    }

    /* ========== SECTION BASE ========== */
    section { position: relative; }
    .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green-primary);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 900;
      color: var(--blue-deep);
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .section-desc {
      font-size: 1rem;
      color: var(--gray-600);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ========== PROMO BANNER STRIP ========== */
    .promo-strip {
      background: linear-gradient(90deg, var(--blue-deep), var(--blue-primary), var(--green-primary), var(--blue-primary), var(--blue-deep));
      background-size: 300% 100%;
      animation: gradientShift 6s ease infinite;
      padding: 14px 0;
      overflow: hidden;
    }
    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    .promo-strip-track {
      display: flex;
      gap: 60px;
      white-space: nowrap;
      animation: marquee 25s linear infinite;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .promo-strip-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: white;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .promo-strip-item .icon { font-size: 1rem; }

    /* ========== LOGO SHOWCASE ========== */
    .logo-showcase-section {
      position: relative;
      padding: clamp(22px, 4vw, 40px) 0 clamp(2px, 0.8vw, 8px);
      overflow: hidden;
      background: linear-gradient(180deg, rgba(5, 118, 151, 0.08) 0%, rgba(0, 166, 81, 0.06) 58%, rgba(255, 255, 255, 0) 100%);
    }
    .logo-showcase-inner {
      position: relative;
      width: min(1100px, calc(100% - 28px));
      margin: 0 auto;
      min-height: clamp(118px, 20vw, 210px);
      display: flex;
      align-items: center;
      justify-content: center;
      isolation: isolate;
    }
    .logo-showcase-wave {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      border-radius: 46% 54% 56% 44% / 56% 44% 56% 44%;
      opacity: 0.72;
      filter: blur(8px);
      z-index: -2;
      animation: logoWaveDrift 8.8s ease-in-out infinite alternate;
    }
    .logo-showcase-wave--a {
      width: min(880px, 96vw);
      height: clamp(120px, 18vw, 188px);
      background: radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.7) 0%, rgba(165, 242, 255, 0.35) 38%, rgba(0, 166, 81, 0.12) 70%, transparent 100%);
    }
    .logo-showcase-wave--b {
      width: min(760px, 84vw);
      height: clamp(92px, 14vw, 142px);
      background: radial-gradient(ellipse at 55% 45%, rgba(255, 255, 255, 0.62) 0%, rgba(118, 216, 255, 0.28) 45%, transparent 100%);
      animation-delay: -1.6s;
      animation-duration: 7.2s;
      filter: blur(10px);
      z-index: -1;
    }
    .logo-showcase-glow {
      position: absolute;
      inset: 14% 16%;
      background: linear-gradient(118deg, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.18) 42%, transparent 68%);
      transform: rotate(-5deg);
      filter: blur(22px);
      opacity: 0.85;
      pointer-events: none;
      z-index: -1;
    }
    .logo-showcase-img {
      width: min(760px, 96vw);
      height: auto;
      display: block;
      object-fit: contain;
      transform: translateY(10px) scale(0.88) rotate(-2.2deg);
      filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18)) drop-shadow(0 5px 18px rgba(0, 102, 204, 0.2));
      transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
      will-change: transform, filter;
      animation: logoShowcaseIn 0.78s cubic-bezier(0.2, 1.28, 0.24, 1) both;
    }
    .logo-showcase-section.visible .logo-showcase-img {
      transform: translateY(0) scale(1) rotate(0deg);
    }
    .logo-showcase-inner:hover .logo-showcase-img {
      transform: translateY(-4px) scale(1.03) rotate(-0.4deg);
      filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.22)) drop-shadow(0 8px 24px rgba(0, 166, 81, 0.26));
    }
    .logo-showcase-inner:hover .logo-showcase-wave--a {
      animation-duration: 6.6s;
    }
    .logo-showcase-inner:hover .logo-showcase-wave--b {
      animation-duration: 5.8s;
    }
    @keyframes logoWaveDrift {
      0% { transform: translate(-50%, -50%) rotate(-3deg) scale(1); border-radius: 46% 54% 56% 44% / 56% 44% 56% 44%; }
      50% { transform: translate(-50%, -52%) rotate(2deg) scale(1.03); border-radius: 52% 48% 44% 56% / 46% 54% 46% 54%; }
      100% { transform: translate(-50%, -50%) rotate(-2deg) scale(0.99); border-radius: 48% 52% 55% 45% / 55% 45% 55% 45%; }
    }
    @keyframes logoShowcaseIn {
      0% {
        opacity: 0;
        transform: translateY(30px) scale(0.76) rotate(-4.5deg);
        filter: blur(1px) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
      }
      60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.06) rotate(1deg);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
        filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18)) drop-shadow(0 5px 18px rgba(0, 102, 204, 0.2));
      }
    }

    /* ========== DESTINOS HERO CARDS ========== */
    .destinos-section {
      padding: 100px 0;
      background: linear-gradient(180deg, var(--off-white) 0%, white 100%);
    }
    .destinos-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      width: 100%;
      min-width: 0;
    }
    .destino-hero-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      aspect-ratio: 4/5;
      cursor: pointer;
      box-shadow: var(--shadow-card);
      transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.5s;
      min-width: 0;
      max-width: 100%;
    }
    @media (hover: hover) and (pointer: fine) {
      .destino-hero-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-hover); }
    }
    .destino-hero-card:first-child { grid-row: span 2; aspect-ratio: auto; min-height: 600px; }
    .destino-card-media {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: linear-gradient(145deg, #003d7a, #006994);
    }
    .destino-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    }
    @media (hover: hover) and (pointer: fine) {
      .destino-hero-card:hover .destino-card-img { transform: scale(1.05); }
    }
    .destino-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 1rem;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
      text-align: center;
      padding: 20px;
    }
    .placeholder-san-andres { background: linear-gradient(145deg, #006994, #00A0C4, #0077AA); }
    .placeholder-punta-cana { background: linear-gradient(145deg, #00843D, #00A651, #1DB954); }
    .placeholder-brasil { background: linear-gradient(145deg, #009C3B, #FEDF00, #002776); background-size: 200% 200%; animation: brasilAnim 4s ease infinite; }
    @keyframes brasilAnim { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
    .placeholder-guajira { background: linear-gradient(145deg, #FF6B35, #F7931E, #FFD700); }
    .placeholder-uyuni { background: linear-gradient(145deg, #87CEEB, #B0E0FF, #FFFFFF); }

    .destino-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,20,60,0.92) 0%, rgba(0,20,60,0.4) 50%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 32px;
      transition: background 0.4s;
      min-width: 0;
      box-sizing: border-box;
    }
    .destino-overlay > div {
      min-width: 0;
      max-width: 100%;
    }
    .destino-price-row {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
      min-width: 0;
      max-width: 100%;
    }
    .destino-price-amount {
      font-family: var(--font-impact);
      font-size: clamp(1.35rem, 6.5vw, 2.2rem);
      color: var(--gold);
      letter-spacing: 1px;
      line-height: 1;
    }
    .destino-price-amount--md {
      font-size: clamp(1.3rem, 6vw, 2rem);
    }
    .destino-price-note {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.3;
    }
    .destino-hero-card:hover .destino-overlay {
      background: linear-gradient(to top, rgba(0,20,60,0.97) 0%, rgba(0,20,60,0.5) 60%, transparent 100%);
    }
    .destino-tag {
      display: inline-block;
      background: var(--gold);
      color: var(--gray-900);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 50px;
      margin-bottom: 12px;
      width: fit-content;
    }
    .destino-name {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 4vw, 2.5rem);
      font-weight: 900;
      color: white;
      line-height: 1.1;
      margin-bottom: 8px;
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .destino-desc { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 20px; line-height: 1.5; }
    .destino-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.3);
      color: white;
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      transition: all 0.3s;
      cursor: pointer;
      width: fit-content;
      transform: translateY(10px);
      opacity: 0;
      transition: all 0.3s;
    }
    .destino-hero-card:hover .destino-btn { transform: translateY(0); opacity: 1; }

    /* ========== PROMOCIONES PRINCIPALES ========== */
    .promos-section {
      padding: 100px 0;
      background: white;
      position: relative;
    }
    .promos-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 300px;
      background: linear-gradient(180deg, var(--gray-100) 0%, white 100%);
    }

    .promo-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 28px;
    }

    .promo-card {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
      background: white;
      position: relative;
    }
    .promo-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

    .promo-card-media {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      background: linear-gradient(145deg, var(--gray-100), var(--gray-300));
    }
    .promo-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.7s ease;
    }
    .promo-card:hover .promo-card-img { transform: scale(1.08); }

    .promo-card-badge {
      position: absolute;
      top: 16px; left: 16px;
      background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
      color: white;
      padding: 6px 14px;
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      box-shadow: 0 4px 15px rgba(0,102,204,0.4);
    }
    .promo-card-price-badge {
      position: absolute;
      bottom: 16px; right: 16px;
      background: var(--gold);
      color: var(--gray-900);
      padding: 10px 18px;
      border-radius: var(--radius-sm);
      font-family: var(--font-impact);
      font-size: 1.4rem;
      letter-spacing: 1px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .promo-card-price-badge .desde { display: block; font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.7; line-height: 1; }

    .promo-card-body { padding: 28px; }
    .promo-card-destination { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--green-primary); margin-bottom: 8px; }
    .promo-card-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 12px; line-height: 1.2; }
    .promo-card-includes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
    .include-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--gray-600); }
    .include-item .ic { font-size: 1.1rem; flex-shrink: 0; }
    .include-item strong { color: var(--gray-900); }

    .promo-card-footer {
      border-top: 1px solid var(--gray-100);
      padding-top: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .promo-price-main { display: flex; flex-direction: column; }
    .promo-price-label { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-600); }
    .promo-price-amount { font-family: var(--font-impact); font-size: 2rem; color: var(--blue-primary); letter-spacing: 1px; line-height: 1; }
    .promo-reserve-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--wa-green), #128C7E);
      color: white;
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.85rem;
      box-shadow: 0 4px 15px rgba(37,211,102,0.35);
      transition: all 0.3s;
      white-space: nowrap;
      cursor: pointer;
    }
    .promo-reserve-btn:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(37,211,102,0.5); }

    /* ========== VIDEO PLACEHOLDER ========== */
    .video-placeholder {
      width: 100%;
      aspect-ratio: 9/16;
      background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
      border-radius: var(--radius);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      color: rgba(255,255,255,0.85);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .video-placeholder.rect { aspect-ratio: 3/2; }
    .video-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(77,166,255,0.2) 0%, transparent 70%);
    }
    .video-play-btn {
      width: 70px; height: 70px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      transition: transform 0.3s;
      cursor: pointer;
      box-shadow: 0 8px 30px rgba(0,0,0,0.3);
      position: relative;
      z-index: 1;
    }
    .video-placeholder:hover .video-play-btn { transform: scale(1.15); }
    .video-label { font-size: 0.85rem; font-weight: 600; text-align: center; position: relative; z-index: 1; padding: 0 20px; }
    .video-sub { font-size: 0.72rem; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }

    /* ========== VIDEOS SECTION ========== */
    .videos-section {
      padding: 100px 0;
      background: linear-gradient(180deg, #F0F7FF 0%, white 100%);
    }
    .videos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr) 1.5fr;
      grid-template-rows: auto;
      gap: 20px;
      align-items: start;
    }
    @media (max-width: 900px) { .videos-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .videos-grid { grid-template-columns: 1fr; } }

    /* ========== PUZZLE GALLERY ========== */
    .gallery-section {
      padding: 100px 0;
      background: var(--gray-900);
      position: relative;
      overflow: hidden;
    }
    .gallery-section .section-title { color: white; }
    .gallery-section .section-eyebrow { color: var(--green-light); }
    .gallery-section .section-desc { color: rgba(255,255,255,0.6); }

    .puzzle-gallery {
      columns: 3 250px;
      column-gap: 16px;
      margin-top: 16px;
    }
    .puzzle-item {
      break-inside: avoid;
      margin-bottom: 16px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    }
    .puzzle-item:hover { transform: scale(1.02); z-index: 2; }
    .puzzle-item img, .puzzle-item .img-ph {
      width: 100%;
      display: block;
      transition: transform 0.5s ease;
    }
    .puzzle-item:hover img, .puzzle-item:hover .img-ph { transform: scale(1.05); }
    .img-ph {
      background: linear-gradient(145deg, var(--blue-deep), var(--blue-primary));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: rgba(255,255,255,0.9);
      font-size: 0.8rem;
      font-weight: 600;
      text-align: center;
      padding: 20px 12px;
    }
    .img-ph .emoji { font-size: 2.5rem; }
    .img-ph.portrait { aspect-ratio: 4/5; }
    .img-ph.square { aspect-ratio: 1/1; }
    .img-ph.wide { aspect-ratio: 3/2; }
    .img-ph.punta-cana { background: linear-gradient(145deg, #0A7A4E, #00A651, #00CC66); }
    .img-ph.san-andres { background: linear-gradient(145deg, #005F8F, #0088CC, #00AAFF); }
    .img-ph.brasil { background: linear-gradient(145deg, #009C3B, #006400); }
    .img-ph.guajira { background: linear-gradient(145deg, #CC4400, #FF6B35); }
    .img-ph.uyuni { background: linear-gradient(145deg, #4A90D9, #87CEEB, #B0E0FF); }
    .img-ph.hotel { background: linear-gradient(145deg, #7B2D8B, #A855F7); }

    .puzzle-item .overlay-hover {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,20,60,0.85) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 16px;
      color: white;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .puzzle-item:hover .overlay-hover { opacity: 1; }

    /* ========== PARALLAX BANNER ========== */
    .parallax-banner {
      position: relative;
      min-height: 400px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .parallax-bg {
      position: absolute;
      inset: -60px;
      background: linear-gradient(135deg, var(--blue-deep) 0%, #00457A 40%, var(--green-primary) 100%);
      transform: translateZ(0);
      will-change: transform;
    }
    .parallax-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .parallax-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      padding: 80px 24px;
    }
    .parallax-content h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: white;
      margin-bottom: 20px;
      line-height: 1.1;
    }
    .parallax-content p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.7; }
    .parallax-floating {
      position: absolute;
      font-size: 5rem;
      opacity: 0.07;
      animation: floatGently 6s ease-in-out infinite;
    }
    .pf1 { top: 10%; left: 5%; animation-delay: 0s; }
    .pf2 { top: 60%; right: 8%; animation-delay: 2s; }
    .pf3 { bottom: 10%; left: 15%; animation-delay: 4s; }
    @keyframes floatGently {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(10deg); }
    }

    /* ========== OTROS DESTINOS (slider reconstruido) ========== */
    .otros-section {
      padding: 88px 0 72px;
      background: white;
      overflow: hidden;
    }
    .otros-slider-wrap {
      position: relative;
      width: min(1220px, 95vw);
      margin: 0 auto;
      padding: 8px 0 0;
    }
    .otros-slider-bleed {
      position: relative;
      overflow: hidden;
    }
    .otros-slider {
      --otros-gap: 16px;
      --otros-per-view: 1;
      display: flex;
      gap: var(--otros-gap);
      will-change: transform;
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
      transform: translate3d(0, 0, 0);
      padding: 4px 4px 10px;
      touch-action: pan-y;
      user-select: none;
    }
    .otro-card {
      flex: 0 0 calc((100% - (var(--otros-gap) * (var(--otros-per-view) - 1))) / var(--otros-per-view));
      min-width: 0;
      border-radius: var(--radius-sm);
      overflow: hidden;
      background: white;
      border: 1px solid rgba(0, 102, 204, 0.08);
      box-shadow: 0 6px 28px rgba(0, 58, 122, 0.09);
      transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease;
    }
    .otro-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 48px rgba(0, 58, 122, 0.16);
      border-color: rgba(0, 166, 81, 0.22);
    }
    .otro-card-img {
      aspect-ratio: 4 / 3;
      position: relative;
      overflow: hidden;
    }
    .otro-card-img .img-ph {
      aspect-ratio: 4 / 3;
      width: 100%;
      height: 100%;
      min-height: 0;
      transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .otro-card:hover .otro-card-img .img-ph { transform: scale(1.05); }
    .otro-card-body {
      background: linear-gradient(180deg, #fff 0%, #fafdff 100%);
      padding: 14px 16px 16px;
    }
    .otro-card-name {
      font-family: var(--font-display);
      font-size: clamp(1.05rem, 2.5vw, 1.15rem);
      font-weight: 700;
      color: var(--blue-deep);
      margin-bottom: 4px;
    }
    .otro-card-tag {
      font-size: 0.68rem;
      color: var(--green-primary);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 8px;
    }
    .otro-card-desc {
      font-size: clamp(0.78rem, 2vw, 0.82rem);
      color: var(--gray-600);
      line-height: 1.5;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .slider-arrows {
      position: absolute;
      left: -8px;
      right: -8px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      gap: 10px;
      z-index: 6;
      pointer-events: none;
    }
    .slider-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(0, 102, 204, 0.2);
      color: var(--blue-primary);
      font-size: 1.15rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
      box-shadow: 0 4px 18px rgba(0, 102, 204, 0.12);
      pointer-events: auto;
    }
    .slider-arrow:hover {
      background: var(--blue-primary);
      color: #fff;
      border-color: var(--blue-primary);
      transform: scale(1.06);
      box-shadow: 0 8px 28px rgba(0, 102, 204, 0.28);
    }
    .slider-arrow:active { transform: scale(0.96); }
    .slider-arrow[disabled] {
      opacity: 0.35;
      cursor: not-allowed;
      pointer-events: none;
    }
    @media (min-width: 768px) {
      .otros-slider {
        --otros-per-view: 2;
        --otros-gap: 18px;
      }
    }
    @media (max-width: 767px) {
      .otros-slider-wrap {
        width: min(760px, 100%);
        padding-inline: 10px;
      }
      .otros-slider {
        --otros-per-view: 1;
        --otros-gap: 12px;
      }
      .slider-arrows {
        left: 4px;
        right: 4px;
      }
      .slider-arrow {
        width: 42px;
        height: 42px;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .otros-slider,
      .otro-card,
      .otro-card-img .img-ph,
      .slider-arrow {
        transition-duration: 0.01ms;
      }
      .otro-card:hover .otro-card-img .img-ph { transform: none; }
    }

    /* ========== BANNER CTA GRANDE ========== */
    .cta-banner {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-primary) 50%, var(--green-primary) 100%);
      background-size: 200% 200%;
      animation: gradientShift 8s ease infinite;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      top: -200px; right: -150px;
    }
    .cta-banner::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      bottom: -150px; left: -100px;
    }
    .cta-banner-content { position: relative; z-index: 2; }
    .cta-banner h2 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 6vw, 4rem);
      font-weight: 900;
      color: white;
      margin-bottom: 20px;
      line-height: 1.1;
    }
    .cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
    .cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-white {
      background: white;
      color: var(--blue-deep);
      padding: 16px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
      transition: all 0.3s;
      cursor: pointer;
    }
    .btn-white:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

    /* ========== WHY US ========== */
    .why-section {
      padding: 100px 0;
      background: linear-gradient(180deg, var(--green-pale) 0%, white 100%);
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }
    .why-card {
      background: white;
      border-radius: var(--radius);
      padding: 36px 28px;
      text-align: center;
      box-shadow: var(--shadow-soft);
      transition: all 0.4s;
      border: 1px solid rgba(0,166,81,0.1);
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--blue-primary), var(--green-primary));
      transform: scaleX(0);
      transition: transform 0.4s;
      transform-origin: left;
    }
    .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
    .why-card:hover::before { transform: scaleX(1); }
    .why-icon {
      font-size: 2.8rem;
      margin-bottom: 20px;
      display: block;
      animation: wiggle 3s ease-in-out infinite;
    }
    @keyframes wiggle { 0%,100%{transform:rotate(-3deg)} 50%{transform:rotate(3deg)} }
    .why-card:nth-child(2) .why-icon { animation-delay: 0.5s; }
    .why-card:nth-child(3) .why-icon { animation-delay: 1s; }
    .why-card:nth-child(4) .why-icon { animation-delay: 1.5s; }
    .why-card:nth-child(5) .why-icon { animation-delay: 2s; }
    .why-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 10px; }
    .why-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

    /* ========== ASISTENTE DESTINOS — capas, marco vivo, textura (elegante, no infantil) ========== */
    @keyframes destinoBotPulseSoft {
      0% { transform: scale(1); opacity: 0.35; }
      100% { transform: scale(1.28); opacity: 0; }
    }
    @keyframes destinoTeaserEnterSoft {
      from { opacity: 0; transform: translateX(16px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes destinoFrameShift {
      0%, 100% { background-position: 0% 40%; }
      50% { background-position: 100% 60%; }
    }
    @keyframes destinoAureoleBreath {
      0%, 100% { opacity: 0.45; transform: scale(1); }
      50% { opacity: 0.75; transform: scale(1.04); }
    }
    @keyframes destinoTeaserMeshDrift {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(-4%, 3%) scale(1.08); }
    }
    @keyframes destinoTeaserMeshDriftDeep {
      0% { transform: translate(0, 0) scale(1.05); }
      100% { transform: translate(5%, -4%) scale(1); }
    }
    @keyframes destinoGlassVeil {
      0%, 100% { opacity: 0.06; transform: translateX(-35%) skewX(-10deg); }
      50% { opacity: 0.14; transform: translateX(45%) skewX(-10deg); }
    }
    @keyframes destinoKickerLine {
      0%, 100% { width: 2.25rem; opacity: 0.55; }
      50% { width: 3.25rem; opacity: 1; }
    }
    @keyframes destinoPanelEnterSoft {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes destinoPanelMeshDrift {
      0% { transform: translate(0, 0) scale(1); opacity: 0.65; }
      100% { transform: translate(5%, -4%) scale(1.1); opacity: 0.88; }
    }
    @keyframes destinoPanelMeshDriftDeep {
      0% { transform: translate(0, 0) scale(1.12); opacity: 0.4; }
      100% { transform: translate(-6%, 5%) scale(1); opacity: 0.62; }
    }
    @keyframes destinoPanelHeadMist {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    @keyframes destinoWaShineElegant {
      from { transform: translateX(-100%) skewX(-12deg); }
      to { transform: translateX(200%) skewX(-12deg); }
    }

    .destino-bot {
      position: fixed;
      bottom: calc(28px + 62px + 14px);
      right: 28px;
      z-index: 901;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0;
      font-family: var(--font-body);
    }
    .destino-bot-avatar {
      position: relative;
      width: 56px;
      height: 56px;
      padding: 0;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      background: #fff;
      box-shadow: 0 4px 20px rgba(0, 58, 122, 0.14), 0 0 0 1px rgba(0, 102, 204, 0.08);
      overflow: visible;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
    }
    .destino-bot-avatar:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(0, 58, 122, 0.18), 0 0 0 1px rgba(0, 102, 204, 0.12);
    }
    .destino-bot-avatar img {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }
    .destino-bot-pulse {
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 1px solid rgba(0, 102, 204, 0.35);
      animation: destinoBotPulseSoft 2.8s ease-out infinite;
      pointer-events: none;
    }

    /* Burbuja: marco con gradiente vivo + doble malla + aureola + ruido + vidrio */
    .destino-bot-teaser {
      position: absolute;
      right: 64px;
      bottom: 0;
      width: min(calc(100vw - 120px), 308px);
      z-index: 2;
      overflow: visible;
      padding: 2px;
      border-radius: 20px;
      background: linear-gradient(
        130deg,
        rgba(0, 74, 150, 0.95) 0%,
        rgba(0, 102, 204, 0.88) 28%,
        rgba(0, 130, 105, 0.85) 55%,
        rgba(45, 120, 200, 0.9) 78%,
        rgba(0, 58, 122, 0.92) 100%
      );
      background-size: 320% 320%;
      animation:
        destinoTeaserEnterSoft 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        destinoFrameShift 14s ease-in-out infinite;
      box-shadow:
        0 2px 4px rgba(0, 35, 80, 0.06),
        0 22px 48px rgba(0, 58, 122, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset;
    }
    .destino-bot-teaser-aureole {
      position: absolute;
      z-index: 0;
      inset: -18px;
      border-radius: 28px;
      background: radial-gradient(ellipse 65% 55% at 45% 40%, rgba(0, 102, 204, 0.22) 0%, transparent 62%);
      pointer-events: none;
      animation: destinoAureoleBreath 6s ease-in-out infinite;
    }
    .destino-bot-teaser-body {
      position: relative;
      z-index: 1;
      border-radius: 18px;
      overflow: hidden;
      min-height: 1px;
    }
    .destino-bot-teaser-mesh--deep {
      position: absolute;
      inset: -6%;
      border-radius: 22px;
      background:
        radial-gradient(ellipse 100% 80% at 90% 10%, rgba(0, 166, 81, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 85% 75% at 5% 95%, rgba(0, 102, 204, 0.18) 0%, transparent 52%),
        linear-gradient(200deg, #e8f2fc 0%, #f8fbff 50%, #eef6ff 100%);
      animation: destinoTeaserMeshDriftDeep 34s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: 0;
    }
    .destino-bot-teaser-mesh {
      position: absolute;
      inset: 0;
      border-radius: 18px;
      background:
        radial-gradient(ellipse 85% 65% at 12% 18%, rgba(0, 102, 204, 0.26) 0%, transparent 58%),
        radial-gradient(ellipse 75% 70% at 88% 82%, rgba(0, 166, 81, 0.2) 0%, transparent 54%),
        radial-gradient(ellipse 55% 45% at 48% 48%, rgba(77, 166, 255, 0.14) 0%, transparent 58%),
        linear-gradient(168deg, rgba(245, 250, 255, 0.97) 0%, rgba(255, 255, 255, 0.99) 100%);
      animation: destinoTeaserMeshDrift 20s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: 1;
    }
    .destino-bot-teaser-noise {
      position: absolute;
      inset: 0;
      border-radius: 18px;
      opacity: 0.055;
      z-index: 2;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }
    .destino-bot-teaser-inner {
      position: relative;
      z-index: 3;
      border-radius: 16px;
      margin: 0;
      padding: 17px 42px 15px 17px;
      background: rgba(255, 255, 255, 0.52);
      backdrop-filter: blur(28px) saturate(165%);
      -webkit-backdrop-filter: blur(28px) saturate(165%);
      overflow: hidden;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        inset 0 -1px 0 rgba(0, 58, 122, 0.04);
    }
    .destino-bot-teaser-inner::before {
      content: '';
      position: absolute;
      top: -25%;
      left: -45%;
      width: 58%;
      height: 150%;
      background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.65), transparent);
      animation: destinoGlassVeil 9s ease-in-out infinite;
      pointer-events: none;
    }
    .destino-bot-teaser::after {
      content: '';
      position: absolute;
      right: -6px;
      bottom: 21px;
      width: 13px;
      height: 13px;
      background: linear-gradient(135deg, rgba(232, 244, 255, 0.95), rgba(255, 255, 255, 0.9));
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-right: 1.5px solid rgba(0, 102, 204, 0.22);
      border-bottom: 1.5px solid rgba(0, 130, 105, 0.18);
      transform: rotate(-45deg);
      border-radius: 3px;
      z-index: 4;
      box-shadow: 2px 3px 10px rgba(0, 58, 122, 0.1);
    }
    .destino-bot-teaser-kicker {
      display: block;
      position: relative;
      z-index: 1;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(26, 32, 44, 0.72);
      margin-bottom: 10px;
      font-family: var(--font-body);
    }
    .destino-bot-teaser-kicker::after {
      content: '';
      display: block;
      height: 2px;
      margin-top: 7px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--blue-primary), var(--green-primary));
      animation: destinoKickerLine 5s ease-in-out infinite;
    }
    .destino-bot-teaser-close {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 6;
      width: 28px;
      height: 28px;
      border: none;
      background: rgba(0, 58, 122, 0.05);
      color: var(--gray-600);
      font-size: 1.25rem;
      line-height: 1;
      cursor: pointer;
      border-radius: 50%;
      transition: background 0.3s ease, color 0.3s ease;
    }
    .destino-bot-teaser-close:hover {
      background: rgba(0, 58, 122, 0.1);
      color: var(--blue-deep);
    }
    .destino-bot-teaser-text {
      position: relative;
      z-index: 1;
      font-size: 0.9rem;
      color: var(--gray-900);
      line-height: 1.58;
      margin: 0 0 14px;
      font-weight: 500;
      letter-spacing: 0.01em;
    }
    .destino-bot-teaser-open {
      position: relative;
      z-index: 1;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 50px;
      cursor: pointer;
      background: linear-gradient(135deg, rgba(0, 58, 122, 0.95) 0%, rgba(0, 102, 204, 0.92) 45%, rgba(0, 120, 95, 0.9) 100%);
      background-size: 200% 200%;
      animation: destinoFrameShift 12s ease-in-out infinite;
      box-shadow: 0 4px 16px rgba(0, 58, 122, 0.22);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .destino-bot-teaser-open:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(0, 58, 122, 0.28);
    }

    /* Panel: aureola + doble malla + marco + ruido + vidrio */
    .destino-bot-panel {
      position: absolute;
      right: 0;
      bottom: 64px;
      width: min(calc(100vw - 32px), 340px);
      z-index: 3;
      overflow: visible;
      filter: drop-shadow(0 16px 42px rgba(0, 45, 95, 0.14));
      animation: destinoPanelEnterSoft 0.52s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .destino-bot-panel-aureole {
      position: absolute;
      z-index: 0;
      inset: -20px;
      border-radius: 28px;
      background: radial-gradient(ellipse 60% 50% at 50% 35%, rgba(0, 102, 204, 0.18) 0%, transparent 65%);
      pointer-events: none;
      animation: destinoAureoleBreath 7s ease-in-out infinite;
    }
    .destino-bot-panel-deco--deep {
      position: absolute;
      z-index: 0;
      inset: -12%;
      border-radius: 26px;
      background:
        radial-gradient(ellipse 90% 75% at 10% 90%, rgba(0, 166, 81, 0.16) 0%, transparent 58%),
        radial-gradient(ellipse 80% 70% at 95% 8%, rgba(0, 102, 204, 0.14) 0%, transparent 55%);
      animation: destinoPanelMeshDriftDeep 32s ease-in-out infinite alternate;
      pointer-events: none;
    }
    .destino-bot-panel-deco {
      position: absolute;
      z-index: 0;
      inset: -6%;
      border-radius: 24px;
      background:
        radial-gradient(ellipse 72% 58% at 82% 12%, rgba(0, 102, 204, 0.2) 0%, transparent 56%),
        radial-gradient(ellipse 68% 56% at 8% 92%, rgba(0, 166, 81, 0.15) 0%, transparent 54%),
        radial-gradient(ellipse 52% 48% at 50% 48%, rgba(0, 58, 122, 0.08) 0%, transparent 50%);
      animation: destinoPanelMeshDrift 22s ease-in-out infinite alternate;
      pointer-events: none;
    }
    .destino-bot-panel-frame {
      position: relative;
      z-index: 1;
      padding: 2px;
      border-radius: 19px;
      background: linear-gradient(
        145deg,
        rgba(8, 52, 100, 0.92) 0%,
        rgba(0, 102, 204, 0.82) 35%,
        rgba(0, 130, 100, 0.78) 65%,
        rgba(20, 80, 150, 0.88) 100%
      );
      background-size: 300% 300%;
      animation: destinoFrameShift 18s ease-in-out infinite;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }
    .destino-bot-panel-noise {
      position: absolute;
      inset: 2px;
      border-radius: 17px;
      opacity: 0.045;
      z-index: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }
    .destino-bot-panel-inner {
      position: relative;
      z-index: 1;
      border-radius: 17px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.55);
      background: rgba(255, 255, 255, 0.58);
      backdrop-filter: blur(26px) saturate(170%);
      -webkit-backdrop-filter: blur(26px) saturate(170%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 58, 122, 0.05),
        0 2px 8px rgba(0, 58, 122, 0.04);
    }
    .destino-bot-panel-inner::before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 56px;
      bottom: 0;
      background: linear-gradient(185deg, rgba(255, 255, 255, 0.45) 0%, transparent 42%, rgba(240, 250, 255, 0.35) 100%);
      pointer-events: none;
      z-index: 0;
    }
    .destino-bot-panel-head {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 15px 14px 15px 17px;
      background: linear-gradient(125deg, #0a3a6e 0%, #0d4a8c 38%, #0a5c6e 72%, #0d4a8c 100%);
      background-size: 200% 200%;
      animation: destinoPanelHeadMist 18s ease-in-out infinite alternate;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .destino-bot-panel-head img {
      border-radius: 50%;
      flex-shrink: 0;
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
    }
    .destino-bot-panel-head-text {
      flex: 1;
      min-width: 0;
    }
    .destino-bot-panel-head-text strong {
      display: block;
      font-size: 0.96rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.98);
      letter-spacing: -0.01em;
    }
    .destino-bot-panel-head-text span {
      font-size: 0.65rem;
      color: rgba(255, 255, 255, 0.72);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .destino-bot-panel-close {
      width: 34px;
      height: 34px;
      border: none;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      border-radius: 50%;
      font-size: 1.2rem;
      line-height: 1;
      color: rgba(255, 255, 255, 0.92);
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .destino-bot-panel-close:hover {
      background: rgba(255, 255, 255, 0.22);
      transform: scale(1.05);
    }
    .destino-bot-panel-body {
      position: relative;
      z-index: 1;
      padding: 17px 17px 19px;
    }
    .destino-bot-intro {
      font-size: 0.86rem;
      font-weight: 600;
      color: var(--gray-700);
      margin: 0 0 14px;
      line-height: 1.45;
    }
    .destino-bot-choices {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
      max-height: min(42vh, 220px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 2px;
    }
    .destino-bot-choice-btn {
      flex: 1 1 calc(50% - 4px);
      min-width: 108px;
      padding: 10px 12px;
      border: 1px solid rgba(0, 102, 204, 0.2);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.85);
      color: var(--blue-deep);
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }
    .destino-bot-choice-btn:hover {
      border-color: var(--blue-primary);
      background: white;
      box-shadow: 0 4px 14px rgba(0, 102, 204, 0.12);
      transform: translateY(-1px);
    }
    .destino-bot-choice-btn:focus-visible {
      outline: 2px solid var(--blue-primary);
      outline-offset: 2px;
    }
    .destino-bot-response {
      margin-bottom: 4px;
    }
    .destino-bot-response .destino-bot-msg {
      margin-top: 0;
    }
    .destino-bot-back {
      display: block;
      width: 100%;
      margin: 0 0 14px;
      padding: 8px 12px;
      border: none;
      background: transparent;
      color: var(--blue-primary);
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
      text-align: center;
    }
    .destino-bot-back:hover {
      color: var(--blue-deep);
    }
    .destino-bot-msg {
      position: relative;
      font-size: 0.92rem;
      color: var(--gray-900);
      line-height: 1.58;
      margin: 0 0 12px;
      font-weight: 500;
      padding: 13px 14px 13px 16px;
      background: rgba(255, 255, 255, 0.65);
      border-radius: 14px;
      border: 1px solid rgba(0, 102, 204, 0.08);
      box-shadow: 0 2px 12px rgba(0, 58, 122, 0.04);
    }
    .destino-bot-msg::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      bottom: 10px;
      width: 3px;
      border-radius: 0 3px 3px 0;
      background: linear-gradient(180deg, var(--blue-primary), var(--green-primary));
      opacity: 0.85;
    }
    .destino-bot-info {
      font-size: 0.82rem;
      color: var(--gray-600);
      line-height: 1.62;
      margin: 0 0 16px;
      padding: 11px 13px;
      background: rgba(0, 58, 122, 0.035);
      border-radius: 11px;
      border: 1px solid rgba(0, 102, 204, 0.07);
    }
    .destino-bot-wa-btn {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 14px 18px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: 0.02em;
      color: white !important;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: linear-gradient(145deg, #26d367 0%, #1fb855 40%, #138a7d 100%);
      text-decoration: none !important;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.22);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    }
    .destino-bot-wa-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
    }
    .destino-bot-wa-shine {
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.2) 50%, transparent 65%);
      transform: translateX(-100%);
      pointer-events: none;
      opacity: 0;
    }
    .destino-bot-wa-btn:hover .destino-bot-wa-shine {
      opacity: 1;
      animation: destinoWaShineElegant 1.1s ease-out forwards;
    }
    .destino-bot-wa-btn > *:not(.destino-bot-wa-shine) {
      position: relative;
      z-index: 1;
    }
    .destino-bot-wa-btn svg {
      flex-shrink: 0;
    }

    @media (max-width: 480px) {
      .destino-bot {
        right: 18px;
        bottom: calc(22px + 58px + 12px);
      }
      .destino-bot-teaser {
        right: 58px;
        width: min(calc(100vw - 100px), 272px);
      }
      .float-wa {
        right: 18px;
        bottom: 22px;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .destino-bot-teaser,
      .destino-bot-panel,
      .destino-bot-panel-frame,
      .destino-bot-teaser-open {
        animation: none !important;
      }
      .destino-bot-teaser:not([hidden]) {
        opacity: 1;
        transform: none;
        filter: none;
        background-position: 50% 50%;
      }
      .destino-bot-panel:not([hidden]) {
        opacity: 1;
        transform: none;
        filter: drop-shadow(0 10px 28px rgba(0, 45, 95, 0.1));
      }
      .destino-bot-teaser-aureole,
      .destino-bot-panel-aureole {
        animation: none;
        opacity: 0.5;
        transform: none;
      }
      .destino-bot-teaser-mesh,
      .destino-bot-teaser-mesh--deep,
      .destino-bot-panel-deco,
      .destino-bot-panel-deco--deep {
        animation: none;
      }
      .destino-bot-teaser-inner::before {
        animation: none;
        opacity: 0;
      }
      .destino-bot-teaser-kicker::after {
        animation: none;
        width: 2.5rem;
        opacity: 0.75;
      }
      .destino-bot-panel-head {
        animation: none;
      }
      .destino-bot-wa-btn:hover .destino-bot-wa-shine {
        animation: none;
        opacity: 0;
      }
      .destino-bot-pulse {
        animation: none;
        opacity: 0.25;
      }
    }

    /* ========== FLOATING WA BUTTON ========== */
    .float-wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      width: 62px;
      height: 62px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 30px rgba(37,211,102,0.5);
      cursor: pointer;
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
      animation: pulseShadow 2.5s ease-in-out infinite;
    }
    .float-wa:hover { transform: scale(1.15) rotate(5deg); }
    @keyframes pulseShadow {
      0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
      50% { box-shadow: 0 8px 30px rgba(37,211,102,0.5), 0 0 0 16px rgba(37,211,102,0); }
    }
    .float-wa svg { width: 32px; height: 32px; fill: white; }
    .float-wa-label {
      position: absolute;
      right: 70px;
      background: white;
      color: var(--gray-900);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 8px 14px;
      border-radius: 50px;
      white-space: nowrap;
      box-shadow: var(--shadow-card);
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.3s;
      pointer-events: none;
    }
    .float-wa:hover .float-wa-label { opacity: 1; transform: translateX(0); }

    /* ========== LEGAL DISCLAIMER ========== */
    .legal-note {
      background: var(--gray-100);
      border-left: 4px solid var(--blue-primary);
      padding: 16px 20px;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      font-size: 0.75rem;
      color: var(--gray-600);
      line-height: 1.6;
      margin-top: 24px;
    }
    .legal-note strong { color: var(--gray-900); }

    /* ========== FOOTER ========== */
    footer {
      background: var(--gray-900);
      color: rgba(255,255,255,0.8);
      padding: 60px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
    }
    .footer-brand img { height: 70px; width: 70px; object-fit: contain; border-radius: 50%; background: white; padding: 6px; margin-bottom: 16px; }
    .footer-brand p { font-size: 0.83rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
    .footer-social { display: flex; gap: 12px; }
    .social-link {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: all 0.3s;
      cursor: pointer;
    }
    .social-link:hover { background: var(--blue-primary); transform: translateY(-3px); }

    .footer-col h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white; margin-bottom: 20px; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
    .footer-links a:hover { color: var(--green-light); }

    .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
    .footer-contact-item .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
    .footer-contact-item span { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
    .footer-rnt {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 0.73rem;
      color: rgba(255,255,255,0.6);
      font-weight: 600;
    }

    /* ========== TERMS PAGE ========== */
    .terms-section {
      padding: 120px 0 80px;
      min-height: 100vh;
      background: var(--off-white);
    }
    .terms-card {
      background: white;
      border-radius: var(--radius);
      padding: 56px;
      box-shadow: var(--shadow-card);
    }
    .terms-card h1 { font-family: var(--font-display); font-size: 2.2rem; color: var(--blue-deep); margin-bottom: 8px; }
    .terms-card .date { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 32px; }
    .terms-card h2 { font-family: var(--font-display); font-size: 1.3rem; color: var(--blue-deep); margin: 32px 0 12px; }
    .terms-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 12px; }
    .terms-card ul { margin-left: 20px; margin-bottom: 12px; }
    .terms-card li { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 6px; }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .destinos-grid { grid-template-columns: 1fr; gap: 20px; }
      .destino-hero-card:first-child { grid-row: span 1; min-height: 0; aspect-ratio: 4/3; }
      .destino-overlay { padding: 22px 18px 20px; }
      .destinos-section .section-inner {
        padding-left: max(16px, env(safe-area-inset-left, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
      }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .puzzle-gallery { columns: 2 150px; }
      .promo-cards-grid { grid-template-columns: 1fr; }
      .logo-showcase-section { padding: 18px 0 4px; }
      .logo-showcase-inner {
        width: calc(100% - 16px);
        min-height: 106px;
      }
      .logo-showcase-img {
        width: min(680px, 99vw);
      }
      .footer-bottom { flex-direction: column; text-align: center; }
      .terms-card { padding: 32px 20px; }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .puzzle-gallery { columns: 2 120px; }
      .hero-stats { gap: 24px; }
      .why-grid { grid-template-columns: 1fr; }
    }

    /* ========== PAGE VISIBILITY ========== */
    #terms-page { display: none; }
    body.show-terms #main-page { display: none; }
    body.show-terms #terms-page { display: block; }

    /* ========== SHIMMER EFFECT ========== */
    .shimmer-line {
      width: 80px; height: 3px;
      background: linear-gradient(90deg, var(--blue-primary), var(--green-primary));
      border-radius: 3px;
      margin: 12px auto 0;
    }

    /* ========== NOTICE BANNER ========== */
    .notice-banner {
      background: linear-gradient(90deg, rgba(245,197,24,0.15), rgba(245,197,24,0.05));
      border: 1px solid rgba(245,197,24,0.4);
      border-radius: var(--radius-sm);
      padding: 16px 20px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: 32px;
      font-size: 0.82rem;
      color: var(--gray-600);
      line-height: 1.6;
    }
    .notice-banner .notice-icon { font-size: 1.3rem; flex-shrink: 0; }

    /* ========== TOUR ITEMS ========== */
    .tour-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--gray-100);
      font-size: 0.85rem;
      color: var(--gray-600);
    }
    .tour-item:last-child { border-bottom: none; }
    .tour-item .tour-icon { font-size: 1.3rem; flex-shrink: 0; }

    /* ========== SECTION DIVIDERS ========== */
    .wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
    .wave-divider svg { display: block; }
