@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap");

:root {
      --gold: #BA721C;
      --gold-dark: #9D6A26;
      --dark: #2C2C2C;
      --dark-2: #222222;
      --dark-3: #1A1A1A;
      --white: #ffffff;
      --gray-light: #F4F4F4;
      --gray: #666666;
      --gray-dark: #424346;
      --text: #424346;
      --font-heading: 'Playfair Display', Georgia, serif;
      --font-body: 'Source Sans 3', 'Source Sans Pro', sans-serif;
      --whatsapp: #25D366;
      --transition: all 0.3s ease;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.7;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 600;
      color: var(--dark);
      line-height: 1.3;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    img {
      max-width: 100%;
      height: auto;
    }

    ul {
      list-style: none;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .diamond-icon {
      color: var(--gold);
      flex-shrink: 0;
    }

    .section-separator {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin: 10px 0;
    }

    .sep-line {
      display: block;
      width: 60px;
      height: 1px;
      background: var(--gold);
    }

    .btn {
      display: inline-block;
      padding: 14px 36px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-gold {
      background: var(--gold);
      color: var(--white);
    }

    .btn-gold:hover {
      background: var(--gold-dark);
    }

    .btn-outline {
      background: transparent;
      color: var(--dark);
      border: 2px solid var(--dark);
    }

    .btn-outline:hover {
      background: var(--dark);
      color: var(--white);
    }

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

    .btn-outline-white:hover {
      background: var(--white);
      color: var(--dark);
    }

    .subtitle-italic {
      font-family: var(--font-heading);
      font-style: italic;
      font-weight: 400;
      font-size: 18px;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .section-title {
      font-size: 42px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    /* Hide diamond separators in sections (keep only in hero) */
    section .section-separator,
    .rooms-section .section-separator,
    #destinations .section-separator,
    #hotels-plus .section-separator,
    #hotels .section-separator,
    #rewards .section-separator,
    #podcast .section-separator { display: none; }

    .diamond-float {
      position: absolute;
      opacity: 0.07;
      pointer-events: none;
    }

    .diamond-float svg {
      width: 120px;
      height: 120px;
    }

    /* ============================================
       1. TOP BAR
    ============================================ */
    .top-bar {
      display: none; /* Hidden — liquid glass nav takes over */
    }

    .top-bar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .top-bar-left {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .top-bar-left a {
      color: rgba(255,255,255,0.7);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .top-bar-left a:hover {
      color: var(--gold);
    }

    .top-bar-left span.label {
      font-weight: 600;
      color: var(--white);
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 1px;
    }

    .top-bar-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .top-bar-rating {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.7);
    }

    .top-bar-rating strong {
      color: var(--gold);
      font-size: 14px;
    }

    .top-bar-lang {
      display: flex;
      gap: 8px;
    }

    .top-bar-lang a {
      color: rgba(255,255,255,0.5);
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
    }

    .top-bar-lang a.active,
    .top-bar-lang a:hover {
      color: var(--white);
    }

    .top-bar-social {
      display: flex;
      gap: 12px;
    }

    .top-bar-social a {
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: var(--transition);
    }

    .top-bar-social a:hover {
      color: var(--gold);
    }

    /* ============================================
       2. MAIN NAVIGATION — LIQUID GLASS
    ============================================ */
    .main-nav {
      position: fixed !important;
      top: 20px;
      left: 0;
      right: 0;
      z-index: 999;
      padding: 0 32px;
      background: none !important;
      box-shadow: none !important;
      transition: all 0.5s cubic-bezier(.4,0,.2,1);
    }

    .main-nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(16px) saturate(160%);
      -webkit-backdrop-filter: blur(16px) saturate(160%);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px;
      padding: 0 28px;
      box-shadow:
        0 8px 32px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.2),
        inset 0 -1px 0 rgba(255,255,255,0.05);
      transition: all 0.5s cubic-bezier(.4,0,.2,1);
      max-width: 1360px;
    }

    /* Scrolled state — frosted solid */
    .main-nav.scrolled {
      top: 12px;
      padding: 0 24px;
      background: none !important;
    }

    .main-nav.scrolled .container {
      background: rgba(255,255,255,0.72);
      backdrop-filter: blur(28px) saturate(200%);
      -webkit-backdrop-filter: blur(28px) saturate(200%);
      border-color: rgba(255,255,255,0.3);
      border-radius: 16px;
      box-shadow:
        0 12px 48px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(255,255,255,0.1);
    }

    .nav-logo {
      flex-shrink: 0;
    }

    .nav-logo img {
      height: 42px;
      width: auto;
      transition: all 0.4s;
    }

    /* White logo on hero, invert to show original on scroll */
    .main-nav:not(.scrolled) .nav-logo img {
      filter: brightness(0) invert(1);
    }

    /* On hero (light text) */
    .main-nav:not(.scrolled) .nav-menu li > a {
      color: rgba(255,255,255,0.9);
      text-shadow: 0 1px 3px rgba(0,0,0,0.15);
    }
    .main-nav:not(.scrolled) .nav-icon { color: rgba(255,255,255,0.85); }
    .main-nav:not(.scrolled) .nav-hamburger span { background: #fff; }
    .main-nav:not(.scrolled) .btn-reservar {
      background: var(--gold);
      border-color: var(--gold);
    }

    /* Scrolled (dark text) */
    .main-nav.scrolled .nav-menu li > a { color: var(--dark); text-shadow: none; }
    .main-nav.scrolled .nav-icon { color: var(--dark); }
    .main-nav.scrolled .nav-hamburger span { background: var(--dark); }
    .main-nav.scrolled .nav-btn-vuelo { border-color: var(--dark) !important; color: var(--dark) !important; }
    .main-nav.scrolled .nav-btn-vuelo:hover { background: var(--gold); border-color: var(--gold) !important; color: #fff !important; }
    @media(max-width:768px) { .nav-btn-vuelo, .nav-lang { display:none !important; } }
    .main-nav.scrolled .nav-lang a { color: var(--dark) !important; }
    .main-nav.scrolled .nav-lang span { color: rgba(44,44,44,0.2) !important; }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-menu li {
      position: relative;
    }

    .nav-menu li > a {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 24px 0;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.3s;
    }

    .nav-menu li > a:hover { color: var(--gold) !important; }

    .nav-menu li > a .arrow-down {
      width: 10px;
      height: 10px;
      transition: transform 0.3s;
    }

    .nav-menu li:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown {
      position: absolute;
      top: 100%;
      left: -20px;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 12px;
      min-width: 220px;
      box-shadow: 0 16px 48px rgba(0,0,0,0.12);
      padding: 12px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s cubic-bezier(.4,0,.2,1);
      z-index: 100;
    }

    .dropdown a {
      display: block;
      padding: 10px 25px;
      font-size: 13px;
      font-weight: 400;
      color: var(--dark);
      letter-spacing: 0.5px;
    }

    .dropdown a:hover {
      color: var(--gold);
      background: rgba(186,114,28,0.06);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-icon {
      cursor: pointer;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      transition: color 0.3s;
    }

    .nav-icon:hover { color: var(--gold) !important; }

    .nav-icon .badge {
      position: absolute;
      top: -2px;
      right: -4px;
      background: var(--gold);
      color: var(--white);
      font-size: 10px;
      font-weight: 600;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-reservar {
      background: var(--gold);
      color: var(--white);
      padding: 10px 24px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: 1px solid var(--gold);
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .btn-reservar:hover {
      background: var(--gold-dark);
      border-color: var(--gold-dark);
    }

    /* ── Hamburger — elegant fine lines ── */
    .hamburger {
      display: flex;
      align-items: center;
      gap: 12px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1002;
      position: relative;
      padding: 10px 0;
    }
    .hamburger-ring { display: none; }
    .hamburger-label {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      transition: all 0.4s;
    }
    .hamburger-lines-wrap {
      display: flex;
      flex-direction: column;
      gap: 6px;
      width: 28px;
    }
    .hamburger-line {
      display: block;
      height: 1px;
      background: #fff;
      transition: all 0.5s cubic-bezier(.77,0,.18,1);
      transform-origin: center;
    }
    .hamburger-line:nth-child(1) { width: 28px; }
    .hamburger-line:nth-child(2) { width: 20px; transition-delay: 0.05s; }
    .hamburger-line:nth-child(3) { width: 24px; transition-delay: 0.1s; }

    /* Hover — lines expand + label gold */
    .hamburger:hover .hamburger-line { width: 28px; }
    .hamburger:hover .hamburger-label { color: var(--gold); letter-spacing: 3.5px; }

    /* Scrolled */
    .main-nav.scrolled .hamburger-line { background: var(--dark); }
    .main-nav.scrolled .hamburger-label { color: var(--dark); }
    .main-nav.scrolled .hamburger:hover .hamburger-label { color: var(--gold); }

    /* Active → X with label change */
    .hamburger.active .hamburger-label {
      color: rgba(255,255,255,0.6) !important;
    }
    .hamburger.active .hamburger-line {
      background: #fff !important;
    }
    .hamburger.active .hamburger-line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
      width: 28px;
    }
    .hamburger.active .hamburger-line:nth-child(2) {
      opacity: 0;
      transform: translateX(10px);
      width: 0;
    }
    .hamburger.active .hamburger-line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
      width: 28px;
    }
    /* ══ MENU OVERLAY — LUXURY SPLIT ══ */
    .menu-overlay { position: fixed; inset: 0; z-index: 1001; pointer-events: none; opacity: 0; visibility: hidden; }
    .menu-overlay.active { pointer-events: all; opacity: 1; visibility: visible; }
    .menu-overlay__bg { position: absolute; inset: 0; background: #111; transform: scaleY(0); transform-origin: top; transition: transform 0.65s cubic-bezier(.77,0,.18,1); }
    .menu-overlay.active .menu-overlay__bg { transform: scaleY(1); }

    .menu-close { position: absolute; top: 24px; right: 32px; z-index: 1010; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); opacity: 0; transition: all 0.4s ease 0.5s; }
    .menu-overlay.active .menu-close { opacity: 1; }
    .menu-close:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

    .menu-overlay__inner { position: relative; z-index: 2; height: 100%; display: grid; grid-template-columns: 55% 45%; }

    /* LEFT PANEL */
    .menu-overlay__left { display: flex; flex-direction: column; justify-content: center; padding: 80px 70px 50px; position: relative; }
    .menu-overlay__left::after { content: ''; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,0.06); }

    .menu-overlay__logo { margin-bottom: 44px; opacity: 0; transform: translateY(-12px); transition: all 0.5s ease 0.25s; }
    .menu-overlay.active .menu-overlay__logo { opacity: 1; transform: translateY(0); }
    .menu-overlay__logo img { height: 38px; }

    .menu-overlay__nav { display: flex; gap: 60px; margin-bottom: auto; }

    .menu-overlay__links { display: flex; flex-direction: column; gap: 2px; }
    .menu-overlay__links-label { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; opacity: 0; transition: all 0.4s ease 0.2s; }
    .menu-overlay.active .menu-overlay__links-label { opacity: 1; }

    .menu-overlay__links a { font-family: var(--font-heading); font-size: 32px; font-weight: 500; color: #fff; padding: 4px 0; opacity: 0; transform: translateY(20px); transition: all 0.35s ease; position: relative; display: inline-block; }
    .menu-overlay.active .menu-overlay__links a { opacity: 1; transform: translateY(0); }
    .menu-overlay__links a:nth-child(2) { transition-delay: 0.18s; }
    .menu-overlay__links a:nth-child(3) { transition-delay: 0.22s; }
    .menu-overlay__links a:nth-child(4) { transition-delay: 0.26s; }
    .menu-overlay__links a:nth-child(5) { transition-delay: 0.30s; }
    .menu-overlay__links a:nth-child(6) { transition-delay: 0.34s; }
    .menu-overlay__links a:nth-child(7) { transition-delay: 0.38s; }
    .menu-overlay__links a:nth-child(8) { transition-delay: 0.42s; }
    .menu-overlay__links a:nth-child(9) { transition-delay: 0.46s; }
    .menu-overlay__links a:hover { color: var(--gold); padding-left: 8px; }

    .menu-overlay__secondary { display: flex; flex-direction: column; gap: 2px; }
    .menu-overlay__secondary-label { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; opacity: 0; transition: all 0.4s ease 0.3s; }
    .menu-overlay.active .menu-overlay__secondary-label { opacity: 1; }
    .menu-overlay__secondary a { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.5); padding: 5px 0; opacity: 0; transform: translateY(12px); transition: all 0.35s ease; }
    .menu-overlay.active .menu-overlay__secondary a { opacity: 1; transform: translateY(0); }
    .menu-overlay__secondary a:nth-child(2) { transition-delay: 0.25s; }
    .menu-overlay__secondary a:nth-child(3) { transition-delay: 0.30s; }
    .menu-overlay__secondary a:nth-child(4) { transition-delay: 0.35s; }
    .menu-overlay__secondary a:nth-child(5) { transition-delay: 0.40s; }
    .menu-overlay__secondary a:hover { color: var(--gold); }

    .menu-overlay__foot { margin-top: auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; opacity: 0; transition: all 0.5s ease 0.5s; }
    .menu-overlay.active .menu-overlay__foot { opacity: 1; }
    .menu-overlay__foot-text { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }
    .menu-overlay__socials { display: flex; gap: 10px; }
    .menu-overlay__socials a { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); transition: all 0.3s; }
    .menu-overlay__socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

    /* RIGHT PANEL — IMAGE */
    .menu-overlay__right { position: relative; overflow: hidden; }
    .menu-overlay__right::before { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(17,17,17,0.3) 0%, transparent 30%, transparent 70%, rgba(17,17,17,0.4) 100%); pointer-events: none; }
    .menu-overlay__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease, transform 8s ease; transform: scale(1); }
    .menu-overlay__img.active { opacity: 1; transform: scale(1.05); }
    .menu-overlay__img-caption { position: absolute; bottom: 36px; left: 36px; z-index: 3; opacity: 0; transform: translateY(8px); transition: all 0.4s ease 0.1s; }
    .menu-overlay__img.active + .menu-overlay__img-caption,
    .menu-overlay__img.active ~ .menu-overlay__img-caption { opacity: 0; }
    .menu-overlay__caption { position: absolute; bottom: 36px; left: 36px; z-index: 5; }
    .menu-overlay__caption-name { font-family: var(--font-heading); font-size: 20px; color: #fff; font-weight: 500; opacity: 0; transition: all 0.4s ease; }
    .menu-overlay__caption-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 4px; opacity: 0; transition: all 0.4s ease 0.1s; }
    .menu-overlay.active .menu-overlay__caption-name,
    .menu-overlay.active .menu-overlay__caption-sub { opacity: 1; }

    @media(max-width:1024px) {
      .menu-overlay__inner { grid-template-columns: 1fr; }
      .menu-overlay__right { display: none; }
      .menu-overlay__left::after { display: none; }
      .menu-overlay__left { padding: 90px 40px 40px; }
      .menu-overlay__nav { gap: 40px; }
      .menu-overlay__links a { font-size: 28px; }
    }
    @media(max-width:768px) {
      .menu-overlay__left { padding: 90px 24px 30px; }
      .menu-overlay__nav { flex-direction: column; gap: 30px; }
      .menu-overlay__links a { font-size: 26px; }
      .menu-overlay__secondary a { font-size: 14px; }
      .main-nav { padding: 0 16px; }
      .main-nav .container { padding: 0 16px; height: 60px; }
      .menu-close { top: 18px; right: 18px; width: 42px; height: 42px; }
    }

    

    /* Hide old nav-menu on desktop — hamburger only */
    .nav-menu { display: none !important; }
    .nav-hamburger { display: none !important; }

    /* ============================================
       3. HERO SLIDER
    ============================================ */
    /* ── HERO PREMIUM LUXURY ── */
    .hero-section {
      position: relative;
      height: 100vh;
      min-height: 700px;
      overflow: hidden;
    }

    .hero-swiper { width: 100%; height: 100%; }

    .hero-slide {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero__slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      will-change: transform;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 30%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.7) 100%),
        radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.2) 0%, transparent 70%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 5;
      text-align: center;
      color: #fff;
      max-width: 900px;
      padding: 0 30px;
    }

    /* Badge */
    .hero-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(20px);
      animation: hUp 0.7s 0.3s forwards;
    }
    .hero-badge-line { width: 50px; height: 1px; background: var(--gold); }
    .hero-badge-text {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* Title lines */
    .hero-title {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      margin-bottom: 24px;
    }
    .hero-title-line {
      display: block;
      opacity: 0;
      transform: translateY(30px);
    }
    .hero-title-sm {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      letter-spacing: 8px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      animation: hUp 0.7s 0.4s forwards;
    }
    .hero-title-lg {
      font-family: var(--font-heading);
      font-size: clamp(56px, 10vw, 110px);
      font-weight: 700;
      letter-spacing: 8px;
      text-transform: uppercase;
      line-height: 0.95;
      color: #fff;
      text-shadow: 0 4px 40px rgba(0,0,0,0.3);
      animation: hUp 0.7s 0.55s forwards;
    }
    .hero-title-italic {
      font-family: var(--font-heading);
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 400;
      font-style: italic;
      letter-spacing: 3px;
      color: var(--gold);
      animation: hUp 0.7s 0.7s forwards;
    }

    .hero-desc {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 300;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.7);
      margin-bottom: 36px;
      opacity: 0;
      transform: translateY(20px);
      animation: hUp 0.7s 0.85s forwards;
    }

    /* CTA buttons */
    .hero-ctas {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(20px);
      animation: hUp 0.7s 1s forwards;
    }
    .btn-hero-primary {
      padding: 16px 42px;
      background: var(--gold);
      color: #fff;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      border: none;
      transition: all 0.3s;
    }
    .btn-hero-primary:hover { background: var(--gold-dark); }
    .btn-hero-ghost {
      padding: 16px 42px;
      background: transparent;
      color: #fff;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.35);
      transition: all 0.3s;
    }
    .btn-hero-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

    @keyframes hUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Stats bar — bottom of hero, horizontal */
    .hero-side-stats {
      position: absolute;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 40px;
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 16px 40px;
    }
    .hero-stat { text-align: center; }
    .hero-stat strong {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      display: block;
      line-height: 1;
    }
    .hero-stat span {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 4px;
      display: block;
    }
    .hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

    /* Counter */
    .hero__counter {
      position: absolute;
      bottom: 30px;
      right: 40px;
      z-index: 10;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.6);
    }

    /* Arrows */
    .swiper-button-next.hero-arrow,
    .swiper-button-prev.hero-arrow {
      color: #fff;
      width: 52px;
      height: 52px;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 0;
      transition: all 0.3s;
    }
    .swiper-button-next.hero-arrow::after,
    .swiper-button-prev.hero-arrow::after { font-size: 16px; }
    .swiper-button-next.hero-arrow:hover,
    .swiper-button-prev.hero-arrow:hover {
      background: var(--gold);
      border-color: var(--gold);
    }

    /* Pagination */
    .hero-pagination.swiper-pagination { bottom: 40px !important; left: 50% !important; transform: translateX(-50%); width: auto !important; }
    .hero-pagination .swiper-pagination-bullet {
      width: 10px; height: 10px;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.5);
      border-radius: 0;
      transform: rotate(45deg);
      opacity: 1;
      margin: 0 8px !important;
      transition: all 0.3s;
    }
    .hero-pagination .swiper-pagination-bullet-active {
      background: var(--gold);
      border-color: var(--gold);
    }

    /* Scroll indicator — mouse icon */
    .hero-scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 40px;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .scroll-mouse {
      width: 22px;
      height: 34px;
      border: 2px solid rgba(255,255,255,0.35);
      border-radius: 12px;
      position: relative;
    }
    .scroll-wheel {
      width: 3px;
      height: 8px;
      background: var(--gold);
      border-radius: 2px;
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      animation: scrollWheel 1.8s infinite;
    }
    @keyframes scrollWheel {
      0% { opacity: 1; top: 6px; }
      100% { opacity: 0; top: 20px; }
    }
    .hero-scroll-indicator span {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .hero-side-stats { gap: 24px; padding: 12px 24px; bottom: 80px; }
      .hero__counter { bottom: 20px; right: 20px; }
      .hero-scroll-indicator { left: 20px; bottom: 20px; }
      .hero-title-sm { font-size: 14px; letter-spacing: 4px; }
      .hero-desc { font-size: 14px; }
      .btn-hero-primary, .btn-hero-ghost { padding: 14px 30px; font-size: 11px; }
    }

    /* ============================================
       4. BOOKING BAR — PREMIUM DARK
    ============================================ */
    .booking-section {
      position: relative;
      z-index: 10;
      margin-top: 0;
      padding: 0;
      margin-bottom: 0;
    }

    .booking-bar {
      background: var(--dark);
      width: 100%;
      display: flex;
      align-items: stretch;
      box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    }

    .booking-bar__accent {
      background: var(--gold);
      padding: 20px 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-width: 60px;
    }
    .booking-bar__accent-line {
      width: 1px;
      height: 20px;
      background: rgba(255,255,255,0.4);
    }
    .booking-bar__accent-text {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #fff;
      white-space: nowrap;
    }

    .booking-bar__form {
      flex: 1;
      display: flex;
      align-items: stretch;
    }

    .booking-bar__field {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 22px 24px;
      min-width: 0;
    }

    .booking-bar__icon {
      color: var(--gold);
      flex-shrink: 0;
      opacity: 0.8;
    }

    .booking-bar__field label {
      display: block;
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 4px;
    }

    .booking-bar__field select,
    .booking-bar__field input {
      width: 100%;
      padding: 0;
      border: none;
      background: transparent;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.85);
      outline: none;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
    }

    .booking-bar__field select option {
      background: var(--dark);
      color: #fff;
    }

    .booking-bar__field input::-webkit-calendar-picker-indicator {
      filter: invert(1);
      opacity: 0.4;
      cursor: pointer;
    }

    .booking-bar__divider {
      width: 1px;
      background: rgba(255,255,255,0.08);
      align-self: stretch;
    }

    .booking-bar__btn {
      background: var(--gold);
      color: #fff;
      border: none;
      padding: 22px 36px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .booking-bar__btn:hover { background: var(--gold-dark); }

    @media (max-width: 1024px) {
      .booking-section { padding: 0; margin-top: 0; }
      .booking-bar { flex-direction: column; }
      .booking-bar__accent { flex-direction: row; padding: 14px 24px; min-width: auto; }
      .booking-bar__accent-text { writing-mode: horizontal-tb; }
      .booking-bar__accent-line { width: 20px; height: 1px; }
      .booking-bar__form { flex-wrap: wrap; }
      .booking-bar__field { flex: 1 1 45%; min-width: 200px; }
      .booking-bar__divider { width: 100%; height: 1px; }
      .booking-bar__btn { width: 100%; justify-content: center; padding: 18px; }
    }

    @media (max-width: 576px) {
      .booking-section { margin-top: 0; padding: 0; }
      .booking-bar__field { flex: 1 1 100%; padding: 16px 20px; }
    }

    /* ============================================
       5. ABOUT SECTION
    ============================================ */
    .about-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-text .subtitle-italic {
      margin-bottom: 12px;
    }

    .about-text .section-title {
      font-size: 40px;
      margin-bottom: 25px;
    }

    .about-text p {
      margin-bottom: 20px;
      line-height: 1.85;
      color: var(--text);
      font-size: 15px;
    }

    .about-text p.drop-cap::first-letter {
      font-family: var(--font-heading);
      font-size: 58px;
      font-weight: 700;
      float: left;
      line-height: 1;
      margin-right: 12px;
      margin-top: 6px;
      color: var(--gold);
    }

    .about-text .btn {
      margin-top: 15px;
    }

    .about-gallery {
      position: relative;
    }

    .about-swiper {
      overflow: hidden;
      border-radius: 0;
    }

    .about-swiper .swiper-slide img {
      width: 100%;
      height: 450px;
      object-fit: cover;
    }

    .about-nav {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .about-nav-btn {
      width: 45px;
      height: 45px;
      border: 1px solid var(--dark);
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
    }

    .about-nav-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--white);
    }

    .diamond-float.about-left {
      left: -30px;
      top: 20%;
    }

    .diamond-float.about-right {
      right: -30px;
      bottom: 20%;
    }

    /* ============================================
       6. POPULAR ROOMS
    ============================================ */
    .rooms-section {
      padding: 100px 0;
      background: var(--gray-light);
      position: relative;
    }

    .rooms-grid {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 0;
      align-items: stretch;
    }

    .rooms-heading {
      background: var(--dark);
      color: var(--white);
      padding: 50px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }

    .rooms-heading .section-separator {
      margin: 15px 0;
    }

    .rooms-heading .section-separator .sep-line {
      background: rgba(255,255,255,0.2);
    }

    .rooms-heading .subtitle-italic {
      font-size: 18px;
    }

    .rooms-heading .section-title {
      color: var(--white);
      font-size: 34px;
      margin-bottom: 0;
    }

    .rooms-slider-wrap {
      position: relative;
      overflow: hidden;
      padding: 20px 0;
    }

    .rooms-swiper {
      overflow: visible;
      padding: 0 20px;
    }

    .room-card {
      background: var(--white);
      box-shadow: 0 5px 30px rgba(0,0,0,0.06);
      overflow: hidden;
      transition: var(--transition);
    }

    .room-card:hover {
      box-shadow: 0 10px 40px rgba(0,0,0,0.12);
      transform: translateY(-5px);
    }

    .room-card-img {
      position: relative;
      height: 240px;
      overflow: hidden;
    }

    .room-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .room-card:hover .room-card-img img {
      transform: scale(1.05);
    }

    .room-card-heart {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 36px;
      height: 36px;
      background: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      z-index: 2;
    }

    .room-card-heart:hover {
      background: var(--gold);
      color: var(--white);
    }

    .room-card-body {
      padding: 25px;
    }

    .room-card-location {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .room-card-name {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 15px;
    }

    .room-card-features {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #eee;
    }

    .room-card-feature {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 13px;
      color: var(--gray);
    }

    .room-card-feature svg {
      width: 16px;
      height: 16px;
      color: var(--gold);
    }

    .room-card-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .room-card-price {
      font-size: 13px;
      color: var(--gray);
    }

    .room-card-price strong {
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 700;
      color: var(--dark);
    }

    .room-card-book {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold);
      cursor: pointer;
      transition: var(--transition);
    }

    .room-card-book:hover {
      color: var(--dark);
    }

    .rooms-nav {
      position: absolute;
      bottom: -60px;
      right: 20px;
      display: flex;
      gap: 10px;
      z-index: 5;
    }

    .rooms-nav-btn {
      width: 45px;
      height: 45px;
      border: 1px solid #ddd;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
    }

    .rooms-nav-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--white);
    }

    /* ============================================
       7. HOTEL SERVICES
    ============================================ */
    .services-section {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .services-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .services-header .section-title {
      font-size: 42px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 50px;
    }

    .service-card {
      position: relative;
      height: 400px;
      overflow: hidden;
      cursor: pointer;
    }

    .service-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s ease;
    }

    .service-card:hover .service-card-bg {
      transform: scale(1.08);
    }

    .service-card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
      transition: var(--transition);
    }

    .service-card:hover .service-card-overlay {
      background: rgba(0,0,0,0.65);
    }

    .service-card-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      padding: 30px;
    }

    .service-card-number {
      font-family: var(--font-heading);
      font-size: 14px;
      font-style: italic;
      color: var(--gold);
      margin-bottom: 15px;
    }

    .service-card-content .diamond-icon {
      margin-bottom: 20px;
    }

    .service-card-title {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 10px;
    }

    .service-card-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.7);
      font-style: italic;
    }

    .services-cta {
      text-align: center;
    }

    .diamond-float.services-left {
      left: -20px;
      top: 30%;
    }

    .diamond-float.services-right {
      right: -20px;
      bottom: 25%;
    }

    /* ============================================
       8. PARTNER LOGOS
    ============================================ */
    .partners-section {
      padding: 60px 0;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      background: var(--white);
    }

    .partners-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
    }

    .partner-logo {
      opacity: 0.35;
      transition: var(--transition);
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: 1px;
      cursor: pointer;
    }

    .partner-logo:hover {
      opacity: 0.8;
    }

    /* ============================================
       9. PARALLAX / CTA SECTION
    ============================================ */
    .parallax-section {
      position: relative;
      min-height: 600px;
      overflow: hidden;
    }

    .parallax-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }

    .parallax-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
    }

    .parallax-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
    }

    .parallax-left {
      display: flex;
      align-items: center;
      padding: 60px;
    }

    .parallax-card {
      background: var(--white);
      padding: 50px;
      max-width: 480px;
    }

    .parallax-card .subtitle-italic {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 15px;
    }

    .parallax-card h3 {
      font-size: 32px;
      margin-bottom: 20px;
    }

    .parallax-card p {
      font-size: 15px;
      line-height: 1.85;
      margin-bottom: 25px;
      color: var(--text);
    }

    .parallax-manager {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 20px;
    }

    .parallax-manager-photo {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .parallax-manager-info h5 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .parallax-manager-info span {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold);
      font-weight: 600;
    }

    .parallax-manager-sig {
      margin-top: 10px;
      font-family: var(--font-heading);
      font-style: italic;
      font-size: 20px;
      color: var(--gold);
    }

    .parallax-right {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 60px;
    }

    .parallax-video-wrap {
      position: relative;
      width: 100%;
      max-width: 500px;
    }

    .parallax-video-img {
      width: 100%;
      height: 350px;
      object-fit: cover;
    }

    .parallax-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      border: 2px solid var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
    }

    .parallax-play:hover {
      background: var(--gold);
      border-color: var(--gold);
    }

    .parallax-play svg {
      color: var(--white);
      margin-left: 4px;
    }

    .parallax-video-text {
      text-align: center;
      margin-top: 20px;
      color: var(--white);
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 3px;
    }

    /* ============================================
       10. AMENITIES GRID
    ============================================ */
    .amenities-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .amenities-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid #eee;
    }

    .amenity-item {
      padding: 40px 30px;
      text-align: center;
      border-right: 1px solid #eee;
      border-bottom: 1px solid #eee;
      transition: var(--transition);
    }

    .amenity-item:nth-child(4n) {
      border-right: none;
    }

    .amenity-item:nth-child(n+5) {
      border-bottom: none;
    }

    .amenity-item:hover {
      background: var(--gray-light);
    }

    .amenity-icon {
      margin-bottom: 20px;
    }

    .amenity-icon svg {
      width: 48px;
      height: 48px;
      color: var(--gold);
      stroke-width: 1.2;
    }

    .amenity-title {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--dark);
    }

    .amenity-desc {
      font-size: 14px;
      color: var(--gray);
      margin-bottom: 12px;
    }

    .amenity-number {
      font-family: var(--font-heading);
      font-size: 13px;
      font-style: italic;
      color: var(--gold);
    }

    /* ============================================
       11. GALLERY STRIP
    ============================================ */
    .gallery-strip {
      width: 100%;
      overflow: hidden;
    }

    .gallery-swiper .swiper-slide img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .gallery-swiper .swiper-slide {
      width: auto;
    }

    /* ============================================
       12. EVENTS + RESTAURANT
    ============================================ */
    .events-restaurant-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
    }

    .events-half {
      background: var(--dark);
      color: var(--white);
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .events-half h3 {
      font-size: 36px;
      color: var(--white);
      margin-bottom: 10px;
    }

    .events-half .section-separator {
      margin-bottom: 40px;
    }

    .events-half .section-separator .sep-line {
      background: rgba(255,255,255,0.2);
    }

    .event-card {
      padding: 25px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .event-card:last-child {
      border-bottom: none;
    }

    .event-date {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 8px;
    }

    .event-title {
      font-family: var(--font-heading);
      font-size: 22px;
      color: var(--white);
      margin-bottom: 8px;
    }

    .event-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
    }

    .events-btn {
      margin-top: 40px;
    }

    .events-dots {
      display: flex;
      gap: 8px;
      margin-top: 25px;
    }

    .events-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.3);
      cursor: pointer;
      transition: var(--transition);
    }

    .events-dot.active {
      background: var(--gold);
      border-color: var(--gold);
    }

    .restaurant-half {
      position: relative;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .restaurant-half::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
    }

    .restaurant-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--white);
      padding: 40px;
    }

    .restaurant-dots {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-bottom: 30px;
    }

    .restaurant-dots span {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0.5;
    }

    .restaurant-content h3 {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: var(--gold);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .restaurant-content p {
      font-family: var(--font-heading);
      font-size: 28px;
      font-style: italic;
      color: var(--white);
      margin-bottom: 25px;
    }

    .restaurant-line {
      width: 60px;
      height: 1px;
      background: var(--gold);
      margin: 25px auto;
    }

    .restaurant-link {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--gold);
      border-bottom: 1px solid var(--gold);
      padding-bottom: 3px;
      transition: var(--transition);
    }

    .restaurant-link:hover {
      color: var(--white);
      border-color: var(--white);
    }

    /* ============================================
       13. TESTIMONIALS
    ============================================ */
    .testimonials-section {
      padding: 120px 0 100px;
      background: var(--gray-light);
      position: relative;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .testimonials-header .section-title {
      font-size: 42px;
    }

    .testimonials-swiper {
      padding: 40px 0 60px;
    }

    .testimonial-card {
      background: var(--white);
      padding: 50px 35px 35px;
      text-align: center;
      position: relative;
      margin-top: 40px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    }

    .testimonial-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--white);
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      border: 4px solid var(--white);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .testimonial-name {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 8px;
      margin-top: 10px;
    }

    .testimonial-stars {
      display: flex;
      gap: 3px;
      justify-content: center;
      margin-bottom: 20px;
    }

    .testimonial-stars svg {
      width: 16px;
      height: 16px;
      fill: var(--gold);
      color: var(--gold);
    }

    .testimonial-quote {
      font-family: var(--font-heading);
      font-style: italic;
      font-size: 16px;
      line-height: 1.8;
      color: var(--text);
      margin-bottom: 20px;
      position: relative;
      padding: 0 10px;
    }

    .testimonial-via {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 15px;
    }

    .testimonial-number {
      font-family: var(--font-heading);
      font-size: 14px;
      font-style: italic;
      color: var(--gold);
    }

    .testimonial-card .quote-mark {
      position: absolute;
      font-family: var(--font-heading);
      font-size: 120px;
      color: var(--gold);
      opacity: 0.08;
      line-height: 1;
    }

    .testimonial-card .quote-mark.top {
      top: 10px;
      left: 15px;
    }

    .testimonial-card .quote-mark.bottom {
      bottom: -20px;
      right: 15px;
    }

    .testimonials-section .section-separator.testimonial-dots {
      justify-content: center;
      gap: 10px;
    }

    /* ============================================
       14. INSTAGRAM GALLERY
    ============================================ */
    .instagram-section {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      width: 100%;
    }

    .instagram-item {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1;
    }

    .instagram-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .instagram-item:hover img {
      transform: scale(1.1);
    }

    .instagram-item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(200, 169, 126, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: var(--transition);
    }

    .instagram-item:hover .instagram-item-overlay {
      opacity: 1;
    }

    .instagram-item-overlay svg {
      color: var(--white);
      width: 28px;
      height: 28px;
    }

    /* ============================================
       15. FOOTER
    ============================================ */
    .site-footer {
      background: var(--dark);
      color: rgba(255,255,255,0.6);
      position: relative;
      overflow: hidden;
    }

    .footer-watermark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-heading);
      font-size: 140px;
      font-weight: 700;
      color: var(--white);
      opacity: 0.03;
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
    }

    .footer-main {
      position: relative;
      z-index: 2;
      padding: 90px 0 60px;
    }

    .footer-top-accent {
      position:absolute; top:0; left:0; right:0; height:4px;
      background:linear-gradient(90deg, transparent 0%, var(--gold) 20%, #d4a85c 50%, var(--gold) 80%, transparent 100%);
      z-index:5;
    }

    .footer-float {
      position:absolute; pointer-events:none; z-index:1;
    }

    @keyframes footerFloat { 0%,100% { transform:translateY(0) rotate(0deg); } 50% { transform:translateY(-10px) rotate(3deg); } }
    @keyframes footerFloat2 { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }

    .footer-col h4 {
      font-size: 20px;
      color: var(--white);
      margin-bottom: 25px;
      font-weight: 600;
    }

    .footer-col p {
      font-size: 14px;
      line-height: 1.85;
      margin-bottom: 15px;
    }

    .footer-col a {
      color: rgba(255,255,255,0.6);
      transition: var(--transition);
    }

    .footer-col a:hover {
      color: var(--gold);
    }

    .footer-read-more {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold) !important;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 15px;
      font-size: 14px;
    }

    .footer-contact-item svg {
      width: 18px;
      height: 18px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .footer-links a::before {
      content: '';
      display: block;
      width: 6px;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s;
    }

    .footer-links a:hover::before {
      width: 15px;
    }

    .footer-links-col-2 { columns:2; column-gap:20px; }
    .footer-links-col-2 li { break-inside:avoid; }

    @media(max-width:768px) {
      .footer-top-row { flex-direction:column !important; text-align:center; gap:20px; }
      .footer-top-row .footer-bottom-social { justify-content:center; }
      .footer-top-row img { margin:0 auto 12px auto !important; }
      .footer-grid { grid-template-columns:1fr !important; gap:40px !important; }
      .footer-bottom .container { flex-direction:column !important; gap:15px !important; text-align:center; }
    }

    .footer-bottom {
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 25px 0;
    }

    .footer-bottom .container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .footer-bottom-social {
      display: flex;
      gap: 12px;
    }

    .footer-bottom-social a {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      transition: var(--transition);
    }

    .footer-bottom-social a:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--white);
      transform: translateY(-3px);
    }

    .footer-copyright {
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .footer-back-top {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold) !important;
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }

    /* ============================================
       16. WHATSAPP FLOATING
    ============================================ */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 25px;
      z-index: 9999;
    }

    .whatsapp-btn {
      width: 60px;
      height: 60px;
      background: var(--whatsapp);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      cursor: pointer;
      transition: var(--transition);
      position: relative;
      z-index: 2;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    }

    .whatsapp-btn svg {
      color: var(--white);
      width: 30px;
      height: 30px;
    }

    .whatsapp-popup {
      position: absolute;
      bottom: 75px;
      right: 0;
      width: 320px;
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.15);
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
    }

    .whatsapp-popup.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .whatsapp-popup-header {
      background: var(--whatsapp);
      padding: 18px 20px;
      color: var(--white);
    }

    .whatsapp-popup-header h4 {
      color: var(--white);
      font-size: 16px;
      margin-bottom: 3px;
    }

    .whatsapp-popup-header p {
      font-size: 12px;
      opacity: 0.85;
    }

    .whatsapp-popup-body {
      padding: 20px;
    }

    .whatsapp-popup-msg {
      background: #f0f0f0;
      padding: 12px 16px;
      border-radius: 0 12px 12px 12px;
      font-size: 14px;
      color: var(--dark);
      margin-bottom: 15px;
      line-height: 1.5;
    }

    .whatsapp-popup-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px;
      background: var(--whatsapp);
      color: var(--white);
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      transition: var(--transition);
    }

    .whatsapp-popup-link:hover {
      background: #1fb855;
      color: var(--white);
    }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 1024px) {
      .rooms-grid {
        grid-template-columns: 1fr;
      }
      .rooms-heading {
        padding: 40px;
        text-align: center;
        align-items: center;
      }
      .parallax-grid {
        grid-template-columns: 1fr;
      }
      .parallax-left {
        padding: 40px 20px;
        justify-content: center;
      }
      .parallax-right {
        padding: 40px 20px;
      }
      .events-restaurant-section {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .top-bar-left {
        display: none;
      }
      .nav-menu {
        display: none;
      }
      .nav-hamburger {
        display: flex;
      }
      .hero-content h1 {
        font-size: 32px;
        letter-spacing: 3px;
      }
      .hero-content .subtitle-italic {
        font-size: 16px;
      }
      /* booking responsive handled in booking-bar section */
      .about-grid {
        grid-template-columns: 1fr;
      }
      .services-grid {
        grid-template-columns: 1fr;
      }
      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .amenity-item:nth-child(2n) {
        border-right: none;
      }
      .amenity-item:nth-child(n+7) {
        border-bottom: none;
      }
      .amenity-item:nth-child(5),
      .amenity-item:nth-child(6) {
        border-bottom: 1px solid #eee;
      }
      .section-title {
        font-size: 30px;
      }
      .instagram-section {
        grid-template-columns: repeat(3, 1fr);
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }
      .events-half {
        padding: 50px 30px;
      }
    }

    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 26px;
        letter-spacing: 2px;
      }
      /* booking responsive handled in booking-bar section */
      .amenities-grid {
        grid-template-columns: 1fr;
      }
      .amenity-item {
        border-right: none !important;
        border-bottom: 1px solid #eee !important;
      }
      .amenity-item:last-child {
        border-bottom: none !important;
      }
      .instagram-section {
        grid-template-columns: repeat(2, 1fr);
      }
    }

@keyframes wave {
        0%, 100% { height: 4px; }
        50% { height: 18px; }
      }
      @media (max-width: 768px) {
        .hero-podcast-slider { display: none !important; }
      }

.about-editorial-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
      .about-images-stack { position:relative; min-height:520px; }
      .about-img-main { width:85%; height:440px; object-fit:cover; border-radius:16px; position:relative; z-index:1; box-shadow:0 25px 60px rgba(0,0,0,0.15); }
      .about-img-overlap { position:absolute; bottom:-30px; right:0; width:220px; height:260px; object-fit:cover; border-radius:12px; border:5px solid #fff; z-index:2; box-shadow:0 15px 40px rgba(0,0,0,0.2); }
      .about-badge { position:absolute; top:20px; right:30px; z-index:3; background:var(--gold); color:#fff; padding:14px 22px; border-radius:12px; text-align:center; box-shadow:0 10px 30px rgba(186,114,28,0.4); }
      .about-badge-number { font-family:var(--font-heading); font-size:32px; font-weight:700; line-height:1; display:block; }
      .about-badge-label { font-family:var(--font-body); font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; display:block; margin-top:4px; }
      .about-content-right { position:relative; }
      .about-features-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:30px; }
      .about-feature-item { display:flex; align-items:flex-start; gap:14px; }
      .about-feature-icon { width:44px; height:44px; min-width:44px; border-radius:10px; background:linear-gradient(135deg, rgba(186,114,28,0.1), rgba(186,114,28,0.05)); display:flex; align-items:center; justify-content:center; color:var(--gold); }
      .about-feature-title { font-family:var(--font-heading); font-size:17px; font-weight:600; color:var(--dark); margin-bottom:2px; }
      .about-feature-sub { font-family:var(--font-body); font-size:13px; color:var(--gray); line-height:1.4; }
      .about-stats-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:80px; padding:50px 0; background:linear-gradient(135deg, rgba(44,44,44,0.97), rgba(26,26,26,0.98)); backdrop-filter:blur(20px); position:relative; }
      .about-stats-strip::before { content:''; position:absolute; top:0; left:5%; right:5%; height:1px; background:linear-gradient(90deg, transparent, var(--gold), transparent); }
      .about-stat-item { text-align:center; padding:0 20px; position:relative; }
      .about-stat-item:not(:last-child)::after { content:''; position:absolute; right:0; top:50%; transform:translateY(-50%); width:1px; height:40px; background:rgba(255,255,255,0.1); }
      .about-stat-number { font-family:var(--font-heading); font-size:42px; font-weight:700; color:var(--gold); line-height:1; display:block; }
      .about-stat-label { font-family:var(--font-body); font-size:13px; font-weight:500; color:rgba(255,255,255,0.7); letter-spacing:2px; text-transform:uppercase; margin-top:10px; display:block; }
      @media (max-width:991px) {
        .about-editorial-grid { grid-template-columns:1fr; gap:50px; }
        .about-images-stack { min-height:420px; max-width:550px; margin:0 auto; }
        .about-stats-strip { grid-template-columns:repeat(2,1fr); gap:30px; padding:40px 20px; }
        .about-stat-item:nth-child(2)::after { display:none; }
        .about-stat-item { padding:15px 10px; }
      }
      @media (max-width:576px) {
        .about-images-stack { min-height:340px; }
        .about-img-main { width:90%; height:340px; border-radius:12px; }
        .about-img-overlap { width:160px; height:200px; bottom:-20px; }
        .about-badge { top:10px; right:10px; padding:10px 16px; }
        .about-badge-number { font-size:24px; }
        .about-features-grid { grid-template-columns:1fr; gap:18px; }
        .about-stats-strip { grid-template-columns:1fr 1fr; gap:25px; padding:35px 15px; }
        .about-stat-number { font-size:32px; }
        .about-stat-item:not(:last-child)::after { display:none; }
      }

.dest-card { position:relative; overflow:hidden; display:block; border-radius:12px; }
        .dest-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.7s cubic-bezier(.4,0,.2,1), filter 0.5s; }
        .dest-card:hover img { transform:scale(1.08); filter:brightness(0.85); }
        .dest-card .dest-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 55%); transition:background 0.4s; border-radius:12px; }
        .dest-card:hover .dest-overlay { background:linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 55%); }
        .dest-card .dest-info { position:absolute; bottom:30px; left:28px; right:28px; z-index:2; color:#fff; }
        .dest-card .dest-info p.dest-count { display:inline-block; font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:#fff; background:var(--gold); padding:5px 14px; border-radius:4px; margin-bottom:12px; }
        .dest-card .dest-info h3 { font-family:var(--font-heading); font-weight:600; color:#fff; margin-bottom:6px; }
        .dest-card .dest-info .dest-desc { font-size:13px; color:rgba(255,255,255,0.8); line-height:1.5; }
        .dest-card .dest-arrow { position:absolute; top:20px; right:20px; width:40px; height:40px; background:rgba(255,255,255,0.1); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,0.15); border-radius:50%; display:flex; align-items:center; justify-content:center; z-index:3; opacity:0; transform:translateY(-8px); transition:all 0.4s; }
        .dest-card:hover .dest-arrow { opacity:1; transform:translateY(0); }
        .dest-card .dest-line { width:0; height:2px; background:var(--gold); margin-top:12px; transition:width 0.5s cubic-bezier(.4,0,.2,1) 0.1s; }
        .dest-card:hover .dest-line { width:50px; }
        @media(max-width:768px) {
          .dest-row-1 { grid-template-columns:1fr !important; }
          .dest-row-1 .dest-card { height:300px !important; }
          .dest-row-2 { grid-template-columns:1fr !important; }
          .dest-row-2 .dest-card { height:260px !important; }
          .dest-card .dest-info h3 { font-size:22px !important; }
          .dest-card .dest-info .dest-desc { font-size:12px; }
        }

.hp-hotel { position:relative; margin-bottom:80px; border-radius:16px; overflow:hidden; }
      .hp-hotel:last-child { margin-bottom:0; }
      .hp-hotel-inner { display:grid; grid-template-columns:1fr 1fr; min-height:560px; }
      .hp-hotel:nth-child(even) .hp-hotel-inner { direction:rtl; }
      .hp-hotel:nth-child(even) .hp-hotel-inner > * { direction:ltr; }
      .hp-img { position:relative; overflow:hidden; height:380px; }
      .hp-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s cubic-bezier(.4,0,.2,1); }
      .hp-img:hover img { transform:scale(1.06); }
      .hp-badge { position:absolute; top:24px; left:24px; z-index:2; }
      .hp-badge span { background:var(--gold); color:#fff; padding:6px 18px; font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; display:inline-block; }
      .hp-body { padding:60px 56px; display:flex; flex-direction:column; justify-content:center; background:rgba(255,255,255,0.02); }
      .hp-logo-space, .hp-logo { width:auto; height:auto; border:none; border-radius:0; display:flex; align-items:center; justify-content:flex-start; margin-bottom:24px; }
      .hp-logo-space span { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.2); }
      .hp-logo img { max-height:100px; width:auto; object-fit:contain; }
      .hp-name { font-family:var(--font-heading); font-size:36px; font-weight:600; color:#fff; line-height:1.15; margin-bottom:8px; }
      .hp-loc { font-size:12px; font-weight:600; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); margin-bottom:20px; display:flex; align-items:center; gap:6px; }
      .hp-line { width:40px; height:2px; background:var(--gold); margin-bottom:20px; }
      .hp-desc { font-size:15px; line-height:1.85; color:rgba(255,255,255,0.6); margin-bottom:28px; }
      .hp-features { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:28px; }
      .hp-feat { display:flex; align-items:center; gap:10px; }
      .hp-feat-icon { width:36px; height:36px; border:1px solid rgba(255,255,255,0.1); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
      .hp-feat-label { font-size:12px; font-weight:500; letter-spacing:1px; text-transform:uppercase; color:rgba(255,255,255,0.75); }
      .hp-rnt { font-size:11px; color:rgba(255,255,255,0.2); letter-spacing:1px; margin-bottom:24px; }
      .hp-cta { display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(255,255,255,0.2); color:#fff; padding:13px 32px; font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; transition:all 0.3s; text-decoration:none; }
      .hp-cta:hover { background:var(--gold); border-color:var(--gold); }
      @media(max-width:991px) {
        .hp-row { grid-template-columns:1fr !important; }
        .hp-hotel-inner { grid-template-columns:1fr !important; }
        .hp-hotel:nth-child(even) .hp-hotel-inner { direction:ltr; }
        .hp-img { min-height:300px; }
      }
      @media(max-width:576px) { .hp-body { padding:36px 24px; } .hp-name { font-size:28px; } .hp-features { grid-template-columns:1fr; } }

.htl-tabs { display:flex; justify-content:center; gap:0; margin-bottom:50px; border-bottom:1px solid #ddd; flex-wrap:wrap; }
      .htl-tab { padding:14px 28px; font-size:12px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:#999; cursor:pointer; border-bottom:2px solid transparent; transition:all 0.3s; background:none; border-top:none; border-left:none; border-right:none; }
      .htl-tab:hover { color:var(--dark); }
      .htl-tab.active { color:var(--gold); border-bottom-color:var(--gold); }
      .htl-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
      .htl-card { background:#fff; border-radius:12px; overflow:hidden; transition:all 0.4s; box-shadow:0 2px 16px rgba(0,0,0,0.06); }
      .htl-card:hover { transform:translateY(-6px); box-shadow:0 12px 40px rgba(0,0,0,0.1); }
      .htl-card-img { height:220px; overflow:hidden; position:relative; }
      .htl-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s; }
      .htl-card:hover .htl-card-img img { transform:scale(1.06); }
      .htl-card-badge { position:absolute; top:14px; left:14px; background:var(--gold); color:#fff; padding:4px 12px; font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; border-radius:4px; z-index:2; }
      .htl-card-body { padding:22px 24px; }
      .htl-card-logo { width:auto; height:auto; border:none; border-radius:0; display:flex; align-items:center; justify-content:flex-start; margin-bottom:12px; }
      .htl-card-logo span { font-size:9px; letter-spacing:1px; text-transform:uppercase; color:#bbb; }
      .htl-card-logo img { max-width:140px; max-height:60px; object-fit:contain; }
      .htl-card-loc { font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
      .htl-card-name { font-family:var(--font-heading); font-size:19px; font-weight:600; color:var(--dark); margin-bottom:8px; line-height:1.3; }
      .htl-card-rnt { font-size:11px; color:#aaa; letter-spacing:1px; margin-bottom:14px; }
      .htl-card-btn { font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--gold); display:inline-flex; align-items:center; gap:6px; transition:gap 0.3s; }
      .htl-card-btn:hover { gap:12px; }
      .htl-panel { display:none; }
      .htl-panel.active { display:block; }
      @media(max-width:991px) { .htl-grid { grid-template-columns:repeat(2,1fr); } }
      @media(max-width:576px) { .htl-grid { grid-template-columns:1fr; } .htl-tab { padding:10px 16px; font-size:11px; } }

.dual-promo { display:grid; grid-template-columns:1fr 1fr; min-height:550px; }
    .dual-promo-card { position:relative; overflow:hidden; }
    .dual-promo-card .promo-bg { position:absolute; inset:0; z-index:0; }
    .dual-promo-card .promo-bg img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s cubic-bezier(.4,0,.2,1); }
    .dual-promo-card:hover .promo-bg img { transform:scale(1.06); }
    .dual-promo-card .promo-overlay { position:absolute; inset:0; z-index:1; }
    .dual-promo-card .promo-body { position:relative; z-index:2; display:flex; flex-direction:column; justify-content:center; padding:70px 60px; height:100%; }

    /* Floating elements */
    .promo-float { position:absolute; z-index:3; pointer-events:none; }
    .promo-float-gift { border-radius:16px; background:rgba(255,255,255,0.12); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,0.18); padding:20px 24px; display:flex; align-items:center; gap:14px; }
    .promo-float-price { border-radius:12px; background:#fff; box-shadow:0 12px 40px rgba(0,0,0,0.18); padding:16px 22px; text-align:center; }
    .promo-float-plane { width:70px; height:70px; border-radius:50%; background:linear-gradient(135deg, #BA721C, #d4a85c); display:flex; align-items:center; justify-content:center; box-shadow:0 8px 30px rgba(186,114,28,0.4); }
    .promo-float-route { border-radius:14px; background:rgba(255,255,255,0.95); backdrop-filter:blur(8px); box-shadow:0 10px 35px rgba(0,0,0,0.12); padding:18px 24px; display:flex; align-items:center; gap:16px; }

    @keyframes floatY { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
    @keyframes floatX { 0%,100% { transform:translateX(0); } 50% { transform:translateX(8px); } }
    .float-anim-y { animation:floatY 4s ease-in-out infinite; }
    .float-anim-x { animation:floatX 5s ease-in-out infinite; }
    .float-anim-y2 { animation:floatY 5s ease-in-out 1s infinite; }

    @media (max-width:768px) {
      .dual-promo { grid-template-columns:1fr; }
      .dual-promo-card .promo-body { padding:50px 30px; }
      .promo-float { display:none !important; }
    }

@media (max-width: 991px) {
      #rewards .rewards-grid-v2 { grid-template-columns: 1fr !important; }
      #rewards .rewards-img-col { height: 350px !important; }
      #rewards .rewards-benefits-row { flex-direction: row !important; gap:16px !important; }
      #rewards .rewards-benefits-row > div { flex:1; }
      #rewards .rewards-benefits-row .rw-icon-circle { width:46px !important; height:46px !important; }
      #rewards .rewards-benefits-row .rw-icon-circle svg { width:20px; height:20px; }
      #rewards .rewards-benefits-row h4 { font-size:13px !important; }
      #rewards .rewards-benefits-row p { font-size:11px !important; }
    }
    @media (max-width: 576px) {
      #rewards { padding: 80px 0 !important; }
      #rewards .rewards-grid-v2 { gap: 40px !important; padding: 0 20px !important; }
      #rewards .rewards-benefits-row { gap:12px !important; }
      #rewards .rewards-benefits-row .rw-icon-circle { width:40px !important; height:40px !important; margin-bottom:8px !important; }
    }

@media (max-width: 991px) {
      #podcast .podcast-grid-v2 { grid-template-columns: 1fr !important; }
      #podcast .podcast-img-col { height: 300px !important; order: -1; }
    }
    .podcast-ep-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .podcast-ep-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    }



/* ============================================
   CSS PÁGINAS INTERNAS
   ============================================ */

/* === conocenos === */
:root {
      --gold: #BA721C; --gold-dark: #9D6A26; --dark: #2C2C2C; --dark-2: #222222; --dark-3: #1A1A1A;
      --white: #ffffff; --cream: #FAF8F5; --gray-light: #F4F4F4; --gray: #666666; --text: #424346;
      --font-heading: 'Playfair Display', Georgia, serif;
      --font-body: 'Source Sans 3', 'Source Sans Pro', sans-serif;
      --whatsapp: #25D366; --transition: all 0.4s cubic-bezier(.25,.46,.45,.94);
    }
    * { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.7; }
    h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 600; color: var(--dark); line-height: 1.2; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    img { max-width: 100%; height: auto; display: block; }
    ul { list-style: none; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

    /* ── NAV (liquid glass) ── */
    .main-nav { position: fixed !important; top: 20px; left: 0; right: 0; z-index: 999; padding: 0 32px; background: none !important; box-shadow: none !important; transition: all 0.5s cubic-bezier(.4,0,.2,1); }
    .main-nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; background: rgba(255,255,255,0.08); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 0 28px; box-shadow: 0 8px 32px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.2); transition: all 0.5s cubic-bezier(.4,0,.2,1); max-width: 1360px; }
    .main-nav.scrolled { top: 12px; padding: 0 24px; }
    .main-nav.scrolled .container { background: rgba(255,255,255,0.72); backdrop-filter: blur(28px) saturate(200%); border-color: rgba(255,255,255,0.3); border-radius: 16px; box-shadow: 0 12px 48px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.5); }
    .nav-logo img { height: 42px; width: auto; transition: all 0.4s; }
    .main-nav:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }
    .main-nav.scrolled .nav-lang a { color: var(--dark) !important; }
    .main-nav.scrolled .nav-lang span { color: rgba(44,44,44,0.2) !important; }
    .nav-right { display: flex; align-items: center; gap: 16px; }
    .main-nav.scrolled .nav-btn-vuelo { border-color: var(--dark) !important; color: var(--dark) !important; }
    .main-nav.scrolled .nav-btn-vuelo:hover { background: var(--gold); border-color: var(--gold) !important; color: #fff !important; }
    @media(max-width:768px) { .nav-btn-vuelo, .nav-lang { display:none !important; } }

    /* Hamburger */
    .hamburger { display: flex; align-items: center; background: none; border: none; cursor: pointer; z-index: 1002; padding: 10px 0; }
    .hamburger-lines-wrap { display: flex; flex-direction: column; gap: 6px; width: 28px; }
    .hamburger-line { display: block; height: 1px; background: #fff; transition: all 0.5s cubic-bezier(.77,0,.18,1); transform-origin: center; }
    .hamburger-line:nth-child(1) { width: 28px; }
    .hamburger-line:nth-child(2) { width: 20px; }
    .hamburger-line:nth-child(3) { width: 24px; }
    .hamburger:hover .hamburger-line { width: 28px; }
    .main-nav.scrolled .hamburger-line { background: var(--dark); }
    .hamburger.active .hamburger-line { background: #fff !important; }
    .hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 28px; }
    .hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
    .hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 28px; }
    /* ══ MENU OVERLAY — LUXURY SPLIT ══ */
    .menu-overlay { position: fixed; inset: 0; z-index: 1001; pointer-events: none; opacity: 0; visibility: hidden; }
    .menu-overlay.active { pointer-events: all; opacity: 1; visibility: visible; }
    .menu-overlay__bg { position: absolute; inset: 0; background: #111; transform: scaleY(0); transform-origin: top; transition: transform 0.65s cubic-bezier(.77,0,.18,1); }
    .menu-overlay.active .menu-overlay__bg { transform: scaleY(1); }

    .menu-close { position: absolute; top: 24px; right: 32px; z-index: 1010; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); opacity: 0; transition: all 0.4s ease 0.5s; }
    .menu-overlay.active .menu-close { opacity: 1; }
    .menu-close:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

    .menu-overlay__inner { position: relative; z-index: 2; height: 100%; display: grid; grid-template-columns: 55% 45%; }

    /* LEFT PANEL */
    .menu-overlay__left { display: flex; flex-direction: column; justify-content: center; padding: 80px 70px 50px; position: relative; }
    .menu-overlay__left::after { content: ''; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,0.06); }

    .menu-overlay__logo { margin-bottom: 44px; opacity: 0; transform: translateY(-12px); transition: all 0.5s ease 0.25s; }
    .menu-overlay.active .menu-overlay__logo { opacity: 1; transform: translateY(0); }
    .menu-overlay__logo img { height: 38px; }

    .menu-overlay__nav { display: flex; gap: 60px; margin-bottom: auto; }

    .menu-overlay__links { display: flex; flex-direction: column; gap: 2px; }
    .menu-overlay__links-label { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; opacity: 0; transition: all 0.4s ease 0.2s; }
    .menu-overlay.active .menu-overlay__links-label { opacity: 1; }

    .menu-overlay__links a { font-family: var(--font-heading); font-size: 32px; font-weight: 500; color: #fff; padding: 4px 0; opacity: 0; transform: translateY(20px); transition: all 0.35s ease; position: relative; display: inline-block; }
    .menu-overlay.active .menu-overlay__links a { opacity: 1; transform: translateY(0); }
    .menu-overlay__links a:nth-child(2) { transition-delay: 0.18s; }
    .menu-overlay__links a:nth-child(3) { transition-delay: 0.22s; }
    .menu-overlay__links a:nth-child(4) { transition-delay: 0.26s; }
    .menu-overlay__links a:nth-child(5) { transition-delay: 0.30s; }
    .menu-overlay__links a:nth-child(6) { transition-delay: 0.34s; }
    .menu-overlay__links a:nth-child(7) { transition-delay: 0.38s; }
    .menu-overlay__links a:nth-child(8) { transition-delay: 0.42s; }
    .menu-overlay__links a:nth-child(9) { transition-delay: 0.46s; }
    .menu-overlay__links a:hover { color: var(--gold); padding-left: 8px; }

    .menu-overlay__secondary { display: flex; flex-direction: column; gap: 2px; }
    .menu-overlay__secondary-label { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; opacity: 0; transition: all 0.4s ease 0.3s; }
    .menu-overlay.active .menu-overlay__secondary-label { opacity: 1; }
    .menu-overlay__secondary a { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.5); padding: 5px 0; opacity: 0; transform: translateY(12px); transition: all 0.35s ease; }
    .menu-overlay.active .menu-overlay__secondary a { opacity: 1; transform: translateY(0); }
    .menu-overlay__secondary a:nth-child(2) { transition-delay: 0.25s; }
    .menu-overlay__secondary a:nth-child(3) { transition-delay: 0.30s; }
    .menu-overlay__secondary a:nth-child(4) { transition-delay: 0.35s; }
    .menu-overlay__secondary a:nth-child(5) { transition-delay: 0.40s; }
    .menu-overlay__secondary a:hover { color: var(--gold); }

    .menu-overlay__foot { margin-top: auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; opacity: 0; transition: all 0.5s ease 0.5s; }
    .menu-overlay.active .menu-overlay__foot { opacity: 1; }
    .menu-overlay__foot-text { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }
    .menu-overlay__socials { display: flex; gap: 10px; }
    .menu-overlay__socials a { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); transition: all 0.3s; }
    .menu-overlay__socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

    /* RIGHT PANEL — IMAGE */
    .menu-overlay__right { position: relative; overflow: hidden; }
    .menu-overlay__right::before { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(17,17,17,0.3) 0%, transparent 30%, transparent 70%, rgba(17,17,17,0.4) 100%); pointer-events: none; }
    .menu-overlay__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease, transform 8s ease; transform: scale(1); }
    .menu-overlay__img.active { opacity: 1; transform: scale(1.05); }
    .menu-overlay__img-caption { position: absolute; bottom: 36px; left: 36px; z-index: 3; opacity: 0; transform: translateY(8px); transition: all 0.4s ease 0.1s; }
    .menu-overlay__img.active + .menu-overlay__img-caption,
    .menu-overlay__img.active ~ .menu-overlay__img-caption { opacity: 0; }
    .menu-overlay__caption { position: absolute; bottom: 36px; left: 36px; z-index: 5; }
    .menu-overlay__caption-name { font-family: var(--font-heading); font-size: 20px; color: #fff; font-weight: 500; opacity: 0; transition: all 0.4s ease; }
    .menu-overlay__caption-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 4px; opacity: 0; transition: all 0.4s ease 0.1s; }
    .menu-overlay.active .menu-overlay__caption-name,
    .menu-overlay.active .menu-overlay__caption-sub { opacity: 1; }

    @media(max-width:1024px) {
      .menu-overlay__inner { grid-template-columns: 1fr; }
      .menu-overlay__right { display: none; }
      .menu-overlay__left::after { display: none; }
      .menu-overlay__left { padding: 90px 40px 40px; }
      .menu-overlay__nav { gap: 40px; }
      .menu-overlay__links a { font-size: 28px; }
    }
    @media(max-width:768px) {
      .menu-overlay__left { padding: 90px 24px 30px; }
      .menu-overlay__nav { flex-direction: column; gap: 30px; }
      .menu-overlay__links a { font-size: 26px; }
      .menu-overlay__secondary a { font-size: 14px; }
      .main-nav { padding: 0 16px; }
      .main-nav .container { padding: 0 16px; height: 60px; }
      .menu-close { top: 18px; right: 18px; width: 42px; height: 42px; }
    }

    

    /* Components from index */
    .diamond-icon { color: var(--gold); flex-shrink: 0; }
    .section-separator { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 10px 0; }
    .sep-line { display: block; width: 60px; height: 1px; background: var(--gold); }
    .subtitle-italic { font-family: var(--font-heading); font-style: italic; font-weight: 400; font-size: 18px; color: var(--gold); margin-bottom: 10px; }
    .section-title { font-size: 42px; font-weight: 600; margin-bottom: 20px; }

    /* Tag component */
    .tag-label {
      display: inline-flex; align-items: center; gap: 14px;
      font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold);
    }
    .tag-label::before { content: ''; width: 35px; height: 1px; background: var(--gold); }

    /* ══════════════════════════════════════════════
       HERO — 50vh
    ══════════════════════════════════════════════ */
    .hero { position: relative; height: 50vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
    .hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; animation: heroZoom 14s ease-out forwards; }
    @keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
    .hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.12) 100%); }
    .hero__content { position: relative; z-index: 2; padding: 0 60px 60px; max-width: 750px; }
    .hero__title { font-size: 56px; font-weight: 600; color: #fff; line-height: 1.08; margin-bottom: 16px; }
    .hero__desc { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }

    /* ══════════════════════════════════════════════
       BREADCRUMB — PREMIUM MINIMAL
    ══════════════════════════════════════════════ */
    .breadcrumb { padding: 0; background: transparent; position: absolute; bottom: 20px; right: 60px; z-index: 5; }
    .breadcrumb__list {
      display: flex; align-items: center; gap: 0;
      font-size: 12px; letter-spacing: 1px;
    }
    .breadcrumb__list a {
      color: rgba(255,255,255,0.5); transition: color 0.3s;
    }
    .breadcrumb__list a:hover { color: #fff; }
    .breadcrumb__list .sep {
      width: 20px; height: 1px; background: rgba(255,255,255,0.25);
      margin: 0 12px; display: inline-block;
    }
    .breadcrumb__list .current {
      color: var(--gold); font-weight: 500;
    }
    @media(max-width:768px) {
      .breadcrumb { right: 24px; bottom: 14px; }
      .breadcrumb__list { font-size: 10px; }
    }

    /* ══════════════════════════════════════════════
       INTRO — EDITORIAL SPLIT
    ══════════════════════════════════════════════ */
    .intro-editorial {
      display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
    }
    .intro-editorial__img {
      position: relative; overflow: hidden; background: var(--dark);
    }
    .intro-editorial__img .img-main {
      width: 100%; height: 100%; object-fit: cover; display: block;
      opacity: 0.4;
    }
    @keyframes floatUp {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    @keyframes floatDown {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(10px); }
    }
    @keyframes floatSide {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      50% { transform: translate(6px, -8px) rotate(1deg); }
    }
    .intro-editorial__img .img-stack {
      position: absolute; z-index: 2;
      border-radius: 10px; box-shadow: 0 20px 50px rgba(0,0,0,0.4);
      overflow: hidden;
      transition: box-shadow 0.4s;
    }
    .intro-editorial__img .img-stack:hover {
      box-shadow: 0 30px 70px rgba(0,0,0,0.5);
    }
    .intro-editorial__img .img-stack img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .intro-editorial__img .img-s1 {
      width: 58%; height: 55%; top: 6%; left: 5%;
      animation: floatUp 6s ease-in-out infinite;
    }
    .intro-editorial__img .img-s2 {
      width: 45%; height: 42%; bottom: 12%; right: 5%;
      animation: floatDown 7s ease-in-out infinite;
    }
    .intro-editorial__img .img-s3 {
      width: 32%; height: 32%; bottom: 4%; left: 12%;
      z-index: 3;
      animation: floatSide 8s ease-in-out infinite;
    }
    .intro-editorial__img .img-badge {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      z-index: 4; background: var(--gold); color: #fff;
      padding: 16px 24px; border-radius: 12px; text-align: center;
      box-shadow: 0 12px 35px rgba(186,114,28,0.5);
    }
    @media (prefers-reduced-motion: reduce) {
      .intro-editorial__img .img-stack { animation: none !important; }
    }
    .intro-editorial__text {
      display: flex; flex-direction: column; justify-content: center;
      padding: 90px 80px;
      background: var(--cream);
      position: relative;
    }
    .intro-editorial__text::before {
      content: '"'; position: absolute; top: 40px; right: 50px;
      font-family: var(--font-heading); font-size: 180px; font-weight: 700;
      color: var(--gold); opacity: 0.06; line-height: 1; pointer-events: none;
    }
    .intro-editorial__tag {
      display: inline-flex; align-items: center; gap: 14px;
      font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
    }
    .intro-editorial__tag::before { content: ''; width: 35px; height: 1px; background: var(--gold); }
    .intro-editorial__text h2 {
      font-size: 40px; margin-bottom: 12px; line-height: 1.15;
    }
    .intro-editorial__text h2 em {
      font-style: italic; font-weight: 400; color: var(--gold);
    }
    .intro-editorial__text .intro-line {
      width: 50px; height: 2px; background: var(--gold); margin-bottom: 28px;
    }
    .intro-editorial__text p {
      font-size: 16px; line-height: 1.85; color: var(--gray); margin-bottom: 14px;
    }
    .intro-editorial__text blockquote {
      margin-top: 32px; padding: 24px 28px;
      border-left: 3px solid var(--gold);
      background: rgba(186,114,28,0.04);
      font-family: var(--font-heading); font-style: italic; font-size: 18px;
      color: var(--gold-dark); line-height: 1.5;
    }
    .intro-editorial__cta {
      margin-top: 36px;
    }
    .intro-editorial__cta a {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--gold); padding: 14px 0; border-bottom: 1.5px solid var(--gold);
      transition: all 0.3s;
    }
    .intro-editorial__cta a:hover { gap: 16px; }
    .intro-editorial__cta a svg { transition: transform 0.3s; }
    .intro-editorial__cta a:hover svg { transform: translateX(4px); }

    /* ══════════════════════════════════════════════
       VALORES — 4 PILARES ELEGANTES
    ══════════════════════════════════════════════ */
    .valores-section { padding: 120px 0; }
    .valores-section__header {
      text-align: center; margin-bottom: 70px;
    }
    .valores-section__header .tag-label { justify-content: center; margin-bottom: 18px; }
    .valores-section__header .tag-label::after { content: ''; width: 35px; height: 1px; background: var(--gold); }
    .valores-section__header h2 { font-size: 42px; }
    .valores-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    }
    .valor-card {
      padding: 48px 32px;
      border-right: 1px solid rgba(0,0,0,0.06);
      text-align: center;
      transition: var(--transition);
      position: relative;
    }
    .valor-card:last-child { border-right: none; }
    .valor-card::after {
      content: '';
      position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
      width: 0; height: 2px; background: var(--gold);
      transition: width 0.5s cubic-bezier(.25,.46,.45,.94);
    }
    .valor-card:hover::after { width: 60px; }
    .valor-card:hover { background: var(--cream); }
    .valor-card__icon {
      width: 56px; height: 56px; margin: 0 auto 24px;
      display: flex; align-items: center; justify-content: center;
      border: 1.5px solid var(--gold); border-radius: 50%;
      transition: var(--transition);
    }
    .valor-card:hover .valor-card__icon { background: var(--gold); }
    .valor-card__icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; transition: var(--transition); }
    .valor-card:hover .valor-card__icon svg { stroke: #fff; }
    .valor-card h3 { font-size: 20px; margin-bottom: 12px; font-weight: 500; }
    .valor-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

    /* ══════════════════════════════════════════════
       STATS — DARK IMMERSIVE
    ══════════════════════════════════════════════ */
    .stats-immersive {
      position: relative; padding: 100px 0; overflow: hidden;
    }
    .stats-immersive__bg {
      position: absolute; inset: 0;
      background: url('images/img-10.jpg') center/cover no-repeat;
      filter: brightness(0.2);
    }
    .stats-immersive__content {
      position: relative; z-index: 2;
      display: flex; justify-content: center; align-items: center; gap: 80px;
    }
    .stat-item { text-align: center; }
    .stat-item__number {
      font-family: var(--font-heading); font-size: 62px; font-weight: 700;
      color: var(--gold); line-height: 1; display: block;
    }
    .stat-item__label {
      font-size: 13px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
      color: rgba(255,255,255,0.5); margin-top: 10px; display: block;
    }
    .stat-divider {
      width: 1px; height: 60px; background: rgba(255,255,255,0.1);
    }

    /* ══════════════════════════════════════════════
       MISION / VISION — STAGGERED EDITORIAL
    ══════════════════════════════════════════════ */
    .mv-section {
      background: var(--dark); padding: 130px 0; position: relative; overflow: hidden;
    }
    .mv-section::before {
      content: ''; position: absolute; top: 0; left: 0; width: 45%; height: 100%;
      background: url('images/img-6.jpg') center/cover no-repeat;
      opacity: 0.1;
    }
    .mv-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
      max-width: 1100px; margin: 0 auto; position: relative; z-index: 2;
    }
    .mv-card { padding: 0; }
    .mv-card:nth-child(2) { margin-top: 80px; }
    .mv-card__icon {
      width: 52px; height: 52px; border: 1.5px solid rgba(186,114,28,0.4); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
    }
    .mv-card__icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .mv-card h3 { font-size: 30px; color: #fff; margin-bottom: 16px; }
    .mv-card h3 span { color: var(--gold); }
    .mv-card__line { width: 50px; height: 2px; background: var(--gold); margin-bottom: 24px; }
    .mv-card p { font-size: 16px; line-height: 1.85; color: rgba(255,255,255,0.5); }

    /* ══════════════════════════════════════════════
       TIMELINE — HITOS
    ══════════════════════════════════════════════ */
    .timeline-section { padding: 120px 0; background: var(--cream); }
    .timeline-section__header { text-align: center; margin-bottom: 70px; }
    .timeline-section__header .tag-label { justify-content: center; margin-bottom: 18px; }
    .timeline-section__header .tag-label::after { content: ''; width: 35px; height: 1px; background: var(--gold); }
    .timeline-section__header h2 { font-size: 42px; }
    .timeline-track {
      display: flex; justify-content: center; align-items: flex-start;
      position: relative; max-width: 1000px; margin: 0 auto;
      padding-top: 40px;
    }
    .timeline-track::before {
      content: ''; position: absolute; top: 40px; left: 10%; right: 10%;
      height: 1px; background: rgba(186,114,28,0.25);
    }
    .timeline-item {
      flex: 1; text-align: center; position: relative; padding: 0 16px;
    }
    .timeline-item__dot {
      width: 14px; height: 14px; border: 2px solid var(--gold);
      border-radius: 50%; background: var(--cream);
      margin: -7px auto 20px; position: relative; z-index: 2;
      transition: var(--transition);
    }
    .timeline-item:hover .timeline-item__dot { background: var(--gold); transform: scale(1.3); }
    .timeline-item__year {
      font-family: var(--font-heading); font-size: 28px; font-weight: 700;
      color: var(--gold); margin-bottom: 8px;
    }
    .timeline-item__text {
      font-size: 14px; color: var(--gray); line-height: 1.6; max-width: 180px; margin: 0 auto;
    }

    /* ══════════════════════════════════════════════
       DESTINOS — IMMERSIVE MOSAIC
    ══════════════════════════════════════════════ */
    .destinos-section { padding: 120px 0; }
    .destinos-section__header { text-align: center; margin-bottom: 60px; }
    .destinos-section__header .tag-label { justify-content: center; margin-bottom: 18px; }
    .destinos-section__header .tag-label::after { content: ''; width: 35px; height: 1px; background: var(--gold); }
    .destinos-section__header h2 { font-size: 42px; }
    .destinos-mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 320px 280px;
      gap: 12px;
    }
    .destinos-mosaic .dcard:nth-child(1) { grid-row: 1 / 3; }
    .dcard {
      position: relative; overflow: hidden; cursor: pointer; display: block;
    }
    .dcard img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.7s ease;
    }
    .dcard:hover img { transform: scale(1.07); }
    .dcard__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 55%);
    }
    .dcard__info {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2;
    }
    .dcard__count {
      font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 6px;
    }
    .dcard__name {
      font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: #fff;
    }
    .dcard__arrow {
      position: absolute; top: 20px; right: 20px; z-index: 3;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transform: translateX(-10px);
      transition: all 0.4s ease;
    }
    .dcard:hover .dcard__arrow { opacity: 1; transform: translateX(0); }

    /* ══════════════════════════════════════════════
       CTA — IMMERSIVE RIBBON
    ══════════════════════════════════════════════ */
    .cta-immersive {
      position: relative; padding: 100px 0; overflow: hidden;
    }
    .cta-immersive__bg {
      position: absolute; inset: 0;
      background: url('images/img-5.jpg') center/cover no-repeat;
    }
    .cta-immersive__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(186,114,28,0.92) 0%, rgba(157,106,38,0.95) 100%);
    }
    .cta-immersive__content {
      position: relative; z-index: 2;
      display: flex; align-items: center; justify-content: space-between; gap: 40px;
    }
    .cta-immersive__text h3 { font-size: 38px; color: #fff; font-weight: 500; line-height: 1.2; margin-bottom: 8px; }
    .cta-immersive__text p { font-size: 16px; color: rgba(255,255,255,0.75); }
    .btn-white {
      display: inline-block; padding: 16px 44px;
      background: #fff; color: var(--dark);
      font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
      transition: var(--transition); white-space: nowrap;
    }
    .btn-white:hover { background: var(--dark); color: #fff; }

    /* ── Footer ── */
    .site-footer { background: var(--dark); color: rgba(255,255,255,0.6); position: relative; overflow: hidden; }
    .footer-top-accent { position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg, transparent 0%, var(--gold) 20%, #d4a85c 50%, var(--gold) 80%, transparent 100%); z-index:5; }
    .footer-main { position: relative; z-index: 2; padding: 90px 0 60px; }
    .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
    .footer-col h4 { font-size: 20px; color: var(--white); margin-bottom: 25px; font-weight: 600; }
    .footer-col a { color: rgba(255,255,255,0.6); transition: var(--transition); }
    .footer-col a:hover { color: var(--gold); }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; font-size: 14px; }
    .footer-contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
    .footer-links a::before { content: ''; display: block; width: 6px; height: 1px; background: var(--gold); transition: width 0.3s; }
    .footer-links a:hover::before { width: 15px; }
    .footer-links-col-2 { columns:2; column-gap:20px; }
    .footer-links-col-2 li { break-inside:avoid; }
    .footer-bottom { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.08); padding: 25px 0; }
    .footer-bottom .container { display: flex; align-items: center; justify-content: center; gap: 40px; }
    .footer-bottom-social { display: flex; gap: 12px; }
    .footer-bottom-social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: var(--transition); }
    .footer-bottom-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-3px); }
    .footer-copyright { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
    @media(max-width:768px) {
      .footer-top-row { flex-direction:column !important; text-align:center; gap:20px; }
      .footer-grid { grid-template-columns:1fr !important; gap:40px !important; }
      .footer-bottom .container { flex-direction:column !important; gap:15px !important; text-align:center; }
    }

    /* WhatsApp */
    .whatsapp-float { position: fixed; bottom: 25px; right: 25px; z-index: 9999; }
    .whatsapp-btn { width: 60px; height: 60px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer; transition: var(--transition); position: relative; z-index: 2; }
    .whatsapp-btn:hover { transform: scale(1.1); }
    .whatsapp-btn svg { color: var(--white); }
    .whatsapp-popup { position: absolute; bottom: 75px; right: 0; width: 320px; background: var(--white); border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); }
    .whatsapp-popup.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .whatsapp-popup-header { background: var(--whatsapp); padding: 18px 20px; color: var(--white); }
    .whatsapp-popup-header h4 { color: var(--white); font-size: 16px; margin-bottom: 4px; }
    .whatsapp-popup-header p { font-size: 12px; opacity: 0.85; }
    .whatsapp-popup-body { padding: 20px; }
    .whatsapp-popup-msg { background: #f0f0f0; border-radius: 8px; padding: 14px 16px; font-size: 14px; color: var(--dark); margin-bottom: 16px; }
    .whatsapp-popup-link { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--whatsapp); color: var(--white) !important; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 600; }
    .whatsapp-popup-link:hover { background: #20bd5a; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .intro-editorial { grid-template-columns: 1fr; }
      .intro-editorial__img { height: 450px; order: 2; }
      .intro-editorial__text { order: 1; }
      .intro-editorial__img .img-s1 { width: 50%; height: 48%; }
      .intro-editorial__img .img-s2 { width: 44%; height: 40%; }
      .intro-editorial__img .img-s3 { width: 28%; height: 28%; }
      .valores-grid { grid-template-columns: 1fr 1fr; }
      .valor-card { border-bottom: 1px solid rgba(0,0,0,0.06); }
      .valor-card:nth-child(2n) { border-right: none; }
      .mv-grid { grid-template-columns: 1fr; gap: 60px; }
      .mv-card:nth-child(2) { margin-top: 0; }
      .destinos-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 260px 260px; }
      .destinos-mosaic .dcard:nth-child(1) { grid-row: auto; }
      .timeline-track { flex-wrap: wrap; gap: 30px; }
      .timeline-track::before { display: none; }
      .timeline-item { flex: 0 0 45%; }
      .cta-immersive__content { flex-direction: column; text-align: center; }
      .stats-immersive__content { gap: 40px; }
      .stat-item__number { font-size: 48px; }
    }
    @media (max-width: 768px) {
      .hero { height: 45vh; }
      .hero__desc { display: none; }
      .hero__title { font-size: 36px; }
      .hero__content { padding: 0 24px 40px; }
      .intro-editorial__img { order: 2; height: 380px; }
      .intro-editorial__text { order: 1; padding: 50px 24px; }
      .intro-editorial__text::before { font-size: 120px; top: 20px; right: 20px; }
      .intro-editorial__text h2 { font-size: 28px; }
      .intro-editorial__img .img-s1 { width: 48%; height: 45%; }
      .intro-editorial__img .img-s2 { width: 42%; height: 38%; }
      .intro-editorial__img .img-s3 { width: 26%; height: 26%; }
      .valores-section { padding: 80px 0; }
      .valores-grid { grid-template-columns: 1fr; }
      .valor-card { border-right: none; padding: 36px 24px; }
      .stats-immersive__content { flex-direction: column; gap: 24px; }
      .stat-divider { width: 50px; height: 1px; }
      .stat-item__number { font-size: 42px; }
      .mv-section { padding: 80px 0; }
      .mv-card__number { font-size: 52px; }
      .mv-card h3 { font-size: 24px; }
      .timeline-section { padding: 80px 0; }
      .timeline-item { flex: 0 0 100%; }
      .destinos-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
      .destinos-mosaic .dcard { height: 250px; }
      .destinos-section { padding: 80px 0; }
      .cta-immersive__text h3 { font-size: 28px; }
    }

/* === eventos === */
.city-events { padding: 120px 0; background: var(--white); }
    .city-events__header { text-align: center; margin-bottom: 50px; }
    .city-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 60px; border-bottom: 1px solid #eee; }
    .city-tab { padding: 16px 40px; font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: #999; cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.3s; background: none; border-top: none; border-left: none; border-right: none; font-family: var(--font-body); }
    .city-tab:hover { color: var(--dark); }
    .city-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
    .city-panel { display: none; }
    .city-panel.active { display: block; }

    /* Hotel venue cards — side by side */
    .venue-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .hotel-venue { background: var(--cream); border-radius: 16px; overflow: hidden; transition: box-shadow 0.4s; display: flex; flex-direction: column; }
    .hotel-venue.plus { background: var(--dark); }
    .hotel-venue.plus .hotel-venue__label { color: var(--gold); }
    .hotel-venue.plus .salon-row__name { color: rgba(255,255,255,0.7); }
    .hotel-venue.plus .salon-row { border-bottom-color: rgba(255,255,255,0.06); }
    .hotel-venue.plus .salon-row:hover .salon-row__name { color: #fff; }
    .hotel-venue.plus .hotel-venue__plus-logo { height: 22px; width: auto; margin-bottom: 14px; opacity: 0.7; }
    .hotel-venue:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.08); }
    .hotel-venue__img { position: relative; overflow: hidden; height: 280px; }
    .hotel-venue__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.4,0,.2,1); }
    .hotel-venue:hover .hotel-venue__img img { transform: scale(1.05); }
    .hotel-venue__img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%); }
    .hotel-venue__img-info { position: absolute; bottom: 24px; left: 24px; z-index: 2; }
    .hotel-venue__img-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; background: var(--gold); padding: 5px 14px; border-radius: 4px; margin-bottom: 10px; }
    .hotel-venue__img-name { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: #fff; }

    .hotel-venue__hotel-logo { display: flex; align-items: center; margin-bottom: 18px; }
    .hotel-venue__hotel-logo img { max-width: 140px; max-height: 50px; object-fit: contain; }
    .hotel-venue.plus .hotel-venue__hotel-logo img { filter: brightness(0) invert(1); }

    .hotel-venue__content { padding: 32px 32px 36px; flex: 1; display: flex; flex-direction: column; }
    .hotel-venue__label { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
    .hotel-venue__salones { display: flex; flex-direction: column; gap: 0; flex: 1; }
    .salon-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); cursor: pointer; transition: all 0.3s; }
    .salon-row:last-child { border-bottom: none; }
    .salon-row:hover { padding-left: 8px; }
    .salon-row__left { display: flex; align-items: center; gap: 12px; }
    .salon-row__dot { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
    .salon-row__name { font-size: 14px; font-weight: 500; color: var(--dark); }
    .salon-row__arrow { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); opacity: 0; transition: opacity 0.3s; }
    .salon-row:hover .salon-row__arrow { opacity: 1; }
    .hotel-venue__cta { margin-top: 20px; }
    .hotel-venue__cta a { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); padding: 10px 0; border-bottom: 1.5px solid var(--gold); transition: all 0.3s; }
    .hotel-venue__cta a:hover { gap: 14px; }

    @media(max-width:768px) {
      .city-tabs { flex-wrap: wrap; }
      .city-tab { padding: 12px 24px; font-size: 11px; }
      .venue-row { grid-template-columns: 1fr; }
      .hotel-venue__img { height: 220px; }
      .hotel-venue__content { padding: 28px 24px; }
    }

/* === eventos === */
.form-eventos { padding: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
    .form-eventos__img { position: relative; overflow: hidden; }
    .form-eventos__img img { width: 100%; height: 100%; object-fit: cover; }
    .form-eventos__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,44,44,0.5) 0%, transparent 60%); }
    .form-eventos__img-content { position: absolute; bottom: 50px; left: 50px; z-index: 2; }
    .form-eventos__img-content h3 { font-family: var(--font-heading); font-size: 32px; color: #fff; font-weight: 600; margin-bottom: 12px; line-height: 1.2; }
    .form-eventos__img-content p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
    .form-eventos__contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .form-eventos__contact-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
    .form-eventos__contact-item span { font-size: 14px; color: rgba(255,255,255,0.7); }
    .form-eventos__contact-item a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.3s; }
    .form-eventos__contact-item a:hover { color: var(--gold); }
    .form-eventos__form { background: var(--cream); padding: 70px 60px; display: flex; flex-direction: column; justify-content: center; }
    .form-eventos__form h3 { font-family: var(--font-heading); font-size: 30px; font-weight: 600; margin-bottom: 8px; }
    .form-eventos__form > p { font-size: 15px; color: var(--gray); margin-bottom: 36px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .form-field { display: flex; flex-direction: column; }
    .form-field.full { grid-column: 1 / -1; }
    .form-field label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
    .form-field select,
    .form-field input { width: 100%; padding: 14px 16px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); font-size: 14px; color: var(--dark); background: #fff; transition: border-color 0.3s; appearance: none; }
    .form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
    .form-field select:focus,
    .form-field input:focus { border-color: var(--gold); outline: none; }
    .form-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 8px; grid-column: 1 / -1; }
    .form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
    .form-check label { font-size: 12px; color: var(--gray); line-height: 1.5; cursor: pointer; text-transform: none; letter-spacing: 0; font-weight: 400; }
    .form-submit { grid-column: 1 / -1; margin-top: 12px; }
    .form-submit button { width: 100%; padding: 16px; background: var(--gold); color: #fff; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s; }
    .form-submit button:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(186,114,28,0.3); }
    @media(max-width:768px) {
      .form-eventos { grid-template-columns: 1fr; }
      .form-eventos__img { height: 350px; }
      .form-eventos__form { padding: 50px 24px; }
      .form-grid { grid-template-columns: 1fr; }
      .form-eventos__img-content { bottom: 30px; left: 24px; right: 24px; }
      .form-eventos__img-content h3 { font-size: 24px; }
    }

/* ====================================================
   REWARDS PAGE
   ==================================================== */

/* Hero */
.hero-rewards { position: relative; height: 520px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-rewards__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 8s ease; }
.hero-rewards:hover .hero-rewards__bg { transform: scale(1.04); }
.hero-rewards__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 60%, transparent 100%); }
.hero-rewards__content { position: relative; z-index: 2; padding: 0 0 60px; width: 100%; max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; padding-bottom: 60px; }
.hero-rewards__title { font-family: var(--font-heading); font-size: clamp(36px, 6vw, 64px); color: #fff; font-weight: 600; line-height: 1.1; margin-bottom: 10px; }
.hero-rewards__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-rewards__desc { font-size: 18px; color: rgba(255,255,255,0.65); }

/* Intro split */
.intro-split { padding: 90px 0; background: var(--white); }
.intro-split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-split__img { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.intro-split__img img { width: 100%; height: 100%; object-fit: cover; }
.intro-split__img::after { content: ''; position: absolute; bottom: -1px; left: -1px; right: -1px; height: 6px; background: var(--gold); border-radius: 0 0 16px 16px; }
@media(max-width:900px) { .intro-split__grid { grid-template-columns: 1fr; gap: 40px; } }

/* Benefits */
.benefits { position: relative; padding: 100px 0; overflow: hidden; }
.benefits__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.benefits__bg::after { content: ''; position: absolute; inset: 0; background: rgba(20,16,10,0.93); }
.benefits__inner { position: relative; z-index: 2; }
.benefits__header { text-align: center; margin-bottom: 60px; }
.benefits__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 900px; margin: 0 auto; }
.benefit-block { display: flex; gap: 22px; align-items: flex-start; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 28px; transition: all 0.35s; }
.benefit-block:hover { background: rgba(255,255,255,0.07); border-color: rgba(186,114,28,0.25); transform: translateY(-3px); }
.benefit-block__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: rgba(186,114,28,0.12); display: flex; align-items: center; justify-content: center; }
.benefit-block__icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.benefit-block h3 { font-family: var(--font-heading); font-size: 17px; color: #fff; margin-bottom: 8px; font-weight: 600; }
.benefit-block p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; margin: 0; }
@media(max-width:768px) { .benefits__grid { grid-template-columns: 1fr; } .benefit-block { flex-direction: column; gap: 14px; } }

/* Tiers */
.tiers { padding: 100px 0; background: var(--gray-light); }
.tiers__header { text-align: center; margin-bottom: 56px; }
.tiers-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.tier-col { background: var(--white); border-radius: 16px; padding: 32px 24px; text-align: center; border: 1px solid #ebe5dd; transition: all 0.35s; }
.tier-col:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: var(--gold); }
.tier-col__icon { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(135deg, rgba(186,114,28,0.12), rgba(186,114,28,0.05)); display: flex; align-items: center; justify-content: center; }
.tier-col__icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.tier-col__name { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--dark); display: block; margin-bottom: 4px; }
.tier-col__req { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.tier-col__line { width: 32px; height: 2px; background: var(--gold); margin: 18px auto; }
.tier-col__benefits { list-style: none; text-align: left; }
.tier-col__benefits li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--gray); padding: 6px 0; border-bottom: 1px solid #f0ebe4; line-height: 1.4; }
.tier-col__benefits li:last-child { border-bottom: none; }
.tier-col__benefits svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; flex-shrink: 0; margin-top: 2px; }
@media(max-width:1100px) { .tiers-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:680px) { .tiers-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:420px) { .tiers-grid { grid-template-columns: 1fr; } }

/* How it works */
.how-it-works { padding: 100px 0; background: var(--white); }
.how-it-works__header { text-align: center; margin-bottom: 52px; }
.how-it-works__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; }
.how-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; position: absolute; inset: 0; }
.how-card:hover .how-card__img { transform: scale(1.06); }
.how-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 60%, transparent 100%); }
.how-card__content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px 28px; }
.how-card__icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(186,114,28,0.2); border: 1px solid rgba(186,114,28,0.4); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.how-card__icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.how-card__step { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; }
.how-card__content h3 { font-family: var(--font-heading); font-size: 22px; color: #fff; font-weight: 600; margin-bottom: 10px; line-height: 1.2; }
.how-card__content p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }
.how-card__line { width: 32px; height: 2px; background: var(--gold); margin-top: 16px; }
@media(max-width:768px) { .how-it-works__grid { grid-template-columns: 1fr; } .how-card { aspect-ratio: 16/9; } }

/* FAQ */
.faq { padding: 90px 0; background: var(--gray-light); }
.faq__header { text-align: center; margin-bottom: 48px; }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e8e0d6; }
.faq-item__q { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-item__q:hover { color: var(--gold); }
.faq-item__icon { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid #d4c4b0; display: flex; align-items: center; justify-content: center; transition: all 0.25s; position: relative; }
.faq-item__icon::before, .faq-item__icon::after { content: ''; position: absolute; background: var(--gray); border-radius: 2px; transition: all 0.25s; }
.faq-item__icon::before { width: 10px; height: 1.5px; }
.faq-item__icon::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-item__icon { border-color: var(--gold); background: var(--gold); }
.faq-item.open .faq-item__icon::before, .faq-item.open .faq-item__icon::after { background: #fff; }
.faq-item.open .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item__a { overflow: hidden; max-height: 0; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-item__a { max-height: 300px; }
.faq-item__a p { padding: 0 0 22px; font-size: 15px; color: var(--gray); line-height: 1.75; margin: 0; }

/* CTA gold */
.cta-gold { background: var(--gold); padding: 70px 0; }
.cta-gold__inner { text-align: center; }
.cta-gold__title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 42px); color: #fff; font-weight: 700; margin-bottom: 12px; }
.cta-gold__subtitle { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }

/* === rewards === */
.why-join { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
  .why-join__img { position: relative; overflow: hidden; }
  .why-join__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
  .why-join:hover .why-join__img img { transform: scale(1.05); }
  .why-join__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,44,44,0.4) 0%, transparent 60%); }
  .why-join__content { background: var(--dark); padding: 80px 70px; display: flex; flex-direction: column; justify-content: center; position: relative; }
  .why-join__content::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(to bottom, var(--gold), transparent); }
  .why-join__item { display: flex; gap: 20px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: all 0.3s; }
  .why-join__item:last-child { border-bottom: none; }
  .why-join__item:hover { padding-left: 8px; }
  .why-join__item-icon { width: 44px; height: 44px; flex-shrink: 0; border: 1.5px solid rgba(186,114,28,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
  .why-join__item:hover .why-join__item-icon { background: var(--gold); border-color: var(--gold); }
  .why-join__item-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; transition: all 0.3s; }
  .why-join__item:hover .why-join__item-icon svg { stroke: #fff; }
  .why-join__item h4 { font-family: var(--font-heading); font-size: 18px; color: #fff; font-weight: 600; margin-bottom: 6px; }
  .why-join__item p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; margin: 0; }
  @media(max-width:1024px) { .why-join__content { padding: 60px 50px; } }
  @media(max-width:768px) {
    .why-join { grid-template-columns: 1fr; }
    .why-join__img { height: 350px; }
    .why-join__content { padding: 50px 24px; }
    .why-join__content::before { width: 100%; height: 4px; background: linear-gradient(to right, var(--gold), transparent); }
  }

/* === rewards === */
.terms-banner { position: relative; padding: 90px 0; overflow: hidden; }
    .terms-banner__bg { position: absolute; inset: 0; background: url('images/img-10.jpg') center/cover no-repeat; }
    .terms-banner__overlay { position: absolute; inset: 0; background: rgba(20,20,20,0.92); }
    .terms-banner__inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; }
    .terms-banner__left { position: sticky; top: 120px; }
    .terms-banner__left h2 { font-size: 30px; color: #fff; line-height: 1.2; margin-top: 14px; margin-bottom: 16px; }
    .terms-banner__left p { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; }
    .terms-banner__right { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .terms-card { padding: 30px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; transition: all 0.4s; }
    .terms-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(186,114,28,0.2); transform: translateY(-3px); }
    .terms-card__icon { width: 40px; height: 40px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; background: rgba(186,114,28,0.1); border-radius: 10px; }
    .terms-card__icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .terms-card h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 10px; }
    .terms-card p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 0; }
    @media(max-width:768px) {
      .terms-banner__inner { grid-template-columns: 1fr; gap: 36px; }
      .terms-banner__left { position: static; }
      .terms-banner__right { grid-template-columns: 1fr; }
      .terms-banner { padding: 70px 0; }
    }

/* === tarjeta-regalos === */
.hero-tarjeta { position:relative; height:50vh; min-height:380px; display:flex; align-items:flex-end; overflow:hidden; }
  .hero-tarjeta__bg { position:absolute; inset:0; background-size:cover; background-position:center; animation:heroZoom 14s ease-out forwards; }
  .hero-tarjeta__overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.12) 100%); }
  .hero-tarjeta__content { position:relative; z-index:2; padding:0 60px 60px; max-width:750px; }
  .hero-tarjeta__tag { display:inline-flex; align-items:center; gap:16px; font-size:11px; font-weight:600; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
  .hero-tarjeta__tag::before { content:''; display:block; width:40px; height:1px; background:var(--gold); }
  .hero-tarjeta__title { font-size:56px; font-weight:600; color:#fff; line-height:1.08; margin-bottom:14px; }
  .hero-tarjeta__desc { font-size:17px; color:rgba(255,255,255,0.55); max-width:480px; line-height:1.7; }
.gc-intro { padding:80px 0 60px; text-align:center; }
  .gc-intro__text { max-width:680px; margin:24px auto 0; font-size:16px; color:#666; line-height:1.9; }
.gc-wizard { padding:60px 0 100px; background:var(--gray-light,#F7F4F0); }
.gc-steps { display:flex; align-items:center; justify-content:center; gap:0; margin-bottom:60px; }
  .gc-step { display:flex; flex-direction:column; align-items:center; gap:8px; cursor:default; }
  .gc-step__num { width:44px; height:44px; border-radius:50%; border:2px solid #ccc; display:flex; align-items:center; justify-content:center; font-family:var(--font-heading); font-size:16px; font-weight:700; color:#aaa; background:#fff; transition:all 0.3s; }
  .gc-step.active .gc-step__num { background:var(--gold); border-color:var(--gold); color:#fff; }
  .gc-step.done .gc-step__num { background:var(--dark,#2C2C2C); border-color:var(--dark,#2C2C2C); color:#fff; }
  .gc-step__label { font-size:11px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:#aaa; white-space:nowrap; }
  .gc-step.active .gc-step__label { color:var(--gold); }
  .gc-step.done .gc-step__label { color:var(--dark,#2C2C2C); }
  .gc-step__line { flex:1; height:1px; background:#d4d4d4; min-width:60px; max-width:100px; }
.gc-panel__header { text-align:center; margin-bottom:48px; }
  .gc-panel__header h3 { font-family:var(--font-heading); font-size:28px; color:var(--dark,#2C2C2C); margin-bottom:8px; }
  .gc-panel__header p { font-size:15px; color:#888; }
.gc-designs { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:56px; }
  .gc-design { position:relative; cursor:pointer; border-radius:10px; overflow:hidden; border:3px solid transparent; transition:border-color 0.25s, transform 0.25s; }
  .gc-design:hover { transform:translateY(-4px); border-color:rgba(186,114,28,0.4); }
  .gc-design.selected { border-color:var(--gold); }
  .gc-design__preview { height:150px; background-size:cover; background-position:center; position:relative; }
  .gc-design__overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(20,14,8,0.75) 0%, transparent 55%); }
  .gc-design__info { position:absolute; bottom:12px; left:14px; z-index:2; }
  .gc-design__city { display:block; font-family:var(--font-heading); font-size:17px; color:#fff; font-weight:700; line-height:1.1; }
  .gc-design__country { display:block; font-size:10px; color:rgba(255,255,255,0.6); letter-spacing:2px; text-transform:uppercase; margin-top:3px; }
  .gc-design__check { position:absolute; top:10px; right:10px; width:26px; height:26px; background:var(--gold); border-radius:50%; display:none; align-items:center; justify-content:center; z-index:3; }
  .gc-design.selected .gc-design__check { display:flex; }
  .gc-design__check svg { width:14px; height:14px; fill:none; stroke:#fff; stroke-width:2.5; }
.gc-amounts { margin-bottom:48px; text-align:center; }
  .gc-amounts h3 { font-family:var(--font-heading); font-size:22px; color:var(--dark,#2C2C2C); margin-bottom:24px; }
  .gc-amounts__grid { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
  .gc-amount-btn { display:flex; flex-direction:column; align-items:center; gap:4px; padding:18px 32px; background:#fff; border:2px solid #ddd; border-radius:8px; cursor:pointer; transition:all 0.25s; }
  .gc-amount-btn input[type="radio"] { display:none; }
  .gc-amount-btn.selected, .gc-amount-btn:has(input:checked) { border-color:var(--gold); background:rgba(186,114,28,0.06); }
  .gc-amount-btn__label { font-family:var(--font-heading); font-size:20px; font-weight:700; color:var(--dark,#2C2C2C); }
  .gc-amount-btn__sub { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:#aaa; }
  .gc-amount-btn--custom .gc-amount-btn__label { font-size:14px; }
  .gc-amount-btn--custom input[type="text"] { border:none; border-bottom:1px solid #ccc; outline:none; background:transparent; font-family:var(--font-heading); font-size:18px; font-weight:700; color:var(--dark,#2C2C2C); width:130px; text-align:center; padding:2px 0; }
  .gc-amount-btn--custom input[type="text"]::placeholder { font-size:13px; font-weight:400; color:#aaa; font-family:var(--font-body); }
.gc-preview-card { text-align:center; margin-bottom:48px; }
.gc-card-mock { display:inline-block; position:relative; width:360px; height:210px; border-radius:14px; overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,0.25); }
  .gc-card-mock--sm { width:260px; height:150px; }
  .gc-card-mock__bg { position:absolute; inset:0; background-size:cover; background-position:center; transition:background-image 0.4s; }
  .gc-card-mock__overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(20,12,4,0.72) 0%, rgba(20,12,4,0.4) 100%); }
  .gc-card-mock__content { position:relative; z-index:2; padding:22px 26px; height:100%; display:flex; flex-direction:column; justify-content:space-between; }
  .gc-card-mock--sm .gc-card-mock__content { padding:14px 18px; }
  .gc-card-mock__logo { font-family:var(--font-heading); font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); font-weight:600; }
  .gc-card-mock__dest { font-family:var(--font-heading); font-size:24px; color:#fff; font-weight:700; line-height:1.1; }
  .gc-card-mock--sm .gc-card-mock__dest { font-size:17px; }
  .gc-card-mock__amount { font-family:var(--font-heading); font-size:22px; color:var(--gold); font-weight:700; }
  .gc-card-mock--sm .gc-card-mock__amount { font-size:16px; }
  .gc-card-mock__footer { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.5); }
.gc-form .form-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px 32px; }
  .gc-form .form-group { display:flex; flex-direction:column; gap:8px; }
  .gc-form .form-group.full-width { grid-column:1/-1; }
  .gc-form label { font-size:12px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--dark,#2C2C2C); }
  .gc-form input, .gc-form textarea, .gc-form select { border:1px solid #ddd; padding:12px 16px; font-size:15px; font-family:var(--font-body); background:#fff; transition:border-color 0.25s; outline:none; resize:vertical; appearance:none; -webkit-appearance:none; }
  .gc-form select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; cursor:pointer; }
  .gc-form input:focus, .gc-form textarea:focus, .gc-form select:focus { border-color:var(--gold); }
.gc-nav { display:flex; gap:16px; justify-content:flex-end; margin-top:40px; flex-wrap:wrap; }
.gc-btn-next { display:inline-flex; align-items:center; gap:10px; padding:15px 40px; background:var(--gold); color:#fff; font-size:11px; font-weight:600; letter-spacing:3px; text-transform:uppercase; border:none; cursor:pointer; transition:background 0.25s; }
  .gc-btn-next:hover { background:var(--dark,#2C2C2C); }
.gc-btn-back { display:inline-flex; align-items:center; gap:8px; padding:15px 30px; background:transparent; color:var(--dark,#2C2C2C); font-size:11px; font-weight:600; letter-spacing:3px; text-transform:uppercase; border:1px solid #ccc; cursor:pointer; transition:all 0.25s; }
  .gc-btn-back:hover { border-color:var(--dark,#2C2C2C); }
.gc-btn-send { display:inline-flex; align-items:center; gap:10px; padding:15px 40px; background:var(--dark,#2C2C2C); color:#fff; font-size:11px; font-weight:600; letter-spacing:3px; text-transform:uppercase; border:none; cursor:pointer; transition:background 0.25s; }
  .gc-btn-send:hover { background:var(--gold); }
  .gc-btn-send:disabled { opacity:0.6; cursor:not-allowed; }
.gc-summary { display:grid; grid-template-columns:auto 1fr; gap:48px; align-items:start; margin-bottom:32px; }
  .gc-summary__details { background:#fff; padding:32px; border:1px solid #eee; }
  .gc-summary__row { display:flex; justify-content:space-between; gap:16px; padding:12px 0; border-bottom:1px solid #f2f2f2; font-size:14px; }
  .gc-summary__row span { color:#888; }
  .gc-summary__row strong { color:var(--dark,#2C2C2C); text-align:right; }
  .gc-summary__total { display:flex; justify-content:space-between; gap:16px; padding:18px 0 0; font-size:16px; margin-top:4px; }
  .gc-summary__total span { font-weight:600; color:var(--dark,#2C2C2C); }
  .gc-summary__total strong { font-family:var(--font-heading); font-size:22px; color:var(--gold); }
.gc-result--ok { background:var(--gold); padding:24px 32px; display:flex; align-items:center; gap:18px; border-radius:4px; }
  .gc-result--ok p { color:#fff; font-size:15px; line-height:1.6; margin:0; }
.gc-result--error { background:#c0392b; padding:20px 28px; border-radius:4px; }
  .gc-result--error p { color:#fff; font-size:15px; line-height:1.6; margin:0; }
@media(max-width:900px) {
  .gc-designs { grid-template-columns:repeat(2,1fr); }
  .gc-summary { grid-template-columns:1fr; }
  .gc-card-mock { width:300px; height:174px; }
}
@media(max-width:640px) {
  .hero-tarjeta { height:45vh; }
  .hero-tarjeta__title { font-size:36px; }
  .hero-tarjeta__content { padding:0 24px 40px; }
  .gc-designs { grid-template-columns:1fr 1fr; gap:12px; }
  .gc-form .form-grid { grid-template-columns:1fr; }
  .gc-amounts__grid { gap:10px; }
  .gc-amount-btn { padding:14px 20px; }
  .gc-step__line { min-width:30px; max-width:50px; }
  .gc-card-mock { width:260px; height:150px; }
  .gc-nav { justify-content:center; }
}

    /* ══════════════════════════════════════════════
       REVEAL / RV — Scroll animation
    ══════════════════════════════════════════════ */
    .reveal, .rv { opacity: 1; transform: none; transition: none; }
    .reveal.vis, .rv.vis { opacity: 1; transform: none; }

    /* ══════════════════════════════════════════════
       DESTINO AMPLIADO
    ══════════════════════════════════════════════ */
    .hero-destino { position: relative; height: 70vh; min-height: 500px; display: flex; align-items: flex-end; overflow: hidden; }
    .hero-destino__bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 14s ease-out forwards; }
    .hero-destino__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); }
    .hero-destino__content { position: relative; z-index: 2; padding: 0 60px 80px; max-width: 800px; }
    .hero-destino__tag { display: inline-block; padding: 6px 18px; border: 1px solid var(--gold); color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 20px; }
    .hero-destino__title { font-size: 64px; font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 12px; }
    .hero-destino__subtitle { font-size: 18px; color: rgba(255,255,255,0.6); font-family: var(--font-heading); }
    @media(max-width:768px) {
      .hero-destino { height: 55vh; }
      .hero-destino__content { padding: 0 24px 60px; }
      .hero-destino__title { font-size: 38px; }
    }

    .about-split { padding: 100px 0; }
    .about-split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-split__image { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
    .about-split__image img { width: 100%; height: 100%; object-fit: cover; }
    .about-split__content h2 { font-size: 40px; margin-bottom: 20px; line-height: 1.2; }
    .about-split__content h2 em { color: var(--gold); font-style: italic; }
    .about-split__text { font-size: 16px; color: var(--gray); line-height: 1.85; margin-bottom: 30px; }
    .about-stats { display: flex; gap: 40px; padding-top: 20px; border-top: 1px solid #eee; }
    .about-stat__number { display: block; font-family: var(--font-heading); font-size: 40px; font-weight: 700; color: var(--gold); line-height: 1; }
    .about-stat__label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
    @media(max-width:768px) {
      .about-split { padding: 60px 0; }
      .about-split__inner { grid-template-columns: 1fr; gap: 40px; }
      .about-split__content h2 { font-size: 30px; }
    }

    .dest-gallery { padding: 0 0 80px; }
    .dest-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 6px; max-width: 1400px; margin: 0 auto; padding: 0 20px; }
    .dest-gallery__grid a { overflow: hidden; border-radius: 6px; display: block; }
    .dest-gallery__grid a:first-child { grid-column: span 2; grid-row: span 2; }
    .dest-gallery__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .dest-gallery__grid a:hover img { transform: scale(1.06); }
    @media(max-width:768px) {
      .dest-gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
      .dest-gallery__grid a:first-child { grid-column: span 2; grid-row: span 1; }
    }

    .hotels-section { padding: 80px 0 100px; background: var(--gray-light); }
    .hotels-section__header { text-align: center; margin-bottom: 50px; }
    .hotels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .hotel-card { background: #fff; border-radius: 12px; overflow: hidden; transition: all 0.4s; box-shadow: 0 2px 16px rgba(0,0,0,0.06); color: var(--dark); }
    .hotel-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.12); }
    .hotel-card__img { position: relative; height: 220px; overflow: hidden; }
    .hotel-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
    .hotel-card:hover .hotel-card__img img { transform: scale(1.06); }
    .hotel-card__plus { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff; padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 4px; }
    .hotel-card__body { padding: 22px 24px; }
    .hotel-card__name { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
    .hotel-card__location { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
    .hotel-card__rnt { font-size: 11px; color: #aaa; margin-bottom: 12px; }
    .hotel-card__link { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
    .hotel-card__link::after { content: '→'; transition: transform 0.3s; }
    .hotel-card:hover .hotel-card__link::after { transform: translateX(4px); }
    @media(max-width:991px) { .hotels-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:576px) { .hotels-grid { grid-template-columns: 1fr; } }

    .other-dest { padding: 80px 0 100px; }
    .other-dest__header { text-align: center; margin-bottom: 48px; }
    .other-dest__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .other-dest__card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 3/4; display: block; }
    .other-dest__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
    .other-dest__card:hover img { transform: scale(1.06); }
    .other-dest__card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 20px; }
    .other-dest__card-overlay > div { display: flex; flex-direction: column; gap: 4px; }
    .other-dest__card-name { font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: #fff; }
    .other-dest__card-arrow { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
    @media(max-width:768px) { .other-dest__grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:480px) { .other-dest__grid { grid-template-columns: 1fr; } }

    .cta-dark { position: relative; padding: 120px 0; text-align: center; overflow: hidden; }
    .cta-dark__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
    .cta-dark__overlay { position: absolute; inset: 0; background: rgba(20,20,20,0.88); }
    .cta-dark__content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
    .cta-dark__content h2 { font-size: 46px; color: #fff; margin-bottom: 16px; }
    .cta-dark__content p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
    .btn-gold { display: inline-block; padding: 14px 40px; background: var(--gold); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; border-radius: 4px; transition: all 0.3s; }
    .btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
    @media(max-width:768px) { .cta-dark__content h2 { font-size: 32px; } }

    /* ══════════════════════════════════════════════
       HOTEL AMPLIADO
    ══════════════════════════════════════════════ */
    .hero-hotel { position: relative; height: 75vh; min-height: 540px; display: flex; align-items: flex-end; overflow: hidden; }
    .hero-hotel__bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 14s ease-out forwards; }
    .hero-hotel__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%); }
    .hero-hotel__content { position: relative; z-index: 2; padding: 0 60px 90px; max-width: 700px; }
    .hero-hotel__badge { display: inline-block; padding: 6px 16px; background: var(--gold); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
    .hero-hotel__name { font-size: 58px; font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 8px; }
    .hero-hotel__by { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.45); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
    .hero-hotel__location { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
    .hero-hotel__location svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; flex-shrink: 0; }
    .hero-hotel__rnt { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 1.5px; }
    @media(max-width:768px) {
      .hero-hotel { height: 60vh; }
      .hero-hotel__content { padding: 0 24px 60px; }
      .hero-hotel__name { font-size: 36px; }
    }

    .quick-bar { background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.06); }
    .quick-bar__inner { display: flex; align-items: center; gap: 40px; padding: 20px 0; flex-wrap: wrap; }
    .quick-bar__item { display: flex; flex-direction: column; gap: 2px; }
    .quick-bar__label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
    .quick-bar__value { font-size: 15px; font-weight: 500; color: #fff; }
    .quick-bar__cta { margin-left: auto; }
    @media(max-width:768px) { .quick-bar__cta { margin-left: 0; width: 100%; } .quick-bar__cta a { width: 100%; text-align: center; display: block; } }

    .hotel-about { padding: 100px 0; }
    .hotel-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .hotel-about__text h2 { font-size: 40px; margin-bottom: 16px; }
    .hotel-about__text p { font-size: 16px; color: var(--gray); line-height: 1.85; margin-bottom: 20px; }
    .hotel-about__address { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray); }
    .hotel-about__address svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; flex-shrink: 0; margin-top: 2px; }
    .hotel-about__img { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
    .hotel-about__img img { width: 100%; height: 100%; object-fit: cover; }
    @media(max-width:768px) {
      .hotel-about { padding: 60px 0; }
      .hotel-about__grid { grid-template-columns: 1fr; gap: 40px; }
      .hotel-about__text h2 { font-size: 30px; }
    }

    .hotel-cta { padding: 80px 0; background: var(--gold); }
    .hotel-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
    .hotel-cta__inner h2 { font-size: 36px; color: #fff; margin-bottom: 6px; }
    .hotel-cta__inner p { font-size: 15px; color: rgba(255,255,255,0.75); }
    .btn-white-solid { display: inline-block; padding: 14px 38px; background: #fff; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 4px; transition: all 0.3s; white-space: nowrap; }
    .btn-white-solid:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }
    @media(max-width:768px) { .hotel-cta { padding: 60px 0; } .hotel-cta__inner { flex-direction: column; text-align: center; } .hotel-cta__inner h2 { font-size: 28px; } }

    .other-hotels { padding: 80px 0 100px; background: var(--gray-light); }
    .other-hotels__header { text-align: center; margin-bottom: 48px; }
    .other-hotels__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .other-hotel-card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 3/4; display: block; }
    .other-hotel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
    .other-hotel-card:hover img { transform: scale(1.06); }
    .other-hotel-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
    .other-hotel-card__name { font-family: var(--font-heading); font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 3px; }
    .other-hotel-card__loc { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
    @media(max-width:768px) { .other-hotels__grid { grid-template-columns: 1fr 1fr; } }

/* Hotel Gallery */
.hotel-gallery { padding: 0 0 80px; }
.hotel-gallery__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 240px; gap: 6px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hotel-gallery__grid > *:first-child { grid-row: span 2; }
.hotel-gallery__item { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; }
.hotel-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hotel-gallery__item:hover img { transform: scale(1.05); }
.hotel-gallery__more { position: absolute; inset: 0; background: rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; font-weight: 700; font-family: var(--font-heading); }

/* Amenidades */
.hotel-amenidades { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; margin-bottom: 24px; }
.hotel-amenidad { display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: #f9f5f0; border: 1px solid #ede5d9; border-radius: 8px; font-size: 13px; color: var(--dark); }
.hotel-amenidad svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; flex-shrink: 0; }

/* Mapa */
.hotel-map { padding: 0 0 80px; }
.hotel-map__embed { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hotel-map__embed iframe { width: 100%; height: 420px; border: none; border-radius: 12px; display: block; }

/* Galería destino */
.dest-full-gallery { padding: 0 0 80px; }
.dest-full-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.dest-full-gallery__item { aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; }
.dest-full-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dest-full-gallery__item:hover img { transform: scale(1.05); }

@media(max-width:768px) {
  .hotel-gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .hotel-gallery__grid > *:first-child { grid-column: span 2; grid-row: span 1; }
  .dest-full-gallery__grid { grid-template-columns: 1fr 1fr; }
}
    @media(max-width:480px) { .other-hotels__grid { grid-template-columns: 1fr; } }

/* Booking widget - hotel pages */
.hotel-booking { padding: 80px 0; background: var(--gray-light); }
.hotel-booking .container { max-width: 1100px; }

/* Booking widget - home page */
.booking-bar__widget { width: 100%; padding: 10px 0; }

/* ====================================================
   BOOKING SECTION (bk2) - inline widget
   ==================================================== */
.booking-section { padding: 70px 0 80px; background: var(--white); }

.booking-bar.bk2 { display: block; width: 100%; padding: 0 30px; box-shadow: none; background: transparent; }

.booking-bar.bk2 .booking-bar__accent { display: flex; flex-direction: row; align-items: center; gap: 16px; justify-content: center; margin-bottom: 36px; padding: 0; min-width: auto; background: transparent; writing-mode: initial; }
.booking-bar.bk2 .booking-bar__accent-line { width: auto; flex: 1; max-width: 80px; height: 1px; background: rgba(186,114,28,0.35); }
.booking-bar.bk2 .booking-bar__accent-text { writing-mode: initial; text-orientation: initial; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); white-space: nowrap; }

.bk2__body { background: var(--white); border: 1px solid #e8e0d6; border-radius: 16px; overflow: visible; box-shadow: 0 4px 32px rgba(0,0,0,0.07); }

.bk2__selector { display: flex; align-items: center; padding: 20px 28px; border-bottom: 1px solid #f0ebe4; background: #faf7f3; gap: 16px; }
.bk2__selector-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px; background: rgba(186,114,28,0.1); display: flex; align-items: center; justify-content: center; }
.bk2__selector-field { flex: 1; min-width: 0; }
.bk2__selector-field label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.bk2__selector-field select { width: 100%; background: transparent; border: none; outline: none; font-family: var(--font-body); font-size: 16px; color: var(--dark); cursor: pointer; appearance: none; -webkit-appearance: none; }
.bk2__selector-field select option, .bk2__selector-field select optgroup { background: #fff; color: var(--dark); }

.bk2__panel { padding: 0; min-height: 80px; }

/* ====================================================
   BOTÓN FLOTANTE RESERVAR
   ==================================================== */
.reservar-float { position: fixed; bottom: 90px; right: 24px; z-index: 999; display: flex; align-items: center; gap: 8px; padding: 12px 18px; background: var(--gold); color: #fff; border-radius: 50px; box-shadow: 0 4px 20px rgba(186,114,28,0.45); cursor: pointer; transition: var(--transition); font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.3px; }
.reservar-float:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(186,114,28,0.55); }
.reservar-float svg { flex-shrink: 0; }

/* ====================================================
   MODAL RESERVAS GLOBAL
   ==================================================== */
.bk-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.72); z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.bk-modal--open { opacity: 1; pointer-events: all; }
.bk-modal__box { background: #fff; border-radius: 16px; width: 100%; max-width: 1100px; max-height: 92vh; display: flex; flex-direction: column; overflow: hidden; transform: translateY(24px); transition: transform 0.28s ease; }
.bk-modal--open .bk-modal__box { transform: translateY(0); }
.bk-modal__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #f0ebe4; background: #faf7f3; flex-shrink: 0; }
.bk-modal__tag { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.bk-modal__title { font-family: var(--font-heading); font-size: 18px; color: var(--dark); }
.bk-modal__close { width: 36px; height: 36px; border-radius: 8px; border: 1px solid #e8e0d6; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--gray); transition: var(--transition); flex-shrink: 0; }
.bk-modal__close:hover { background: var(--gray-light); color: var(--dark); }
.bk-modal__body { overflow-y: auto; padding: 24px; flex: 1; }

.bk2__loading { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 40px 24px; color: var(--gray); font-size: 14px; }
.bk2__spinner { width: 22px; height: 22px; border: 2px solid rgba(186,114,28,0.3); border-top-color: var(--gold); border-radius: 50%; animation: bk-spin 0.7s linear infinite; flex-shrink: 0; }
@keyframes bk-spin { to { transform: rotate(360deg); } }

@media(max-width: 768px) {
  .booking-bar.bk2 { padding: 0 16px; }
  .bk2__selector-icon { display: none; }
  .reservar-float span { display: none; }
  .reservar-float { padding: 14px; border-radius: 50%; bottom: 88px; }
  .bk-modal__box { max-height: 95vh; border-radius: 12px; }
}

/* ====================================================
   HOTEL ABOUT - Rediseño editorial (página ampliada)
   ==================================================== */
.hotel-about { padding: 80px 0 60px; background: var(--white); }
.hotel-about .container { max-width: 860px; }

.hotel-about__inner { border-left: 3px solid var(--gold); padding-left: 36px; }

.hotel-about__dest { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hotel-about__dest svg { flex-shrink: 0; }

.hotel-about__title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 42px); font-weight: 600; color: var(--dark); line-height: 1.2; margin-bottom: 20px; }

.hotel-about__divider { width: 48px; height: 2px; background: var(--gold); margin-bottom: 24px; }

.hotel-about__desc { font-size: 16px; line-height: 1.85; color: var(--gray); margin-bottom: 32px; }

.hotel-about__amenidades { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-bottom: 32px; }
.hotel-about__amenidad { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--dark); }
.hotel-about__amenidad svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--gold); fill: none; }

.hotel-about__address { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); padding: 10px 16px; background: var(--gray-light); border-radius: 8px; }
.hotel-about__address svg { flex-shrink: 0; }

@media(max-width: 768px) {
  .hotel-about__inner { padding-left: 20px; border-left-width: 2px; }
  .hotel-about__amenidades { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 480px) {
  .hotel-about__amenidades { grid-template-columns: 1fr; }
}

/* ====================================================
   HOTEL GALLERY - Header de sección
   ==================================================== */
.hotel-gallery__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hotel-gallery__head { text-align: center; padding: 60px 0 32px; }
.hotel-gallery__head .tag-label { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.hotel-gallery__head h2 { font-family: var(--font-heading); font-size: clamp(22px, 3vw, 32px); color: var(--dark); }

/* ====================================================
   SELECTOR DE IDIOMA CON BANDERAS
   ==================================================== */
.lang-sel { position: relative; }

.lang-sel__btn { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; padding: 5px 10px; color: #fff; cursor: pointer; font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; transition: var(--transition); white-space: nowrap; }
.lang-sel__btn:hover { background: rgba(255,255,255,0.14); }
.lang-sel__btn span:first-child { font-size: 16px; line-height: 1; }
.lang-sel__btn svg { transition: transform 0.2s; opacity: 0.6; }
.lang-sel.open .lang-sel__btn svg { transform: rotate(180deg); }

.lang-sel__drop { position: absolute; top: calc(100% + 6px); right: 0; background: #1e1e1e; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; min-width: 148px; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity 0.18s ease, transform 0.18s ease; z-index: 500; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.lang-sel.open .lang-sel__drop { opacity: 1; pointer-events: all; transform: translateY(0); }

.lang-opt { display: flex; align-items: center; gap: 10px; padding: 10px 14px; color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 500; transition: background 0.15s; text-decoration: none; }
.lang-opt span:first-child { font-size: 18px; line-height: 1; }
.lang-opt:hover { background: rgba(255,255,255,0.07); color: #fff; }
.lang-opt--active { color: #fff; background: rgba(186,114,28,0.15); }
.lang-opt--active span:last-child { color: var(--gold); font-weight: 700; }

/* Cierra al hacer clic fuera */
@media(max-width:768px) { .lang-sel__drop { right: auto; left: 0; } }

.main-nav.scrolled .lang-sel__btn { color: var(--dark) !important; background: rgba(44,44,44,0.08); border-color: rgba(44,44,44,0.15); }
.main-nav.scrolled .lang-sel__btn:hover { background: rgba(44,44,44,0.13); }
.main-nav.scrolled .lang-sel__drop { background: #fff; border-color: rgba(44,44,44,0.1); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.main-nav.scrolled .lang-opt { color: rgba(44,44,44,0.65); }
.main-nav.scrolled .lang-opt:hover { background: rgba(44,44,44,0.05); color: var(--dark); }
.main-nav.scrolled .lang-opt--active { color: var(--dark); background: rgba(186,114,28,0.08); }

/* ====================================================
   DESTINOS — HERO + EDITORIAL
   ==================================================== */
.hero-destinos { position: relative; height: 50vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-destinos__bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 14s ease-out forwards; }
.hero-destinos__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.12) 100%); }
.hero-destinos__content { position: relative; z-index: 2; padding: 0 60px 60px; max-width: 750px; }
.hero-destinos__title { font-size: 56px; font-weight: 600; color: #fff; line-height: 1.08; margin-bottom: 16px; }
.hero-destinos__title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.7); }
.hero-destinos__desc { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }

.destinos-section { padding: 120px 0; }
.destinos-section__header { text-align: center; margin-bottom: 60px; }
.destinos-section__header .tag-label { justify-content: center; margin-bottom: 18px; }
.destinos-section__header .tag-label::after { content: ''; width: 35px; height: 1px; background: var(--gold); }

.destino-editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 1px; background: var(--white); overflow: hidden; transition: var(--transition); }
.destino-editorial:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.destino-editorial.reverse .destino-editorial__image { order: 2; }
.destino-editorial.reverse .destino-editorial__content { order: 1; }

.destino-editorial__image { position: relative; overflow: hidden; min-height: 420px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; padding: 16px; background: var(--white); }
.destino-editorial__image a { display: block; border-radius: 14px; overflow: hidden; position: relative; }
.destino-editorial__image a:first-child { grid-row: 1 / 3; }
.destino-editorial__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.4,0,.2,1); border-radius: 14px; }
.destino-editorial__image a:hover img { transform: scale(1.06); }

.destino-editorial__content { display: flex; flex-direction: column; justify-content: center; padding: 70px 80px; position: relative; }
.destino-editorial__content::before { content: ''; position: absolute; top: 80px; left: 0; width: 4px; height: 50px; background: var(--gold); opacity: 0; transition: all 0.5s cubic-bezier(.4,0,.2,1); }
.destino-editorial.reverse .destino-editorial__content::before { left: auto; right: 0; }
.destino-editorial:hover .destino-editorial__content::before { opacity: 1; }

.destino-editorial__badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); padding: 7px 18px; border-radius: 4px; margin-bottom: 28px; width: fit-content; box-shadow: 0 4px 15px rgba(186,114,28,0.25); }
.destino-editorial__name { font-size: 38px; font-weight: 600; color: var(--dark); margin-bottom: 24px; line-height: 1.15; }
.destino-editorial__divider { width: 50px; height: 1px; background: var(--gold); margin-bottom: 28px; transition: width 0.5s cubic-bezier(.4,0,.2,1); }
.destino-editorial:hover .destino-editorial__divider { width: 80px; }
.destino-editorial__desc { font-size: 16px; line-height: 1.85; color: var(--gray); margin-bottom: 40px; max-width: 440px; }
.destino-editorial__link { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--dark); padding: 14px 0; border-bottom: 1px solid rgba(44,44,44,0.15); transition: var(--transition); width: fit-content; }
.destino-editorial__link svg { transition: transform 0.4s cubic-bezier(.4,0,.2,1); }
.destino-editorial__link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.destino-editorial__link:hover svg { transform: translateX(6px); }

.destino-separator { max-width: 1280px; margin: 0 auto; padding: 0 80px; }
.destino-separator__line { height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(186,114,28,0.2) 20%, rgba(186,114,28,0.2) 80%, transparent 100%); }

.stat-item { text-align: center; }
.stat-item__number { font-family: var(--font-heading); font-size: 62px; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stat-item__label { font-size: 13px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 10px; display: block; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

@media(max-width:1024px) {
  .hero-destinos__content { padding: 0 40px 50px; }
  .destino-editorial__content { padding: 50px 50px; }
  .destino-editorial__name { font-size: 32px; }
  .destino-editorial__image { min-height: 360px; }
}
@media(max-width:768px) {
  .hero-destinos { height: 45vh; }
  .hero-destinos__desc { display: none; }
  .hero-destinos__title { font-size: 36px; }
  .hero-destinos__content { padding: 0 24px 40px; }
  .destinos-section { padding: 80px 0; }
  .destino-editorial { grid-template-columns: 1fr; }
  .destino-editorial.reverse .destino-editorial__image { order: 1; }
  .destino-editorial.reverse .destino-editorial__content { order: 2; }
  .destino-editorial__image { min-height: 280px; grid-template-columns: 1fr; grid-template-rows: auto; }
  .destino-editorial__image a:first-child { grid-row: auto; }
  .destino-editorial__image a:nth-child(2), .destino-editorial__image a:nth-child(3) { display: none; }
  .destino-editorial__content { padding: 40px 28px 50px; }
  .destino-editorial__content::before { top: 0; left: 0; right: 0; width: 50px !important; height: 3px; }
  .destino-editorial.reverse .destino-editorial__content::before { left: 0; right: auto; }
  .destino-editorial__name { font-size: 28px; }
  .destino-editorial__desc { font-size: 15px; }
  .destino-separator { padding: 0 28px; }
  .stat-item__number { font-size: 42px; }
  .stat-divider { width: 50px; height: 1px; }
}

/* ====================================================
   HOTELES — INTRO BANNER + CTA-GOLD VARIANTE IMAGEN
   ==================================================== */
.intro-hoteles { position: relative; padding: 120px 0; overflow: hidden; }
.intro-hoteles__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.18); }
.intro-hoteles__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-hoteles__left { text-align: left; }
.intro-hoteles__left h2 { font-size: 44px; color: #fff; font-weight: 600; line-height: 1.15; margin-bottom: 20px; }
.intro-hoteles__left h2 em { font-style: italic; font-weight: 400; color: var(--gold); }
.intro-hoteles__left p { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 16px; }
.intro-hoteles__left .ih-line { width: 50px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.intro-hoteles__right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.ih-feature { padding: 32px 24px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); transition: var(--transition); }
.ih-feature:hover { border-color: rgba(186,114,28,0.35); background: rgba(186,114,28,0.06); transform: translateY(-4px); }
.ih-feature__num { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.ih-feature__label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.ih-feature__desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.5; }

.cta-gold__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-gold__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(186,114,28,0.92) 0%, rgba(157,106,38,0.95) 100%); }
.cta-gold__content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-gold__text h3 { font-size: 38px; color: #fff; font-weight: 500; line-height: 1.2; margin-bottom: 8px; }
.cta-gold__text p { font-size: 16px; color: rgba(255,255,255,0.75); }

@media(max-width:1024px) {
  .intro-hoteles__inner { grid-template-columns: 1fr; gap: 50px; }
}
@media(max-width:768px) {
  .intro-hoteles { padding: 80px 0; }
  .intro-hoteles__left h2 { font-size: 32px; }
  .intro-hoteles__right { grid-template-columns: 1fr; }
  .cta-gold__content { flex-direction: column; text-align: center; }
  .cta-gold__text h3 { font-size: 28px; }
}

/* ====================================================
   EVENTOS — HERO + SALONES + TIPOS + CTA
   ==================================================== */
.hero-eventos { position: relative; height: 50vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-eventos__bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 14s ease-out forwards; }
.hero-eventos__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.12) 100%); }
.hero-eventos__content { position: relative; z-index: 2; padding: 0 60px 60px; max-width: 750px; }
.hero-eventos__title { font-size: 56px; font-weight: 600; color: #fff; line-height: 1.08; margin-bottom: 16px; }
.hero-eventos__title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.7); }
.hero-eventos__desc { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }

.intro-split--cream { background: var(--cream); }
.intro-split__img--tall img { height: 560px; }

.salones { padding: 120px 0; background: var(--white); }
.salones__header { text-align: center; margin-bottom: 60px; }
.salones__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.salon-card { background: var(--dark); border-radius: 14px; padding: 44px 40px; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.salon-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.salon-card__city { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 5px 14px; border-radius: 6px; margin-bottom: 16px; }
.salon-card h3 { font-size: 26px; color: #fff; margin-bottom: 24px; font-weight: 500; }
.salon-card__list li { padding: 9px 0; font-size: 15px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.salon-card__list li:last-child { border-bottom: none; }
.salon-card__list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

.types { position: relative; padding: 120px 0; background: var(--dark-2); overflow: hidden; }
.types__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.05; }
.types__inner { position: relative; z-index: 2; }
.types__header { text-align: center; margin-bottom: 60px; }
.types__title { font-size: 42px; color: #fff; margin-bottom: 12px; }
.types__subtitle { font-size: 17px; color: rgba(255,255,255,0.5); }
.types__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.type-item { text-align: center; padding: 40px 16px; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; transition: var(--transition); background: rgba(255,255,255,0.02); }
.type-item:hover { border-color: rgba(186,114,28,0.4); background: rgba(186,114,28,0.08); transform: translateY(-4px); }
.type-item__icon { width: 48px; height: 48px; margin: 0 auto 18px; }
.type-item__icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.type-item__name { font-size: 12px; font-weight: 600; color: #fff; letter-spacing: 2px; text-transform: uppercase; }
.types__capacity { text-align: center; margin-top: 56px; font-size: 16px; color: rgba(255,255,255,0.5); padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.types__capacity strong { font-family: var(--font-heading); font-size: 58px; font-weight: 700; color: var(--gold); display: inline-block; margin: 0 6px; line-height: 1; vertical-align: middle; }

.cta-eventos { padding: 120px 0; background: var(--white); }
.cta-eventos__content { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-eventos__content h3 { font-size: 40px; color: var(--dark); font-weight: 600; line-height: 1.15; margin-bottom: 12px; }
.cta-eventos__content h3 em { font-style: italic; font-weight: 400; color: var(--gold); }
.cta-eventos__content > p { font-size: 17px; color: var(--gray); margin-bottom: 40px; line-height: 1.8; }
.cta-eventos__info { display: flex; justify-content: center; gap: 48px; margin-bottom: 44px; }
.cta-eventos__info a { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--dark); font-weight: 500; transition: var(--transition); }
.cta-eventos__info a:hover { color: var(--gold); }
.cta-eventos__info svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }

@media(max-width:768px) {
  .hero-eventos { height: 45vh; }
  .hero-eventos__desc { display: none; }
  .hero-eventos__title { font-size: 36px; }
  .hero-eventos__content { padding: 0 24px 40px; }
  .salones { padding: 80px 0; }
  .salones__grid { grid-template-columns: 1fr; }
  .salon-card { padding: 32px 28px; }
  .types { padding: 80px 0; }
  .types__grid { grid-template-columns: repeat(2, 1fr); }
  .types__title { font-size: 32px; }
  .types__capacity strong { font-size: 36px; }
  .cta-eventos { padding: 80px 0; }
  .cta-eventos__content h3 { font-size: 30px; }
  .cta-eventos__info { flex-direction: column; align-items: center; gap: 16px; }
}

/* ====================================================
   CONTACTO — HERO + CARDS + INTL + FORM + MAPA
   ==================================================== */
.hero-contacto { position: relative; height: 50vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-contacto__bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 14s ease-out forwards; }
.hero-contacto__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.12) 100%); }
.hero-contacto__content { position: relative; z-index: 2; padding: 0 60px 60px; max-width: 750px; }
.hero-contacto__tag { display: inline-flex; align-items: center; gap: 16px; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero-contacto__tag::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-contacto__title { font-size: 56px; font-weight: 600; color: #fff; line-height: 1.08; }

.contact-section { padding: 110px 0; }
.contact-section__header { margin-bottom: 60px; }
.contact-section__header h2 { font-size: 42px; font-weight: 600; max-width: 500px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.contact-card { background: var(--white); border-radius: 14px; padding: 44px 32px; box-shadow: 0 4px 40px rgba(0,0,0,0.05); transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s cubic-bezier(.25,.8,.25,1); position: relative; overflow: hidden; }
.contact-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(.25,.8,.25,1); }
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.contact-card:hover::after { transform: scaleX(1); }
.contact-card__icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(186,114,28,0.1) 0%, rgba(186,114,28,0.05) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.contact-card__icon svg { width: 22px; height: 22px; color: var(--gold); }
.contact-card h4 { font-size: 18px; margin-bottom: 12px; color: var(--dark); }
.contact-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }
.contact-card a { color: var(--text); font-weight: 500; transition: color 0.3s; }
.contact-card a:hover { color: var(--gold); }

.intl-section { padding: 120px 0; position: relative; overflow: hidden; background: var(--dark); }
.intl-section__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.08; }
.intl-section__content { position: relative; z-index: 2; }
.intl-section__header { margin-bottom: 60px; }
.intl-section__header h2 { font-size: 42px; font-weight: 600; color: var(--white); max-width: 500px; }
.intl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.intl-grid--bottom { grid-template-columns: repeat(3, 1fr); margin-top: 20px; }

.intl-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 32px 28px; transition: all 0.4s cubic-bezier(.25,.8,.25,1); position: relative; overflow: hidden; }
.intl-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); opacity: 0; transition: opacity 0.4s; }
.intl-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(186,114,28,0.3); transform: translateY(-4px); }
.intl-card:hover::before { opacity: 1; }
.intl-card h4 { font-family: var(--font-body); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 10px; }
.intl-card p { font-size: 18px; color: var(--white); font-weight: 300; }
.intl-card a { color: var(--white); }
.intl-card a:hover { color: var(--gold); }

.form-section { padding: 120px 0; background: var(--gray-light); }
.form-section__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.form-section__left { padding-top: 20px; }
.form-section__left h2 { font-size: 42px; font-weight: 600; margin-bottom: 20px; max-width: 400px; }
.form-section__left p { font-size: 16px; color: var(--gray); line-height: 1.8; max-width: 380px; margin-bottom: 30px; }
.form-section__detail { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-top: 1px solid #e0e0e0; font-size: 14px; color: var(--text); }
.form-section__detail svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.contact-form-wrap { background: var(--white); border-radius: 14px; padding: 56px 48px; box-shadow: 0 8px 60px rgba(0,0,0,0.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 0; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--dark); margin-bottom: 10px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 16px 20px; font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--white); border: 1px solid #e0e0e0; border-radius: 8px; outline: none; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(186,114,28,0.08); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }

.map-section { padding: 100px 0 0; }
.map-section__header { margin-bottom: 50px; }
.map-section__header h2 { font-size: 42px; font-weight: 600; max-width: 500px; }
.map-section__frame { width: 100%; height: 500px; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.map-section__frame iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(20%); }

@media(max-width:1024px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .intl-grid { grid-template-columns: repeat(2, 1fr); }
  .intl-grid--bottom { grid-template-columns: repeat(2, 1fr); }
  .form-section__inner { grid-template-columns: 1fr; gap: 50px; }
}
@media(max-width:768px) {
  .hero-contacto { height: 45vh; }
  .hero-contacto__title { font-size: 36px; }
  .hero-contacto__content { padding: 0 24px 40px; }
  .contact-section { padding: 80px 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-section__header h2 { font-size: 32px; }
  .intl-section { padding: 80px 0; }
  .intl-grid, .intl-grid--bottom { grid-template-columns: 1fr; }
  .intl-section__header h2 { font-size: 32px; }
  .form-section { padding: 80px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 24px; }
  .form-section__left h2 { font-size: 32px; }
  .map-section { padding: 80px 0 0; }
  .map-section__header h2 { font-size: 32px; }
  .map-section__frame { height: 320px; border-radius: 10px; }
}

/* ====================================================
   BLOG — HERO + INTRO + ARTICLES + GRID
   ==================================================== */
.hero-blog { position: relative; height: 50vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-blog__bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 14s ease-out forwards; }
.hero-blog__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.12) 100%); }
.hero-blog__content { position: relative; z-index: 2; padding: 0 60px 60px; max-width: 750px; }
.hero-blog__title { font-size: 56px; font-weight: 600; color: #fff; line-height: 1.08; margin-bottom: 16px; }
.hero-blog__desc { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }

.blog-intro { padding: 100px 0 60px; text-align: center; }
.blog-intro p { max-width: 640px; margin: 0 auto; font-size: 16px; line-height: 1.85; color: var(--gray); }

.hero-article { position: relative; border-radius: 14px; overflow: hidden; display: block; height: 500px; margin-bottom: 60px; }
.hero-article img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.4,0,.2,1); }
.hero-article:hover img { transform: scale(1.04); }
.hero-article__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 55%); border-radius: 14px; }
.hero-article__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 50px; z-index: 2; }
.hero-article__date { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.hero-article__title { font-size: 36px; font-weight: 600; color: #fff; line-height: 1.15; margin-bottom: 14px; max-width: 650px; }
.hero-article__excerpt { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 560px; margin-bottom: 24px; }
.btn-read { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #fff; padding: 14px 36px; border: 1px solid rgba(255,255,255,0.3); transition: var(--transition); }
.btn-read:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 100px; }
.blog-card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: all 0.4s cubic-bezier(.25,.46,.45,.94); }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.blog-card__img { height: 220px; overflow: hidden; position: relative; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.4,0,.2,1); }
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff; padding: 5px 14px; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 4px; z-index: 2; }
.blog-card__body { padding: 24px 26px 28px; }
.blog-card__date { font-size: 12px; color: var(--gray); letter-spacing: 1px; margin-bottom: 10px; display: block; }
.blog-card__title { font-size: 19px; font-weight: 600; color: var(--dark); line-height: 1.3; margin-bottom: 10px; }
.blog-card__excerpt { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
.blog-card__link { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.blog-card__link:hover { gap: 12px; }

.cta-newsletter { position: relative; padding: 100px 0; overflow: hidden; }
.cta-newsletter__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-newsletter__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(186,114,28,0.92) 0%, rgba(157,106,38,0.95) 100%); }
.cta-newsletter__content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-newsletter__text h3 { font-size: 38px; color: #fff; font-weight: 500; line-height: 1.2; margin-bottom: 8px; }
.cta-newsletter__text p { font-size: 16px; color: rgba(255,255,255,0.75); }

@media(max-width:1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-newsletter__content { flex-direction: column; text-align: center; }
}
@media(max-width:768px) {
  .hero-blog { height: 45vh; }
  .hero-blog__desc { display: none; }
  .hero-blog__title { font-size: 36px; }
  .hero-blog__content { padding: 0 24px 40px; }
  .blog-intro { padding: 70px 0 40px; }
  .hero-article { height: 380px; }
  .hero-article__content { padding: 28px; }
  .hero-article__title { font-size: 26px; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-newsletter__text h3 { font-size: 28px; }
}

/* ====================================================
   FAQ PAGE — HERO + INTRO + SECCIONES + CTA
   ==================================================== */
.hero-faq { position: relative; height: 50vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-faq__bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 14s ease-out forwards; }
.hero-faq__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.12) 100%); }
.hero-faq__content { position: relative; z-index: 2; padding: 0 60px 60px; max-width: 750px; }
.hero-faq__title { font-size: 56px; font-weight: 600; color: #fff; line-height: 1.08; margin-bottom: 16px; }
.hero-faq__desc { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }

.faq-intro { padding: 80px 0 40px; text-align: center; }
.faq-intro p { max-width: 640px; margin: 16px auto 0; font-size: 16px; line-height: 1.85; color: var(--gray); }

.faq-section { padding: 60px 0 100px; background: var(--white); }
.faq-section-inner { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }

.faq-group { }
.faq-group__title { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--gold); display: inline-block; }
.faq-group__items { border-top: 1px solid #e8e0d6; }

.faq-item__btn { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; border-bottom: 1px solid #e8e0d6; }
.faq-item__btn:hover { color: var(--gold); }
.faq-item__btn .faq-item__icon { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid #d4c4b0; display: flex; align-items: center; justify-content: center; transition: all 0.25s; position: relative; }
.faq-item__btn .faq-item__icon::before,
.faq-item__btn .faq-item__icon::after { content: ''; position: absolute; background: var(--gray); border-radius: 2px; transition: all 0.25s; }
.faq-item__btn .faq-item__icon::before { width: 10px; height: 1.5px; }
.faq-item__btn .faq-item__icon::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-item__btn .faq-item__icon { border-color: var(--gold); background: var(--gold); }
.faq-item.open .faq-item__btn .faq-item__icon::before,
.faq-item.open .faq-item__btn .faq-item__icon::after { background: #fff; }
.faq-item.open .faq-item__btn .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item__answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-item__answer { max-height: 300px; }
.faq-item__answer-inner { padding: 4px 0 24px; font-size: 15px; color: var(--gray); line-height: 1.75; }

.cta-faq { position: relative; padding: 100px 0; overflow: hidden; text-align: center; }
.cta-faq__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-faq__overlay { position: absolute; inset: 0; background: rgba(20,20,20,0.82); }
.cta-faq .container { position: relative; z-index: 2; }
.cta-faq__content h3 { font-family: var(--font-heading); font-size: 38px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.cta-faq__content p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

.cta-contact-info { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-contact-info a { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 500; transition: color 0.3s; }
.cta-contact-info a:hover { color: var(--gold); }
.cta-contact-info svg { flex-shrink: 0; }

@media(max-width:768px) {
  .hero-faq { height: 45vh; }
  .hero-faq__desc { display: none; }
  .hero-faq__title { font-size: 36px; }
  .hero-faq__content { padding: 0 24px 40px; }
  .faq-section { padding: 40px 0 80px; }
  .cta-faq { padding: 80px 0; }
  .cta-faq__content h3 { font-size: 28px; }
  .cta-contact-info { flex-direction: column; gap: 18px; }
}

/* ====================================================
   PORTAL AGENCIAS — HERO + BENEFICIOS + PROCESO + VALORES
   ==================================================== */
.hero-agencias { position: relative; height: 50vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-agencias__bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 14s ease-out forwards; }
.hero-agencias__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.12) 100%); }
.hero-agencias__content { position: relative; z-index: 2; padding: 0 60px 60px; max-width: 750px; }
.hero-agencias__title { font-size: 56px; font-weight: 600; color: #fff; line-height: 1.08; margin-bottom: 16px; }
.hero-agencias__desc { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }

.intro-split__text { max-width: 600px; display: flex; flex-direction: column; justify-content: center; padding: 80px 60px; }
.intro-split__text blockquote { border-left: 3px solid var(--gold); padding-left: 20px; font-size: 17px; font-style: italic; color: var(--gold-dark); margin-top: 28px; line-height: 1.6; }

.beneficios-section { padding: 120px 0; background: var(--white); }
.beneficios-section__header { text-align: center; margin-bottom: 60px; }
.beneficios-section__header h2 { font-family: var(--font-heading); font-size: 42px; font-weight: 600; color: var(--dark); margin-top: 12px; }
.beneficios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.beneficio-card { background: var(--white); border-radius: 14px; padding: 40px 32px; box-shadow: 0 4px 40px rgba(0,0,0,0.05); transition: var(--transition); border: 1px solid transparent; }
.beneficio-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.1); border-color: rgba(186,114,28,0.15); }
.beneficio-card__icon { width: 52px; height: 52px; background: rgba(186,114,28,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.beneficio-card__icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.beneficio-card h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
.beneficio-card p { font-size: 15px; color: var(--gray); line-height: 1.75; }

.proceso-section { padding: 120px 0; background: var(--cream); }
.proceso-section__header { text-align: center; margin-bottom: 60px; }
.proceso-section__header h2 { font-family: var(--font-heading); font-size: 42px; font-weight: 600; color: var(--dark); margin-top: 12px; }
.proceso-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.proceso-step { text-align: center; padding: 40px 24px; background: var(--white); border-radius: 14px; box-shadow: 0 4px 24px rgba(0,0,0,0.05); transition: var(--transition); position: relative; }
.proceso-step:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.proceso-step__number { font-family: var(--font-heading); font-size: 48px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 18px; opacity: 0.6; }
.proceso-step h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
.proceso-step p { font-size: 14px; color: var(--gray); line-height: 1.7; }

.valores-dark { padding: 120px 0; background: var(--dark); }
.valores-dark__header { text-align: center; margin-bottom: 60px; }
.valores-dark__header h2 { font-family: var(--font-heading); font-size: 42px; font-weight: 600; color: #fff; margin-top: 12px; }
.valores-dark-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.valor-dark-item { text-align: center; padding: 36px 20px; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; background: rgba(255,255,255,0.02); transition: var(--transition); }
.valor-dark-item:hover { border-color: rgba(186,114,28,0.4); background: rgba(186,114,28,0.07); transform: translateY(-4px); }
.valor-dark-item__icon { width: 48px; height: 48px; margin: 0 auto 18px; }
.valor-dark-item__icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.valor-dark-item h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.valor-dark-item p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

@media(max-width:1100px) { .valores-dark-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:1024px) { .beneficios-grid { grid-template-columns: repeat(2, 1fr); } .proceso-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:768px) {
  .hero-agencias { height: 45vh; }
  .hero-agencias__desc { display: none; }
  .hero-agencias__title { font-size: 36px; }
  .hero-agencias__content { padding: 0 24px 40px; }
  .intro-split__text { padding: 50px 24px; }
  .beneficios-section { padding: 80px 0; }
  .beneficios-grid { grid-template-columns: 1fr; }
  .proceso-section { padding: 80px 0; }
  .proceso-grid { grid-template-columns: 1fr; }
  .valores-dark { padding: 80px 0; }
  .valores-dark-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====================================================
   PORTAL EMPRESAS — HERO + SERVICIOS + INFO-BAR + CONTACTO MINI
   ==================================================== */
.hero-portal { position: relative; height: 50vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-portal__bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 14s ease-out forwards; }
.hero-portal__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.12) 100%); }
.hero-portal__content { position: relative; z-index: 2; padding: 0 60px 60px; max-width: 750px; }
.hero-portal__title { font-size: 56px; font-weight: 600; color: #fff; line-height: 1.08; margin-bottom: 16px; }
.hero-portal__title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.7); }
.hero-portal__desc { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }

.servicios-dark { padding: 120px 0; background: var(--dark); }
.servicios-dark__content { max-width: 760px; margin: 0 auto; }
.servicios-dark__content h2 { font-family: var(--font-heading); font-size: 42px; font-weight: 600; color: #fff; margin-bottom: 48px; }
.servicios-dark__content h2 span { color: var(--gold); }

.servicio-item { display: flex; align-items: flex-start; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.servicio-item:last-child { border-bottom: none; }
.servicio-item__check { width: 28px; height: 28px; flex-shrink: 0; background: rgba(186,114,28,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.servicio-item__check svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2.5; }
.servicio-item p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin: 0; }

.info-bar { padding: 80px 0; background: var(--cream); }
.info-bar__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.info-bar__item h3 { font-family: var(--font-heading); font-size: 28px; font-weight: 600; color: var(--dark); margin-bottom: 16px; }
.info-bar__item h3 span { color: var(--gold); }
.info-bar__item p { font-size: 16px; color: var(--gray); line-height: 1.8; }

.contacto-mini { padding: 100px 0; background: var(--white); }
.contacto-mini__header { text-align: center; margin-bottom: 50px; }
.contacto-mini__header h2 { font-family: var(--font-heading); font-size: 38px; font-weight: 600; color: var(--dark); margin-top: 12px; }
.contacto-mini__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 900px; margin: 0 auto; }

.contacto-card { background: var(--white); border-radius: 14px; padding: 36px 28px; box-shadow: 0 4px 40px rgba(0,0,0,0.05); text-align: center; transition: var(--transition); border: 1px solid transparent; }
.contacto-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: rgba(186,114,28,0.15); }
.contacto-card__icon { width: 50px; height: 50px; background: rgba(186,114,28,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.contacto-card__icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contacto-card h4 { font-family: var(--font-heading); font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.contacto-card p { font-size: 15px; color: var(--gray); }
.contacto-card a { color: var(--text); font-weight: 500; transition: color 0.3s; }
.contacto-card a:hover { color: var(--gold); }

@media(max-width:768px) {
  .hero-portal { height: 45vh; }
  .hero-portal__desc { display: none; }
  .hero-portal__title { font-size: 36px; }
  .hero-portal__content { padding: 0 24px 40px; }
  .servicios-dark { padding: 80px 0; }
  .servicios-dark__content h2 { font-size: 30px; }
  .info-bar { padding: 60px 0; }
  .info-bar__grid { grid-template-columns: 1fr; gap: 36px; }
  .contacto-mini { padding: 80px 0; }
  .contacto-mini__grid { grid-template-columns: 1fr; }
}

/* ====================================================
   PRE CHECK-IN — HERO + INTRO + STEPS + FORM + BENEFITS
   ==================================================== */
.hero-precheckin { position: relative; height: 50vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-precheckin__bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 14s ease-out forwards; }
.hero-precheckin__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.12) 100%); }
.hero-precheckin__content { position: relative; z-index: 2; padding: 0 60px 60px; max-width: 750px; }
.hero-precheckin__tag { display: inline-flex; align-items: center; gap: 16px; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero-precheckin__tag::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-precheckin__title { font-size: 56px; font-weight: 600; color: #fff; line-height: 1.08; margin-bottom: 16px; }
.hero-precheckin__desc { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }

.intro-section { padding: 90px 0; background: var(--white); }
.intro-section__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.intro-section__inner p { font-size: 17px; color: var(--gray); line-height: 1.85; margin-top: 20px; }

.steps-section { padding: 100px 0; background: var(--cream); }
.steps-section__header { text-align: center; margin-bottom: 60px; }
.steps-section__header h2 { font-family: var(--font-heading); font-size: 42px; font-weight: 600; color: var(--dark); margin-top: 12px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.step-card { background: var(--white); border-radius: 14px; padding: 44px 32px; box-shadow: 0 4px 40px rgba(0,0,0,0.05); text-align: center; transition: var(--transition); }
.step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.1); }
.step-card__number { font-family: var(--font-heading); font-size: 54px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 20px; opacity: 0.55; }
.step-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
.step-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }

.precheckin-form-wrap { max-width: 820px; margin: 0 auto; background: var(--white); border-radius: 14px; padding: 56px 48px; box-shadow: 0 8px 60px rgba(0,0,0,0.06); }

.form-section__header { text-align: center; margin-bottom: 56px; }
.form-section__header h2 { font-family: var(--font-heading); font-size: 42px; font-weight: 600; color: var(--dark); margin-top: 12px; }
.form-section__header p { font-size: 16px; color: var(--gray); margin-top: 14px; max-width: 540px; margin-left: auto; margin-right: auto; }

.benefits-section { padding: 100px 0; background: var(--cream); }
.benefits-section__header { text-align: center; margin-bottom: 56px; }
.benefits-section__header h2 { font-family: var(--font-heading); font-size: 38px; font-weight: 600; color: var(--dark); margin-top: 12px; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.benefit-card { background: var(--white); border-radius: 14px; padding: 36px 24px; box-shadow: 0 4px 28px rgba(0,0,0,0.05); text-align: center; transition: var(--transition); }
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 14px 44px rgba(0,0,0,0.1); }
.benefit-card__icon { width: 52px; height: 52px; background: rgba(186,114,28,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.benefit-card__icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.benefit-card h4 { font-family: var(--font-heading); font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

@media(max-width:1024px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:768px) {
  .hero-precheckin { height: 45vh; }
  .hero-precheckin__desc { display: none; }
  .hero-precheckin__title { font-size: 36px; }
  .hero-precheckin__content { padding: 0 24px 40px; }
  .intro-section { padding: 70px 0; }
  .steps-section { padding: 80px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .precheckin-form-wrap { padding: 36px 24px; }
  .benefits-section { padding: 80px 0; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

/* ====================================================
   UTILS
   ==================================================== */
.btn-gold--full { width: 100%; text-align: center; display: block; }

/* ====================================================
   HOTELES — PLUS SECTION + CTA-GOLD CON IMAGEN
   ==================================================== */
.hp-section { padding: 120px 0; background: var(--dark); position: relative; overflow: hidden; }
.hp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.hp-row .hp-hotel { margin-bottom: 0; border-radius: 16px; overflow: hidden; }
.hp-row .hp-hotel-inner { display: grid; grid-template-columns: 1fr; min-height: auto; direction: ltr !important; }
.hp-row .hp-hotel:nth-child(even) .hp-hotel-inner { direction: ltr !important; }
.hp-row .hp-img { height: 380px; }
@media(max-width:991px) { .hp-row { grid-template-columns: 1fr; } }

.cta-gold { position: relative; padding: 100px 0; overflow: hidden; }
.cta-gold__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-gold__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(186,114,28,0.92) 0%, rgba(157,106,38,0.95) 100%); }
.cta-gold__content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-gold__text h3 { font-size: 38px; color: #fff; font-weight: 500; line-height: 1.2; margin-bottom: 8px; }
.cta-gold__text p { font-size: 16px; color: rgba(255,255,255,0.75); }
.btn-white { display: inline-block; padding: 16px 44px; background: #fff; color: var(--dark); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; transition: var(--transition); white-space: nowrap; }
.btn-white:hover { background: var(--dark); color: #fff; }
@media(max-width:768px) { .cta-gold__content { flex-direction: column; text-align: center; } .cta-gold__text h3 { font-size: 28px; } }

/* ====================================================
   HOTEL AMPLIADO — ABOUT GRID (diseño referencia)
   ==================================================== */
.hotel-about--grid { padding: 120px 0; }
.hotel-about--grid .hotel-about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.hotel-about--grid .hotel-about__text p { font-size: 16px; color: var(--gray); line-height: 1.9; margin-bottom: 18px; }
.hotel-about--grid .hotel-about__text h2 { font-size: 40px; font-weight: 600; margin-bottom: 28px; line-height: 1.2; }
.hotel-about--grid .hotel-about__address { display: flex; align-items: flex-start; gap: 12px; margin-top: 32px; padding-top: 32px; border-top: 1px solid #eee; font-size: 14px; color: var(--gray); line-height: 1.6; }
.hotel-about--grid .hotel-about__address svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; flex-shrink: 0; margin-top: 3px; }
.hotel-about--grid .hotel-about__img { border-radius: 16px; overflow: hidden; position: relative; }
.hotel-about--grid .hotel-about__img img { width: 100%; height: 480px; object-fit: cover; transition: transform 0.6s cubic-bezier(.25,.8,.25,1); }
.hotel-about--grid .hotel-about__img:hover img { transform: scale(1.03); }
@media(max-width:1024px) { .hotel-about--grid .hotel-about__grid { gap: 50px; } }
@media(max-width:768px) {
  .hotel-about--grid { padding: 80px 0; }
  .hotel-about--grid .hotel-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .hotel-about--grid .hotel-about__text h2 { font-size: 32px; }
  .hotel-about--grid .hotel-about__img img { height: 320px; }
}

/* ====================================================
   HOTEL AMPLIADO — AMENIDADES EN TARJETAS
   ==================================================== */
.amenities-section { padding: 120px 0; background: var(--gray-light); }
.amenities-section__header { margin-bottom: 60px; }
.amenities-section__header h2 { font-size: 40px; font-weight: 600; }
.amenities-grid--cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.amenity-card { display: flex; align-items: center; gap: 16px; padding: 22px 20px; background: var(--white); border-radius: 12px; transition: all 0.4s cubic-bezier(.25,.8,.25,1); }
.amenity-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.amenity-card__icon { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(186,114,28,0.08); border-radius: 50%; }
.amenity-card__icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
.amenity-card span { font-size: 13px; font-weight: 500; color: var(--dark); line-height: 1.35; }
@media(max-width:1024px) { .amenities-grid--cards { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:768px) { .amenities-section { padding: 80px 0; } .amenities-grid--cards { grid-template-columns: repeat(2, 1fr); } .amenities-section__header h2 { font-size: 32px; } }
@media(max-width:480px) { .amenities-grid--cards { grid-template-columns: 1fr; } }

/* ====================================================
   HOTEL AMPLIADO — GALERIA SWIPER
   ==================================================== */
.hotel-swiper-section { padding: 0; overflow: hidden; }
.hotel-swiper .swiper-slide img { width: 100%; height: 480px; object-fit: cover; transition: transform 0.5s; display: block; }
.hotel-swiper .swiper-slide:hover img { transform: scale(1.02); }
@media(max-width:768px) { .hotel-swiper .swiper-slide img { height: 300px; } }

/* ====================================================
   HOTEL AMPLIADO — MAPA CON TITULO
   ==================================================== */
.location-section { padding: 120px 0; }
.location-section__header { margin-bottom: 50px; }
.location-section__header h2 { font-size: 40px; font-weight: 600; }
.location-map { width: 100%; height: 420px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.location-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(20%); }
@media(max-width:768px) { .location-section { padding: 80px 0; } .location-section__header h2 { font-size: 32px; } .location-map { height: 300px; border-radius: 10px; } }

/* ====================================================
   HOTEL AMPLIADO — OTROS HOTELES DARK (5 columnas)
   ==================================================== */
.other-hotels--dark { padding: 120px 0; background: var(--dark); }
.other-hotels--dark .other-hotels__header { margin-bottom: 60px; }
.other-hotels--dark .other-hotels__header h2 { font-size: 40px; font-weight: 600; color: var(--white); }
.other-hotels--dark .other-hotels__grid--5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.other-hotels--dark .other-hotel-card { aspect-ratio: 3/4; border-radius: 12px; }
.other-hotels--dark .other-hotel-card:hover img { transform: scale(1.08); }
.other-hotels--dark .other-hotel-card__overlay { background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%); transition: background 0.4s; }
.other-hotels--dark .other-hotel-card:hover .other-hotel-card__overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 70%); }
@media(max-width:1024px) { .other-hotels--dark .other-hotels__grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:768px) { .other-hotels--dark { padding: 80px 0; } .other-hotels--dark .other-hotels__header h2 { font-size: 32px; } .other-hotels--dark .other-hotels__grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px) { .other-hotels--dark .other-hotels__grid--5 { grid-template-columns: 1fr; } }

/* ====================================================
   HOTEL AMPLIADO — QUICK BAR CLARO
   ==================================================== */
.quick-bar--light { border-top: 3px solid var(--gold); background: var(--white); box-shadow: 0 8px 40px rgba(0,0,0,0.06); position: relative; z-index: 10; }
.quick-bar--light .quick-bar__inner { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; flex-wrap: wrap; }
.quick-bar--light .quick-bar__item { text-align: center; flex: 1; position: relative; }
.quick-bar--light .quick-bar__item + .quick-bar__item::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 40px; background: #eee; }
.quick-bar--light .quick-bar__label { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 6px; font-weight: 500; }
.quick-bar--light .quick-bar__value { font-family: var(--font-heading); font-size: 17px; font-weight: 600; color: var(--dark); }
.quick-bar--light .quick-bar__cta { flex: 0 0 auto; padding-left: 32px; }
@media(max-width:768px) {
  .quick-bar--light .quick-bar__inner { padding: 20px; }
  .quick-bar--light .quick-bar__item { flex: 0 0 45%; }
  .quick-bar--light .quick-bar__item + .quick-bar__item::before { display: none; }
  .quick-bar--light .quick-bar__cta { flex: 0 0 100%; text-align: center; margin-top: 10px; padding-left: 0; }
}
