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

    :root {
      --primary: #418FFC;
      --primary-dark: #3575CE;
      --accent: #D85A30;
      --blue: #185FA5;
      --text: #1a1a1a;
      --text-muted: #6b6b6b;
      --border: rgba(0,0,0,0.1);
      --border-hover: rgba(0,0,0,0.22);
      --bg: #f7f6f2;
      --surface: #ffffff;
      --radius: 12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
    }

    /* ── NAV ── */
    nav {
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
    }

    .nav-logo {
      text-decoration: none;
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .nav-logo-img {
      height: 48px;
      width: auto;
      object-fit: contain;
      display: block;
    }
    .footer-logo-img {
      height: 48px;
      width: auto;
      object-fit: contain;
      display: block;
      filter: none;
    }
    .footer-brand-text {
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
    }

    .nav-links { display: flex; gap: 4px; }

    .nav-link {
      padding: 7px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      color: var(--text-muted);
      border: 1px solid transparent;
      cursor: pointer;
      background: none;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
    }
    .nav-link:hover { background: #f0efe9; color: var(--text); }
    .nav-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }

    /* ── NAV DESTINOS — MEGA MENÚ JERÁRQUICO ── */
    .nav-destinos-wrap {
      position: relative;
    }

    .nav-destinos-wrap.open .destinos-dropdown {
      display: flex;
    }

    .destinos-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--surface);
      border: 1px solid var(--border-hover);
      border-radius: var(--radius);
      box-shadow: 0 12px 40px rgba(0,0,0,.14);
      z-index: 600;
      padding: 1.2rem 1.4rem 1.4rem;
      min-width: 560px;
      max-width: 800px;
      width: max-content;
    }

    /* Triángulo */
    .destinos-dropdown::before {
      content: '';
      position: absolute;
      top: -7px;
      left: 50%;
      transform: translateX(-50%);
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 7px solid var(--border-hover);
    }
    .destinos-dropdown::after {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%);
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 7px solid var(--surface);
    }

    /* Fila de zonas */
    .mega-zonas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 0;
    }

    /* Columna de zona */
    .mega-zona-col {
      padding: 0 1rem;
      border-right: 1px solid var(--border);
    }
    .mega-zona-col:first-child { padding-left: 0; }
    .mega-zona-col:last-child  { padding-right: 0; border-right: none; }

    /* Título de zona */
    .mega-zona-title {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--text-muted);
      padding-bottom: .5rem;
      margin-bottom: .6rem;
      border-bottom: 2px solid var(--primary);
      display: block;
      white-space: nowrap;
    }

    /* Botón de país */
    .mega-pais-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 5px 0;
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      white-space: nowrap;
      transition: color .12s;
      gap: 8px;
    }
    .mega-pais-btn:hover { color: var(--primary); }

    .mega-pais-count {
      font-size: 11px;
      font-weight: 400;
      color: var(--text-muted);
      background: var(--bg);
      padding: 1px 6px;
      border-radius: 8px;
      flex-shrink: 0;
    }
    .mega-pais-btn:hover .mega-pais-count {
      background: #e0ecff;
      color: var(--primary);
    }

    /* Responsive móvil */
    @media (max-width: 680px) {
      .destinos-dropdown {
        position: fixed;
        top: 62px;
        left: 1rem;
        right: 1rem;
        transform: none;
        min-width: unset;
        max-width: unset;
        width: auto;
      }
      .mega-zonas-grid {
        grid-template-columns: 1fr 1fr;
      }
      .mega-zona-col {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: .8rem 0;
      }
      .mega-zona-col:last-child { border-bottom: none; }
    }

    /* ── PAGES ── */
    .page { display: none; }
    .page.active { display: block; }

    /* ── HERO SEARCH ── */
    .hero {
      text-align: center;
      padding: 4rem 1rem 2rem;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
    }

    .hero-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      letter-spacing: -1px;
      line-height: 1.1;
      margin-bottom: 0.4rem;
    }

    .hero-sub {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 1.8rem;
    }

    .search-wrap {
      position: relative;
      max-width: 580px;
      margin: 0 auto;
    }

    .search-box {
      width: 100%;
      padding: 15px 52px 15px 20px;
      font-size: 16px;
      font-family: 'DM Sans', sans-serif;
      border: 1.5px solid var(--border-hover);
      border-radius: 30px;
      outline: none;
      background: var(--surface);
      color: var(--text);
      transition: border-color 0.15s, box-shadow 0.15s;
    }

    .search-box:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(65,143,252,0.1);
    }

    .search-box::placeholder { color: #aaa; }

    .search-icon {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
      color: var(--text-muted);
      pointer-events: none;
    }

    /* ── RESULTS ── */
    .results-meta {
      max-width: 920px;
      margin: 1rem auto 0.6rem;
      padding: 0 1.5rem;
      font-size: 13px;
      color: var(--text-muted);
    }

    .results {
      max-width: 920px;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    /* ── HOTEL CARD ── */
    .card {
      display: grid;
      grid-template-columns: 200px 1fr 150px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--surface);
      transition: border-color 0.15s, box-shadow 0.15s;
    }

    .card:hover {
      border-color: var(--border-hover);
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }

    /* Carousel */
    .carousel {
      position: relative;
      width: 200px;
      height: 160px;
      overflow: hidden;
      flex-shrink: 0;
      background: #e0e0e0;
    }

    .carousel-inner {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .carousel-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.4s ease;
      flex-shrink: 0;
    }

    .carousel-slide.active {
      opacity: 1;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.38);
      border: none;
      color: #fff;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      z-index: 2;
    }

    .carousel-btn.prev { left: 6px; }
    .carousel-btn.next { right: 6px; }

    .carousel-dots {
      position: absolute;
      bottom: 6px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 4px;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: background 0.2s;
      border: none;
    }

    .dot.active { background: #fff; }

    .logo-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      z-index: 2;
    }

    /* Info */
    .info {
      padding: 14px 18px;
      display: flex;
      flex-direction: column;
      gap: 7px;
      min-width: 0;
    }

    .hotel-name {
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .stars { display: flex; gap: 2px; }
    .star { font-size: 13px; color: #EF9F27; }
    .star.empty { color: #ddd; }

    .badges { display: flex; gap: 6px; flex-wrap: wrap; }

    .badge {
      font-size: 11px;
      font-weight: 500;
      padding: 3px 9px;
      border-radius: 10px;
    }

    .badge-plan { background: #ddeeff; color: #0C447C; }
    .badge-cat { background: #e6f4de; color: #27500A; }
    .badge-dest { background: #f1efe8; color: #5F5E5A; }

    .desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .rate { font-size: 13px; color: var(--text-muted); }
    .rate strong { font-size: 15px; font-weight: 500; color: var(--text); }

    /* Action column */
    .action {
      padding: 14px 14px;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
      gap: 10px;
      border-left: 1px solid var(--border);
    }

    .btn-call {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 12px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      text-decoration: none;
      transition: background 0.15s;
    }

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

    .btn-web {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 9px 12px;
      background: transparent;
      color: var(--text-muted);
      border: 1px solid var(--border-hover);
      border-radius: 8px;
      cursor: pointer;
      font-size: 13px;
      font-family: 'DM Sans', sans-serif;
      transition: border-color 0.15s, color 0.15s;
    }

    .btn-web:hover { border-color: var(--primary); color: var(--primary); }

    .no-results {
      text-align: center;
      padding: 4rem 1rem;
      color: var(--text-muted);
      font-size: 15px;
    }

    /* ── FOOTER ── */
    footer {
      background: #1a1a1a;
      color: #ccc;
      padding: 3rem 2rem 1.5rem;
      margin-top: auto;
    }

    .footer-grid {
      max-width: 960px;
      margin: 0 auto 2rem;
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 2.5rem;
    }

    .footer-brand-logo {
      font-family: 'DM Serif Display', serif;
      font-size: 1.6rem;
      display: flex;
      gap: 1px;
      margin-bottom: .7rem;
      cursor: pointer;
    }
    .footer-brand-logo span:nth-child(1){color:#5CA5E8}
    .footer-brand-logo span:nth-child(2){color:#E8855A}
    .footer-brand-logo span:nth-child(3){color:#7EC87E}
    .footer-brand-logo span:nth-child(4){color:#5CA5E8}
    .footer-brand-logo span:nth-child(5){color:#E8855A}
    .footer-brand-logo span:nth-child(6){color:#4FBFA0}

    .footer-tagline { font-size: 13px; color: #888; line-height: 1.6; max-width: 220px; }

    .footer-col h4 {
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .09em;
      color: #666;
      margin-bottom: .9rem;
    }

    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

    .footer-col ul li a,
    .footer-col ul li span {
      font-size: 13px;
      color: #999;
      text-decoration: none;
      cursor: pointer;
      transition: color .15s;
    }
    .footer-col ul li a:hover,
    .footer-col ul li span:hover { color: #fff; }

    .footer-bottom {
      max-width: 960px;
      margin: 0 auto;
      border-top: 1px solid #2a2a2a;
      padding-top: 1.2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: .6rem;
    }

    .footer-bottom p { font-size: 12px; color: #555; }

    .footer-bottom-links { display: flex; gap: 18px; }
    .footer-bottom-links span {
      font-size: 12px;
      color: #555;
      cursor: pointer;
      transition: color .15s;
    }
    .footer-bottom-links span:hover { color: #ccc; }

    /* ── FLOATING PHONE BUTTON ── */
    .float-call {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 500;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #1877F2;
      color: #fff;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: 0 4px 20px rgba(24,119,242,.5);
      text-decoration: none;
      transition: background .15s, transform .15s, box-shadow .15s;
    }
    .float-call:hover {
      background: #0d5fd4;
      transform: scale(1.08);
      box-shadow: 0 6px 28px rgba(24,119,242,.6);
    }

    .float-tooltip {
      position: fixed;
      bottom: 96px;
      right: 28px;
      z-index: 500;
      background: #1a1a1a;
      color: #fff;
      font-size: 12px;
      padding: 6px 14px;
      border-radius: 20px;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .2s, transform .2s;
    }
    .float-call:hover + .float-tooltip { opacity: 1; transform: translateY(0); }

    /* ── COOKIE BANNER ── */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 400;
      background: #1a1a1a;
      color: #ddd;
      padding: 1rem 1.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.2rem;
      flex-wrap: wrap;
      border-top: 1px solid #2e2e2e;
      transform: translateY(100%);
      transition: transform .4s cubic-bezier(.4,0,.2,1);
    }
    .cookie-banner.visible { transform: translateY(0); }

    .cookie-text {
      font-size: 13px;
      line-height: 1.6;
      flex: 1;
      min-width: 260px;
    }
    .cookie-text a {
      color: #7EC8C8;
      text-decoration: underline;
      cursor: pointer;
    }

    .cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

    .btn-cookie {
      padding: 9px 20px;
      border-radius: 22px;
      font-size: 13px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      border: none;
      transition: background .15s;
    }
    .btn-cookie-accept { background: var(--primary); color: #fff; }
    .btn-cookie-accept:hover { background: var(--primary-dark); }
    .btn-cookie-reject { background: transparent; color: #aaa; border: 1px solid #444; }
    .btn-cookie-reject:hover { background: #252525; color: #ccc; }

    /* ── TERMS & PRIVACY PAGE ── */
    .terms-container {
      max-width: 760px;
      margin: 2.5rem auto 4rem;
      padding: 0 1.5rem;
    }
    .terms-header { margin-bottom: 2rem; }
    .terms-header h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      letter-spacing: -.5px;
      margin-bottom: .4rem;
    }
    .terms-header p { font-size: 13px; color: var(--text-muted); }
    .terms-section { margin-bottom: 1.8rem; }
    .terms-section h2 { font-size: 15px; font-weight: 500; margin-bottom: .5rem; }
    .terms-section p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

    /* ── CONTACT PAGE ── */
    .contact-hero {
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      padding: 3.5rem 1rem 2.8rem;
      text-align: center;
    }
    .contact-hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -.5px;
      margin-bottom: .5rem;
    }
    .contact-hero p { color: var(--text-muted); font-size: 15px; }
    .contact-container {
      max-width: 620px;
      margin: 2.5rem auto 4rem;
      padding: 0 1.5rem;
      width: 100%;
    }
    .contact-form {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem 2.2rem;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .field { display: flex; flex-direction: column; gap: 6px; }
    .field label { font-size: 13px; font-weight: 500; }
    .field input, .field select, .field textarea {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      padding: 10px 14px;
      border: 1.5px solid var(--border-hover);
      border-radius: 8px;
      background: var(--bg);
      color: var(--text);
      outline: none;
      transition: border-color .15s, box-shadow .15s;
      appearance: none; -webkit-appearance: none;
    }
    .field input:focus, .field select:focus, .field textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(65,143,252,.1);
      background: #fff;
    }
    .field textarea { resize: vertical; min-height: 100px; line-height: 1.55; }
    .field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer;
    }
    .btn-submit {
      padding: 13px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: background .15s;
      margin-top: 4px;
    }
    .btn-submit:hover { background: var(--primary-dark); }
    .success-msg {
      display: none;
      background: #e6f4de;
      color: #27500A;
      border: 1px solid #c0dd97;
      border-radius: 8px;
      padding: 14px 18px;
      font-size: 14px;
      font-weight: 500;
      text-align: center;
    }

    /* ── HERO REDESIGN ── */
    .hero-eyebrow {
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--primary);
      margin-bottom: .6rem;
    }

    .search-wrap {
      position: relative;
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      gap: 0;
    }

    .search-box {
      width: 100%;
      padding: 15px 20px;
      font-size: 16px;
      font-family: 'DM Sans', sans-serif;
      border: 1.5px solid var(--border-hover);
      border-right: none;
      border-radius: 30px 0 0 30px;
      outline: none;
      background: var(--surface);
      color: var(--text);
      transition: border-color .15s, box-shadow .15s;
    }
    .search-box:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(65,143,252,.1); }
    .search-box::placeholder { color: #aaa; }

    .search-btn {
      padding: 15px 28px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 0 30px 30px 0;
      font-size: 15px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      white-space: nowrap;
      transition: background .15s;
      flex-shrink: 0;
    }
    .search-btn:hover { background: var(--primary-dark); }

    /* ── AUTOCOMPLETE ── */
    .autocomplete-wrap { position: relative; flex: 1; }
    .autocomplete-dropdown {
      position: absolute;
      top: calc(100% + 6px);
      left: 0; right: 0;
      background: var(--surface);
      border: 1px solid var(--border-hover);
      border-radius: var(--radius);
      box-shadow: 0 8px 24px rgba(0,0,0,.1);
      z-index: 300;
      overflow: hidden;
      display: none;
    }
    .autocomplete-dropdown.open { display: block; }
    .autocomplete-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 16px;
      cursor: pointer;
      font-size: 14px;
      color: var(--text);
      transition: background .12s;
      border-bottom: 1px solid var(--border);
    }
    .autocomplete-item:last-child { border-bottom: none; }
    .autocomplete-item:hover { background: #f0faf6; }
    .autocomplete-item-icon { font-size: 18px; flex-shrink: 0; }
    .autocomplete-item-name { font-weight: 500; }
    .autocomplete-item-sub { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

    /* ── SECTION HEADERS ── */
    .section-header { text-align: center; padding: 0 1rem; margin-bottom: 1.8rem; }
    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.5rem, 3vw, 2rem);
      letter-spacing: -.5px;
      margin-bottom: .4rem;
    }
    .section-sub { font-size: 14px; color: var(--text-muted); }

    /* ── DESTINOS ── */
    .destinos-section {
      max-width: 1060px;
      margin: 3rem auto 0;
      padding: 0 1.5rem;
    }

    .destinos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 140px);
      gap: 12px;
    }

    .destino-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      display: flex;
      align-items: flex-end;
      transition: transform .22s, box-shadow .22s;
    }
    .destino-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.22); }
    .destino-card:hover .destino-overlay { background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 60%, transparent 100%); }

    .destino-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.58) 0%, rgba(0,0,0,.12) 55%, transparent 100%);
      transition: background .22s;
    }

    .destino-icon {
      display: none;
    }

    .destino-info {
      position: relative;
      z-index: 2;
      padding: 12px 16px;
      width: 100%;
    }

    .destino-name {
      font-size: 17px;
      font-weight: 500;
      color: #fff;
      text-shadow: 0 1px 6px rgba(0,0,0,.5);
      letter-spacing: -.2px;
    }

    .destino-count {
      font-size: 12px;
      color: rgba(255,255,255,.78);
      margin-top: 3px;
    }

    /* ── OPINIONES CARRUSEL ── */
    .opiniones-section {
      max-width: 1060px;
      margin: 3.5rem auto 3.5rem;
      padding: 0 1.5rem;
    }

    .opiniones-carousel {
      position: relative;
      overflow: hidden;
    }

    .opiniones-track {
      display: flex;
      transition: transform .45s cubic-bezier(.4,0,.2,1);
    }

    .opiniones-slide {
      min-width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .opinion-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.4rem 1.6rem;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .opinion-header { display: flex; align-items: center; justify-content: space-between; }
    .opinion-stars { font-size: 13px; color: #EF9F27; letter-spacing: 2px; }
    .opinion-quote { font-size: 32px; color: var(--border-hover); line-height: 1; font-family: Georgia, serif; margin-top: -4px; }
    .opinion-text { font-size: 14px; color: var(--text-muted); line-height: 1.68; flex: 1; }
    .opinion-author { display: flex; align-items: center; gap: 12px; padding-top: 8px; border-top: 1px solid var(--border); }
    .opinion-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 500; flex-shrink: 0;
    }
    .opinion-name { font-size: 14px; font-weight: 500; }
    .opinion-dest { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

    .carousel-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 1.4rem;
    }

    .carousel-arrow {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--surface);
      border: 1px solid var(--border-hover);
      color: var(--text);
      font-size: 16px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .15s, border-color .15s;
    }
    .carousel-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

    .carousel-dots-row { display: flex; gap: 6px; align-items: center; }
    .carousel-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--border-hover); border: none; cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .carousel-dot.active { background: var(--primary); transform: scale(1.3); }


    /* ── SEARCH RESULTS ── */
    .results-topbar {
      max-width: 940px;
      margin: 1.2rem auto .4rem;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: .6rem;
    }

    .results-meta { font-size: 13px; color: var(--text-muted); }
    .results-query { font-size: 15px; font-weight: 500; margin-top: 2px; }

    .btn-back-home {
      padding: 8px 18px;
      background: transparent;
      border: 1px solid var(--border-hover);
      border-radius: 20px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: border-color .15s, color .15s;
    }
    .btn-back-home:hover { border-color: var(--primary); color: var(--primary); }

    .main-result-wrap {
      max-width: 940px;
      margin: 0 auto 8px;
      padding: 0 1.5rem;
    }

    .main-result-label {
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .related-header {
      max-width: 940px;
      margin: 1.4rem auto .5rem;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: .6rem;
    }

    .related-title {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .sort-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .sort-label {
      font-size: 13px;
      color: var(--text-muted);
      white-space: nowrap;
    }

    .sort-select {
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      padding: 6px 28px 6px 10px;
      border: 1px solid var(--border-hover);
      border-radius: 8px;
      background: var(--surface);
      color: var(--text);
      cursor: pointer;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      transition: border-color .15s;
    }
    .sort-select:hover { border-color: var(--primary); }
    .sort-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(65,143,252,.1); }

    /* ── CARD FEATURED ── */
    .card.featured {
      border-color: var(--primary);
      border-width: 2px;
      box-shadow: 0 4px 24px rgba(65,143,252,.12);
    }

    /* ── PLECA OFERTA ── */
    .badge-oferta {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #E53935;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      padding: 3px 8px;
      border-radius: 4px;
      z-index: 3;
      pointer-events: none;
    }

    /* ── FILTROS EN RESULTADOS DE BÚSQUEDA ── */
    .sr-filter-bar-wrap { background: var(--surface); border-bottom: 1px solid var(--border); margin-bottom: 0; }
    .sr-filter-bar { max-width: 940px; margin: 0 auto; padding: 10px 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .sr-btn-filtros { display: flex; align-items: center; gap: 7px; background: var(--surface); border: 1.5px solid var(--primary); color: var(--primary); font-size: 13px; font-weight: 500; padding: 8px 16px; border-radius: 8px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .13s; }
    .sr-btn-filtros:hover, .sr-btn-filtros.open { background: #eef5ff; }
    .sr-ordenar-group { display: flex; align-items: center; gap: 8px; }
    .sr-ordenar-label { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
    .sr-ordenar-select { font-family: 'DM Sans', sans-serif; font-size: 13px; padding: 7px 28px 7px 10px; border: 1px solid var(--border-hover); border-radius: 7px; background: var(--bg); color: var(--text); cursor: pointer; outline: none; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 9px center; }
    .sr-ordenar-select:focus { border-color: var(--primary); outline: none; }
    .sr-filter-panel { display: none; background: var(--surface); border-bottom: 1px solid var(--border); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
    .sr-filter-panel.open { display: block; }
    .sr-fp-inner { max-width: 940px; margin: 0 auto; padding: 16px 1.5rem 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
    .sr-fp-sec { display: flex; flex-direction: column; gap: 8px; }
    .sr-fp-title { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
    .sr-fp-chips { display: flex; flex-wrap: wrap; gap: 5px; }
    .sr-fp-chip { background: var(--bg); border: 1px solid var(--border-hover); border-radius: 14px; padding: 4px 11px; font-size: 12px; color: var(--text-muted); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .12s; }
    .sr-fp-chip:hover { border-color: var(--primary); color: var(--primary); }
    .sr-fp-chip.on { background: var(--primary); border-color: var(--primary); color: #fff; }
    .sr-price-lbl { font-size: 12px; color: var(--text-muted); }
    .sr-price-lbl span { font-weight: 500; color: var(--primary); }
    .sr-price-range { width: 100%; accent-color: var(--primary); }
    .sr-price-ends { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
    .sr-fp-actions { max-width: 940px; margin: 12px auto 0; padding: 10px 1.5rem 14px; display: flex; gap: 10px; align-items: center; border-top: 1px solid var(--border); }
    .sr-btn-apply { background: var(--primary); color: #fff; border: none; border-radius: 8px; padding: 8px 20px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .13s; }
    .sr-btn-apply:hover { background: var(--primary-dark); }
    .sr-btn-reset { background: none; border: none; font-size: 12px; color: var(--text-muted); text-decoration: underline; cursor: pointer; font-family: 'DM Sans', sans-serif; }
    .sr-chips-wrap { background: var(--bg); border-bottom: 1px solid var(--border); }
    .sr-chips-inner { max-width: 940px; margin: 0 auto; padding: 8px 1.5rem; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
    .sr-chip { display: inline-flex; align-items: center; gap: 4px; background: var(--surface); border: 1px solid var(--primary); color: var(--primary); font-size: 12px; font-weight: 500; padding: 3px 10px; border-radius: 14px; }
    .sr-chip-x { cursor: pointer; font-size: 13px; opacity: .65; }
    .sr-chip-x:hover { opacity: 1; }
    .sr-chip-clear { font-size: 12px; color: var(--text-muted); text-decoration: underline; cursor: pointer; background: none; border: none; font-family: 'DM Sans', sans-serif; }
    @media (max-width: 640px) { .sr-ordenar-label { display: none; } .sr-fp-inner { grid-template-columns: 1fr; } }

    /* ── VER MÁS ── */
    .load-more-wrap {
      max-width: 940px;
      margin: 1rem auto 2rem;
      padding: 0 1.5rem;
      text-align: center;
    }
    .btn-load-more {
      padding: 10px 32px;
      background: transparent;
      border: 1.5px solid var(--border-hover);
      border-radius: 24px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: border-color .15s, color .15s, background .15s;
    }
    .btn-load-more:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: #f0faf6;
    }


    @media (max-width: 860px) {
      .destinos-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 130px); }
      .opiniones-slide { grid-template-columns: 1fr; }
      .search-wrap { max-width: 100%; }
    }

    @media (max-width: 768px) {
      .nav-logo-img { height: 40px; }
      .footer-logo-img { height: 40px; }
    }

    @media (max-width: 640px) {
      .card { grid-template-columns: 1fr; }
      .carousel { width: 100%; height: 180px; }
      .carousel-slide { min-width: 100%; }
      .action {
        border-left: none;
        border-top: 1px solid var(--border);
        flex-direction: row;
        padding: 12px 14px;
      }
      .btn-call, .btn-web { flex: 1; }
      .form-row { grid-template-columns: 1fr; }
      nav { padding: 0 1rem; }
      .nav-logo-img { height: 40px; }
      .footer-logo-img { height: 40px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .destinos-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 110px); }
      .destino-card { height: auto; }
      .opiniones-slide { grid-template-columns: 1fr; }
      .search-box { font-size: 14px; padding: 13px 16px; }
      .search-btn { padding: 13px 18px; font-size: 14px; }
    }
    @media (max-width: 420px) {
      .footer-grid { grid-template-columns: 1fr; }
    }
  

/* ── FILTROS EN RESULTADOS DE BÚSQUEDA ── */
    .bsq-filter-bar-wrap { background: #ffffff; border-bottom: 1px solid rgba(0,0,0,.09); }
    .bsq-filter-bar { max-width: 940px; margin: 0 auto; padding: 10px 1.5rem; display: flex !important; align-items: center; justify-content: space-between; gap: 12px; }
    .bsq-btn-filtros { display: flex !important; align-items: center; gap: 7px; background: #ffffff; border: 1.5px solid #418FFC; color: #418FFC; font-size: 13px; font-weight: 500; padding: 8px 16px; border-radius: 8px; cursor: pointer; font-family: 'DM Sans', sans-serif; }
    .bsq-btn-filtros:hover, .bsq-btn-filtros.open { background: #eef5ff; }
    .bsq-ordenar-group { display: flex !important; align-items: center; gap: 8px; }
    .bsq-ordenar-label { font-size: 12px; color: #6b6b6b; white-space: nowrap; }
    .bsq-ordenar-select { font-family: 'DM Sans', sans-serif; font-size: 13px; padding: 7px 28px 7px 10px; border: 1px solid rgba(0,0,0,.18); border-radius: 7px; background: #f7f6f2; color: #1a1a1a; cursor: pointer; outline: none; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 9px center; }
    .bsq-ordenar-select:focus { border-color: #418FFC; outline: none; }
    .bsq-filter-panel { display: none; background: #ffffff; border-bottom: 1px solid rgba(0,0,0,.09); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
    .bsq-filter-panel.open { display: block !important; }
    .bsq-fp-inner { max-width: 940px; margin: 0 auto; padding: 16px 1.5rem 0; display: grid !important; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
    .bsq-fp-sec { display: flex !important; flex-direction: column; gap: 8px; }
    .bsq-fp-title { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: #6b6b6b; }
    .bsq-fp-chips { display: flex !important; flex-wrap: wrap; gap: 5px; }
    .bsq-fp-chip { background: #f7f6f2; border: 1px solid rgba(0,0,0,.18); border-radius: 14px; padding: 4px 11px; font-size: 12px; color: #6b6b6b; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .12s; }
    .bsq-fp-chip:hover { border-color: #418FFC; color: #418FFC; }
    .bsq-fp-chip.on { background: #418FFC; border-color: #418FFC; color: #fff; }
    .bsq-price-lbl { font-size: 12px; color: #6b6b6b; }
    .bsq-price-lbl span { font-weight: 500; color: #418FFC; }
    .bsq-price-range { width: 100%; accent-color: #418FFC; }
    .bsq-price-ends { display: flex; justify-content: space-between; font-size: 11px; color: #6b6b6b; margin-top: 2px; }
    .bsq-fp-actions { max-width: 940px; margin: 12px auto 0; padding: 10px 1.5rem 14px; display: flex; gap: 10px; align-items: center; border-top: 1px solid rgba(0,0,0,.09); }
    .bsq-btn-apply { background: #418FFC; color: #fff; border: none; border-radius: 8px; padding: 8px 20px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; }
    .bsq-btn-apply:hover { background: #3575CE; }
    .bsq-btn-reset { background: none; border: none; font-size: 12px; color: #6b6b6b; text-decoration: underline; cursor: pointer; font-family: 'DM Sans', sans-serif; }
    .bsq-chips-wrap { background: #f7f6f2; border-bottom: 1px solid rgba(0,0,0,.09); }
    .bsq-chips-inner { max-width: 940px; margin: 0 auto; padding: 8px 1.5rem; display: flex !important; flex-wrap: wrap; gap: 6px; align-items: center; }
    .bsq-chip { display: inline-flex !important; align-items: center; gap: 4px; background: #fff; border: 1px solid #418FFC; color: #418FFC; font-size: 12px; font-weight: 500; padding: 3px 10px; border-radius: 14px; }
    .bsq-chip-x { cursor: pointer; font-size: 13px; opacity: .65; }
    .bsq-chip-x:hover { opacity: 1; }
    .bsq-chip-clear { font-size: 12px; color: #6b6b6b; text-decoration: underline; cursor: pointer; background: none; border: none; font-family: 'DM Sans', sans-serif; }
    @media (max-width: 640px) { .bsq-ordenar-label { display: none; } .bsq-fp-inner { grid-template-columns: 1fr; } }

    