    /* ================================
   PAPAGAYO QUEST HOME PREMIUM
================================ */
    :root {
      --pq-dark: #111313;
      --pq-cream: #f5f1eb;
      --pq-gold: #b8955e;
      --pq-gold-dark: #947242;
      --pq-text: #24211e;
      --pq-muted: #6f6961;
    }


    .pq-hero-premium {
      position: relative;
      height: 650px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: #000;
    }

    .pq-hero-premium::before {
      content: "";
      position: absolute;
      inset: 0;

      background:
        linear-gradient(90deg,
          rgba(0, 0, 0, .55) 0%,
          rgba(0, 0, 0, .35) 40%,
          rgba(0, 0, 0, .15) 100%),
        url("./bannerprincipal.jpeg");

      background-size: cover;
      background-position: center center;
    }

    .pq-hero-content {
      position: relative;
      z-index: 2;

      max-width: 520px;

      text-align: left;

      padding-left: 40px;
    }

    .pq-kicker {
      display: block;

      color: #c6a06b;

      font-size: 0.85rem;

      font-weight: 700;

      letter-spacing: .18em;

      text-transform: uppercase;

      margin-bottom: 18px;
    }

    .pq-hero-content h1 {
      font-family: "Times New Roman", Georgia, serif;

      font-size: clamp(3.5rem, 6vw, 5rem);

      font-weight: 400;

      line-height: .95;

      color: #fff;

      margin-bottom: 20px;

      text-transform: none;

      letter-spacing: 0;
    }

    .pq-hero-content p {
      color: #ffffff;

      font-size: 1.15rem;

      line-height: 1.6;

      max-width: 420px;

      margin-bottom: 35px;

      text-transform: none;

      letter-spacing: 0;
    }

    .pq-btn-gold {
      display: inline-flex;

      align-items: center;

      justify-content: center;

      padding: 16px 32px;

      background: #b8955e;

      color: #fff;

      text-decoration: none;

      text-transform: uppercase;

      font-size: .75rem;

      font-weight: 700;

      letter-spacing: .10em;

      border: none;

      transition: .3s;
    }

    .pq-btn-gold:hover {
      background: #947242;
      color: #fff;
    }

    /* HEADERS */
    .pq-section-header {
      text-align: center;
      max-width: 850px;
      margin: 0 auto 42px;
    }

    .pq-kicker {
      display: block;
      color: var(--pq-gold);
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .pq-section-header h2 {
      font-family: "Times New Roman", Georgia, serif;
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      font-weight: 400;
      line-height: 1;
      color: var(--pq-text);
      margin-bottom: 14px;
    }

    .pq-section-header p {
      color: var(--pq-muted);
      font-size: 1rem;
    }

    /* SIGNATURE EXPERIENCES */
    .pq-signature-section {
      padding: 80px 0 70px;
      background: var(--pq-cream);
    }

    .pq-exp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .pq-exp-card {
      background: #fff;
      text-decoration: none;
      color: var(--pq-text);
      display: block;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
      transition: .35s ease;
    }

    .pq-exp-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    }

    .pq-exp-img {
      height: 340px;
      overflow: hidden;
    }

    .pq-exp-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .5s ease;
    }

    .pq-exp-card:hover img {
      transform: scale(1.06);
    }

    .pq-exp-info {
      padding: 28px 20px 26px;
      text-align: center;
    }

    .pq-exp-info h3 {
      font-family: "Times New Roman", Georgia, serif;
      font-size: 1.35rem;
      text-transform: uppercase;
      letter-spacing: .04em;
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .pq-view-link {
      color: var(--pq-gold-dark);
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 800;
    }

    /* SPLIT SECTIONS */
    .pq-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 520px;
      background: #fff;
    }

    .pq-split-img {
      min-height: 520px;
    }

    .pq-split-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .pq-split-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 70px 10%;
    }

    .pq-split-content h2 {
      font-family: "Times New Roman", Georgia, serif;
      font-size: clamp(2.4rem, 4vw, 4.2rem);
      font-weight: 400;
      line-height: .95;
      margin-bottom: 25px;
      color: var(--pq-text);
    }

    .pq-split-content p {
      color: var(--pq-muted);
      max-width: 440px;
      margin-bottom: 30px;
    }

    .pq-boat-options {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid #e1d8cd;
      margin-top: 25px;
    }

    .pq-boat-option {
      text-align: center;
      padding: 28px 16px;
      border-right: 1px solid #e1d8cd;
      text-decoration: none;
      color: var(--pq-text);
      transition: .3s ease;
    }

    .pq-boat-option:last-child {
      border-right: 0;
    }

    .pq-boat-option:hover {
      background: #f7f1e8;
      color: var(--pq-gold-dark);
    }

    .pq-boat-icon {
      font-size: 2.4rem;
      color: var(--pq-gold);
      display: block;
      margin-bottom: 12px;
    }

    .pq-boat-option strong {
      display: block;
      text-transform: uppercase;
      font-size: .82rem;
      letter-spacing: .08em;
      line-height: 1.2;
    }

    .pq-boat-option span {
      display: block;
      margin-top: 8px;
      font-size: .7rem;
      text-transform: uppercase;
      color: var(--pq-gold-dark);
      font-weight: 800;
    }

    /* CTA FINAL */
    .pq-final-cta {
      position: relative;
      min-height: 360px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
    }

    .pq-final-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(0, 50, 60, .45), rgba(0, 50, 60, .45)),
        url("bannernuevofresco.jpg") center/cover no-repeat;
    }

    .pq-final-content {
      position: relative;
      z-index: 2;
      padding: 60px 20px;
    }

    .pq-final-content h2 {
      font-family: "Times New Roman", Georgia, serif;
      font-size: clamp(2.3rem, 4vw, 4rem);
      font-weight: 400;
      line-height: 1;
      max-width: 760px;
      margin: 0 auto 30px;
    }

    /* FOOTER PREMIUM */
    .pq-footer-premium {
      background: #000000;
      color: #fff;
      padding: 65px 0 25px;
    }

    .pq-footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 40px;
    }

    .pq-footer-logo {
      max-width: 160px;
      margin-bottom: 18px;
    }

    .pq-footer-premium p,
    .pq-footer-premium a {
      color: rgba(255, 255, 255, .72);
      font-size: .92rem;
      text-decoration: none;
    }

    .pq-footer-premium a:hover {
      color: var(--pq-gold);
    }

    .pq-footer-premium h4 {
      color: var(--pq-gold);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .8rem;
      margin-bottom: 18px;
    }

    .pq-footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .12);
      margin-top: 45px;
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* RESPONSIVE */
    @media(max-width:991px) {
      .pq-exp-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pq-split {
        grid-template-columns: 1fr;
      }

      .pq-split-img {
        min-height: 360px;
      }

      .pq-footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:576px) {
      .pq-hero-content h1 {
        font-size: 3.4rem;
      }

      .pq-hero-content p {
        letter-spacing: .16em;
      }

      .pq-exp-grid {
        grid-template-columns: 1fr;
      }

      .pq-exp-img {
        height: 360px;
      }

      .pq-boat-options {
        grid-template-columns: 1fr;
      }

      .pq-boat-option {
        border-right: 0;
        border-bottom: 1px solid #e1d8cd;
      }

      .pq-footer-grid {
        grid-template-columns: 1fr;
      }

      .pq-footer-bottom {
        flex-direction: column;
      }

      .pq-whatsapp-btn {
        visibility: hidden;
      }
    }

    .pq-whatsapp-btn {
      border: 1px solid #b8955e;
      padding: 12px 24px;
      color: #111;
      text-decoration: none;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: .08em;
    }