/* ===== Fuente Mont (archivos en /fonts) ===== */
@font-face{font-family:'Mont';src:url('../fonts/Mont-Heavy.otf') format('opentype');font-weight:800;font-style:normal;font-display:swap;}
@font-face{font-family:'Mont';src:url('../fonts/Mont-Heavy.otf') format('opentype');font-weight:700 900;font-style:normal;font-display:swap;}
@font-face{font-family:'Mont';src:url('../fonts/Mont-ExtraLight.otf') format('opentype');font-weight:200 300;font-style:normal;font-display:swap;}

/* ===== Belmondo — estilos compartidos (landing + paquetes) =====
   Fuente real del diseño: "Mont" (paga). Sustituto: Montserrat.
   Para Mont real: agregar @font-face y cambiar --font-head. */
:root{
  --font-head:'Montserrat',system-ui,sans-serif;
  --font-body:'Montserrat',system-ui,sans-serif;
  --font-input:'Inter',system-ui,sans-serif;
  --cyan:#29B7D6;        /* acción: botones, flechas */
  --cyan-hero:#42BFDA;   /* gradiente / acentos suaves */
  --navy:#1D4F7C;        /* azul: textos, títulos, whatsapp */
  --celeste:#D8E6EE;     /* píldoras / CTA suaves */
  --muted:#8A93A5;
  --bg:#F4F6F8;
  --white:#fff;
  --r-card:30px;
  --r-pill:73px;
  --r-img:26px;
}
*{box-sizing:border-box}
html{overflow-x:hidden}
body{font-family:var(--font-body);color:var(--navy);background:var(--white);overflow-x:hidden}
a{text-decoration:none}

.ff-head{font-family:var(--font-head)}
.heavy{font-weight:800}
.text-navy{color:var(--navy)!important}
.text-cyan{color:var(--cyan)!important}
.bg-bg{background:var(--bg)!important}

.display-hero{font-family:var(--font-head);font-weight:800;font-size:clamp(3rem,8.9vw,128px);line-height:.85;letter-spacing:-.04em;color:#fff}
.h-section{font-family:var(--font-head);font-weight:800;font-size:clamp(2rem,4.6vw,48px);line-height:.94;letter-spacing:-.06em;color:var(--navy)}

/* ===== Botones / píldoras ===== */
.btn-pill{border-radius:var(--r-pill);font-family:var(--font-body);font-weight:400;padding:.85rem 1.9rem;display:inline-flex;align-items:center;gap:.6rem;border:none;line-height:1}
.btn-cyan{background:var(--cyan);color:#fff}
.btn-cyan:hover{background:#1fa6c4;color:#fff}
.btn-navy{background:var(--navy);color:#fff}
.btn-navy:hover{background:#16406a;color:#fff}
.btn-white{background:#fff;color:var(--navy)}
.btn-white:hover{background:#f1f5f8;color:var(--navy)}
.pill-tag{display:inline-flex;align-items:center;border-radius:var(--r-pill);padding:.5rem 1.4rem;font-size:14px;font-weight:400;line-height:1}
.pill-celeste{background:var(--celeste);color:var(--navy)}
.pill-white{background:#fff;color:var(--navy)}
.arrow-btn{width:43px;height:43px;min-width:43px;border-radius:50%;background:var(--cyan);color:#fff;display:flex;align-items:center;justify-content:center;border:none;font-size:1rem}

.img-ph{background:repeating-linear-gradient(45deg,#e7edf2 0 14px,#dfe7ee 14px 28px);display:flex;align-items:center;justify-content:center;color:#9fb1c0;font-size:.78rem;font-weight:600;text-align:center}

/* Link sobre la imagen de una card, con zoom suave al hacer hover (requiere
   overflow:hidden en la card contenedora para no desbordar el zoom). */
.card-ph-link{display:block;overflow:hidden}
.card-ph-link .img-ph{transition:transform .4s ease}
.card-ph-link:hover .img-ph{transform:scale(1.08)}

/* ===================== NAVBAR + HERO ===================== */
.hero{background:linear-gradient(180deg,var(--cyan-hero) 0%, var(--bg) 37.5%);padding:37px 0 90px}
.nav-pill{background:rgba(255,255,255,.10);border:2px solid rgba(255,255,255,.10);border-radius:var(--r-pill);height:54px;padding:0 30px;display:flex;align-items:center;gap:44px}
.nav-pill a{color:var(--navy);font-size:15px;font-weight:400;white-space:nowrap}
.nav-pill a:hover{opacity:.7}
.logo-img{height:84px}
.btn-wa{background:var(--navy);color:#fff;border-radius:var(--r-pill);padding:14px 26px;display:inline-flex;align-items:center;gap:10px;font-size:14px;border:none}

/* ----- Menú mobile (hamburguesa + panel lateral) ----- */
.hamburger-btn{width:44px;height:44px;min-width:44px;border:none;background:transparent;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;padding:0;cursor:pointer;position:relative;z-index:1200}
.hamburger-btn span{display:block;width:24px;height:2px;background:var(--navy);border-radius:2px;transform-origin:center;transition:transform .35s cubic-bezier(.4,0,.2,1),opacity .25s ease}
.hamburger-btn.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger-btn.active span:nth-child(2){opacity:0}
.hamburger-btn.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-menu-overlay{position:fixed;inset:0;background:rgba(15,30,45,.45);opacity:0;visibility:hidden;transition:opacity .35s ease;z-index:1099}
.mobile-menu-overlay.active{opacity:1;visibility:visible}

.mobile-menu-panel{position:fixed;top:0;right:0;width:320px;max-width:85vw;height:100%;background:#fff;z-index:1100;display:flex;flex-direction:column;padding:0 28px 32px;box-shadow:-16px 0 40px rgba(29,79,124,.18);transform:translateX(100%);transition:transform .4s cubic-bezier(.4,0,.2,1)}
.mobile-menu-panel.active{transform:translateX(0)}
.mobile-menu-header{display:flex;align-items:center;padding:37px 0;flex:0 0 auto}
.mobile-menu-nav{display:flex;flex-direction:column;flex:1 1 auto}
.mobile-menu-list{list-style:none;margin:0;padding:0}
.mobile-menu-nav a{display:block;padding:16px 0;color:var(--navy);font-size:16px;font-weight:600;border-bottom:1px solid #e9eef3}
.mobile-menu-wa{justify-content:center;margin-top:24px}

.hero-stage{position:relative;margin-top:34px}
.hero-banner{position:relative;border-radius:var(--r-img);overflow:hidden;aspect-ratio:1332/537;min-height:360px}
.hero-banner .img-ph{position:absolute;inset:0}
.hero-copy{position:absolute;left:clamp(20px,3.4vw,44px);bottom:clamp(80px,12vw,150px);right:20px}
.hero-sub{font-weight:700;font-size:clamp(1rem,1.7vw,24px);color:#fff;letter-spacing:-.02em;margin-top:.6rem}
.search-pill{position:relative;margin:-44px auto 0;max-width:1067px;background:#fff;border-radius:44px;box-shadow:0 24px 60px rgba(29,79,124,.12);display:flex;align-items:stretch;padding:7px;z-index:3}
.search-field{flex:1 1 0;padding:.6rem 1.6rem;display:flex;flex-direction:column;justify-content:center;min-width:0}
.search-field + .search-field{border-left:1px solid #e9eef3}
.search-field .lbl{font-weight:700;font-size:12px;letter-spacing:.06em;color:var(--muted)}
.search-field .val{font-family:var(--font-input);font-size:14px;color:var(--navy);display:flex;justify-content:space-between;align-items:center;margin-top:2px}
.search-go{flex:0 0 auto;align-self:center;background:var(--cyan);color:#fff;border:none;border-radius:var(--r-pill);height:60px;padding:0 34px;font-size:14px;margin-left:8px}

/* ===================== SECCIONES ===================== */
section{padding:64px 0}
.lead-2{color:var(--muted);font-weight:400}

/* Swiper base */
.swiper{width:100%;padding-bottom:6px}
.swiper-slide{height:auto}

/* ----- Paquetes (carrusel landing) ----- */
.pkg-swiper .swiper-slide{width:305px}
.pkg-card{background:#fff;border-radius:var(--r-card);overflow:hidden;height:100%}
.pkg-card .ph{height:228px;border-radius:var(--r-card) var(--r-card) 0 0}
.pkg-card .body{padding:22px 22px 26px}
.pkg-route{font-size:12px;letter-spacing:.06em;color:var(--muted);font-weight:400;text-transform:uppercase}
.pkg-title{font-family:var(--font-head);font-weight:800;font-size:20px;color:var(--navy);margin:.35rem 0 .7rem}
.pkg-title a{color:inherit}
.pkg-meta{display:flex;gap:14px;font-size:12px;color:var(--navy);font-weight:400;margin-bottom:.7rem;align-items:center}
.pkg-meta i{color:var(--navy);opacity:.8;margin-right:5px}
.pkg-div{height:1px;background:#e9eef3;margin:.4rem 0 .9rem}
.pkg-price-lbl{font-size:12px;letter-spacing:.06em;color:var(--muted);font-weight:400;text-transform:uppercase}
.pkg-price-val{font-family:var(--font-head);font-weight:800;font-size:24px;color:var(--navy);line-height:1}

/* ----- Arma tu viaje ----- */
.arma-photo{position:relative;border-radius:var(--r-card);overflow:hidden;min-height:670px;height:100%}
.arma-photo .img-ph{position:absolute;inset:0}
.arma-overlay{position:absolute;left:18px;right:18px;bottom:18px;background:#fff;border-radius:22px;padding:1.1rem 1.32rem;display:flex;align-items:center;gap:1rem;box-shadow:0 14px 30px rgba(29,79,124,.14)}
.arma-right{background:var(--cyan-hero);border-radius:var(--r-card);padding:3rem 2rem;text-align:center;color:#fff;min-height:670px;display:flex;flex-direction:column;align-items:center;justify-content:center}
.circle-ic{width:74px;height:74px;border-radius:50%;background:#fff;color:var(--cyan-hero);display:flex;align-items:center;justify-content:center;font-size:1.8rem;flex-shrink:0}

/* ----- Grupales ----- */
.trip-swiper .swiper-slide{width:260px;transition:width .35s ease}
.trip-swiper .swiper-slide:hover{width:520px}
.trip-card{width:100%;height:588px;border-radius:var(--r-card);position:relative;overflow:hidden;display:flex;flex-direction:column;justify-content:flex-end;padding:17px 11px}
.trip-card .img-ph{position:absolute;inset:0;border-radius:var(--r-card)}
.trip-card::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.3);border-radius:var(--r-card)}
.trip-card > *{position:relative;z-index:2}
.trip-top{display:flex;align-items:center;margin-bottom:auto}
.trip-flag{color:#fff;font-size:15px;font-weight:400;background:rgba(0,0,0,.18);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);border:1px solid #fff;display:inline-flex;align-items:center;padding:.5rem 1rem;border-radius:21.5px;line-height:1}
.trip-arrow{width:46px;height:47px;border-radius:30px;background:var(--cyan);color:#fff;display:flex;align-items:center;justify-content:center;position:absolute;top:17px;right:11px;z-index:3;transition:background-color .25s ease}
.trip-arrow i{color:#fff;transition:color .25s ease}
.trip-card:hover .trip-arrow{background:var(--celeste)}
.trip-card:hover .trip-arrow i{color:var(--navy)}
.trip-bottom{display:flex;flex-direction:column;gap:14px}
.trip-date{background:#fff;color:var(--navy);font-weight:500;font-size:12px;border-radius:30px;height:20px;padding:0 12px;display:flex;align-items:center;justify-content:center;align-self:flex-start}
.trip-name{font-family:var(--font-head);font-weight:800;font-size:24px;color:rgba(255,255,255,.95)}
.trip-desc{color:#fff;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.trip-cta{background:var(--celeste);color:var(--navy);font-weight:600;border-radius:30px;height:52px;padding:0 12px;display:flex;align-items:center;justify-content:space-between}

/* ----- Cotiza ----- */
.providers{background:url('../img/fondocotiza.png') center/cover no-repeat;padding:84px 0 104px}
.prov-card{background:#fff;border-radius:var(--r-card);padding:2.4rem 1rem;text-align:center;box-shadow:0 14px 34px rgba(29,79,124,.10)}
.prov-ic{width:64px;height:64px;border-radius:24px;background:var(--celeste);color:var(--navy);display:inline-flex;align-items:center;justify-content:center;font-size:1.6rem;margin-bottom:1rem}
@media (min-width:992px){.providers h2.h-section{font-size:36px}}

/* ----- Viajes grupales (card + video) ----- */
.vg-card{background:url('../img/nubesgrupales.png') center/cover no-repeat;border-radius:var(--r-card);padding:3rem 2.2rem;color:#fff;min-height:500px;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center}
.vg-video{position:relative;border-radius:var(--r-card);overflow:hidden;min-height:500px}
.vg-video .img-ph{position:absolute;inset:0}
.vg-play{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:none;border:none;padding:0;cursor:pointer}
.vg-play span{width:auto;height:auto;border-radius:0;background:transparent;display:flex;align-items:center;justify-content:center}
.vg-play span img{width:40px;height:auto;filter:drop-shadow(0 4px 10px rgba(0,0,0,.25))}
.vg-video-modal .modal-dialog{max-width:900px}
.vg-video-modal .modal-content{background:transparent;border:none}
.vg-video-modal .modal-body{padding:0;position:relative;aspect-ratio:16/9}
.vg-video-modal iframe{position:absolute;inset:0;width:100%;height:100%;border:0;border-radius:var(--r-card)}
.vg-video-modal .btn-close{position:absolute;top:-40px;right:0;filter:invert(1)}

/* ----- Cuotas + FAQ ----- */
.cuotas{background:var(--navy);color:#fff}
.cuotas .h-section{color:var(--bg)}
.cuotas-card{background:var(--bg);color:var(--navy);border-radius:26px;padding:3rem 2.6rem}
.cuotas-card .big{font-family:var(--font-head);font-weight:800;font-size:5rem;color:var(--cyan);line-height:.9}
.cuotas-card h3{color:var(--navy)}
.cuotas-card .lead-2{color:var(--navy)}
.faq-item{padding:1.15rem 1.4rem;cursor:pointer;border-radius:16px 16px 0 0;opacity:.30;border-bottom:1px solid rgba(255,255,255,.45);transition:opacity .25s ease,background-color .25s ease}
.faq-item:has(+ .faq-item.active){border-bottom-color:transparent}
.faq-item.active{opacity:1;background:var(--cyan-hero);border-radius:16px;border-bottom-color:transparent}
.faq-q{font-family:var(--font-head);font-weight:700;font-size:1.5rem;color:var(--celeste);display:flex;justify-content:space-between;gap:1rem;align-items:center}
.faq-item.active .faq-q{color:#fff}
.faq-q i{width:34px;height:34px;min-width:34px;border-radius:50%;border:1.5px solid currentColor;display:inline-flex;align-items:center;justify-content:center;font-size:.8rem;transition:transform .25s ease}
.faq-item.active .faq-q i{transform:rotate(180deg)}
.faq-a{color:#fff;font-size:1rem;max-height:0;overflow:hidden;opacity:0;transition:max-height .3s ease,opacity .25s ease,margin .25s ease}
.faq-item.active .faq-a{max-height:200px;opacity:1;margin-top:.5rem}

/* ----- Club ----- */
.club-wrap{background:var(--celeste);border-radius:var(--r-card);padding:3rem;position:relative;overflow:hidden}
.club-graphics{position:absolute;inset:0;pointer-events:none;z-index:0}
.club-inner{position:relative;z-index:2}
.benefit{background:#fff;border:1px solid #e2e6eb;border-radius:20px;padding:20px;display:flex;gap:12px;height:100%}
.benefit .bi-wrap{width:53px;height:53px;min-width:53px;border-radius:20px;background:var(--celeste);color:var(--navy);display:flex;align-items:center;justify-content:center;font-size:1.3rem}
.benefit h5{font-family:var(--font-head);font-weight:800;font-size:20px;color:var(--navy);line-height:1.05;margin-bottom:.25rem}
.benefit p{color:var(--navy);font-size:12px;margin:0;line-height:1.35}
.club-logo{height:88px}
.levels{display:flex;align-items:flex-start;justify-content:space-between;margin-top:2.4rem}
.level{flex:0 0 auto;width:74px;text-align:center}
.level .l-ic{width:44px;height:44px;border-radius:50%;background:var(--cyan-hero);color:#1D4F7C;display:inline-flex;align-items:center;justify-content:center;font-size:1.2rem;margin-bottom:.5rem}
.level .l-name{font-family:var(--font-head);font-weight:400;font-size:12px;color:var(--navy);text-transform:uppercase}
.lvl-line{flex:1 1 auto;height:1px;background:#004C7D;margin:22px 5px 0}

/* ----- Testimonios (carrusel) ----- */
.testi{background:linear-gradient(180deg,var(--cyan-hero),#036591);color:#fff}
.testi h2{color:#fff!important;font-size:clamp(1.8rem,4vw,36px);letter-spacing:-.06em}
.testi-swiper{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);padding:0 24px}
.testi-swiper .swiper-slide{width:385px}
.testi-card{background:#fff;color:var(--navy);border:1px solid #e2e6eb;border-radius:20px;padding:20px 20px 20px 39px;height:100%}
.testi-stars{margin-bottom:2px}
.testi-q{font-weight:400;color:var(--navy);font-size:15px;line-height:20px;margin:12px 0}
.testi-sep{border-top:1px solid #e2e6eb;padding-top:12px}
.testi-av{width:29px;height:29px;border-radius:50%;min-width:29px}
.testi-name{font-weight:800;font-size:15px;letter-spacing:-.03em;line-height:1}
.testi-loc{font-size:12px;color:var(--navy)}

/* ----- Formulario ----- */
.form-card{background:#fff;border-radius:var(--r-card);padding:2.4rem;box-shadow:0 18px 50px rgba(29,79,124,.07)}
.form-card label{font-size:12px;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:.25rem}
.form-card .form-control{border:1px solid #e3e8ee;border-radius:14px;padding:.7rem 1rem;font-family:var(--font-input)}
.form-card .form-control:focus{border-color:var(--cyan);box-shadow:0 0 0 .2rem rgba(41,183,214,.15)}
.contact-line{display:flex;align-items:center;gap:.8rem;font-weight:600;margin-bottom:.9rem}
.contact-line .ci{width:38px;height:38px;border-radius:50%;background:#eef4f8;color:var(--cyan);display:flex;align-items:center;justify-content:center}
.contact-line a{color:inherit;text-decoration:none}
.contact-socials{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.2rem}
.contact-socials a{width:38px;height:38px;border-radius:50%;background:#eef4f8;color:var(--cyan);display:flex;align-items:center;justify-content:center;font-size:1rem;transition:background .2s ease,color .2s ease}
.contact-socials a:hover{background:var(--cyan);color:#fff}

/* ----- Footer ----- */
footer{background:#004C7D;color:#fff;padding:56px 0 26px;border-radius:30px 30px 0 0;position:relative;overflow:hidden}
.footer-cta h2{font-family:var(--font-head);font-weight:800;font-size:clamp(1.7rem,3.4vw,40px);letter-spacing:-.06em;line-height:.94}
.footer-cta h2 .wa{color:#81CFE3}
.foot-cta-line{border-top:1px solid var(--celeste);opacity:.6;margin:24px 0 30px}
.btn-chat{background:#fff;color:var(--navy);border-radius:64px;padding:16px 26px;display:inline-flex;align-items:center;gap:9px;font-weight:700;font-size:15px;border:none}
.foot-col p.head{color:#d8e6ee;opacity:.5;font-weight:700;font-size:12px;margin-bottom:7px}
.foot-col a{color:#d8e6ee;opacity:.5;display:block;padding:0 0 7px;font-size:12px}
.foot-col a:hover{opacity:.85}
.foot-col li,.nav-pill li{list-style:none;margin:0;padding:0}
.foot-suc p{color:#d8e6ee;font-size:12px;margin-bottom:7px}
.foot-suc .name{font-weight:800}
.social-ic{width:24px;height:24px;display:inline-flex;align-items:center;justify-content:center;color:#d8e6ee;margin-right:32px;font-size:1.2rem}
.social-ic:hover{color:#81CFE3}
.footer-sep{border-top:1px solid var(--celeste);opacity:.6;margin:1.4rem 0}
.footer-legal{font-size:12px;color:rgba(255,255,255,.5)}
.footer-legal a{display:inline;color:rgba(255,255,255,.5);margin-left:2rem}
.footer-legal li{list-style:none;display:inline;margin:0;padding:0}

/* ===================== PÁGINA PAQUETES ===================== */
.paq-hero{position:relative;overflow:hidden;min-height:575px;display:flex;flex-direction:column;background:linear-gradient(180deg,var(--cyan-hero) 0%, #bfe6f1 60%, var(--bg) 100%);padding:28px 0 40px}
.paq-hero-bg{position:absolute;inset:0;z-index:0}
.paq-hero .container{position:relative;z-index:2;flex:1;display:flex;flex-direction:column}
.paq-hero .nav-pill{background:rgba(255,255,255,.12);border:2px solid rgba(255,255,255,.6);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.paq-hero .nav-pill a{color:#fff}
.paq-title{font-family:var(--font-head);font-weight:800;color:var(--navy);text-align:center;font-size:clamp(2.6rem,6vw,72px);letter-spacing:-.05em;line-height:.94;margin-top:auto;margin-bottom:auto}

/* Barra de filtros */
.filter-bar{background:#fff;border-radius:var(--r-pill);box-shadow:0 20px 50px rgba(29,79,124,.10);display:flex;align-items:center;padding:8px;gap:0;width:100%}
.filter-field{flex:1 1 0;display:flex;align-items:center;gap:.6rem;padding:.7rem 1.4rem;color:var(--navy);font-size:14px;min-width:0}
.filter-field i{color:var(--navy)}
.filter-field + .filter-field{border-left:1px solid #e9eef3}
.filter-field .fa-chevron-down{margin-left:auto;color:var(--muted);font-size:.8rem}
.filter-go{flex:0 0 auto;background:var(--cyan);color:#fff;border:none;border-radius:var(--r-pill);height:52px;padding:0 34px;font-size:14px;margin-left:8px}
.sort-pill{display:inline-flex;align-items:center;gap:.5rem;background:#fff;border:1px solid #e3e8ee;border-radius:var(--r-pill);padding:.5rem 1.2rem;font-size:13px;color:var(--navy)}

/* Card de la grilla (variante con "Ver más") */
.paq-grid-section{background:#D8E6EE}
.grid-wrap{max-width:1208px;margin:0 auto}
.grid-inner{max-width:1040px;margin:0 auto}
.pkg-grid{display:flex;flex-wrap:wrap;justify-content:flex-start;column-gap:37px;row-gap:31px}
.grid-card{background:#fff;border-radius:30px;overflow:hidden;width:322px;max-width:100%;display:flex;flex-direction:column;box-shadow:0 12px 30px rgba(29,79,124,.06)}
.grid-card .ph{height:185px;border-radius:30px 30px 0 0}
.grid-card .body{padding:16px 20px 18px;display:flex;flex-direction:column}
.grid-card .g-route{font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);margin-bottom:.35rem}
.grid-card .g-title{font-family:var(--font-head);font-weight:900;font-size:20px;color:var(--navy);margin-bottom:.5rem}
.grid-card .g-title a{color:inherit}
.grid-card .g-meta{display:flex;flex-wrap:wrap;gap:10px;font-size:12px;color:var(--navy);padding-bottom:14px;border-bottom:1px solid #e2e6eb;margin-bottom:14px}
.grid-card .g-cupos{display:inline-block;align-self:flex-start;background:var(--cyan);color:#fff;border-radius:var(--r-pill);padding:.4rem 1rem;font-size:12px;font-weight:400;text-transform:uppercase;margin-bottom:14px;cursor:default}
.grid-card .g-meta i{color:var(--navy);opacity:.8;margin-right:4px}
.grid-card .g-price-lbl{font-size:12px;letter-spacing:.06em;color:var(--muted);text-transform:uppercase}
.grid-card .g-price{font-family:var(--font-head);font-weight:800;font-size:24px;color:var(--navy);line-height:1;margin:.15rem 0 .1rem}
.grid-card .g-sub{font-size:12px;letter-spacing:.04em;color:var(--muted);margin-bottom:14px}
.grid-card .g-btn{background:var(--navy);color:#fff;border:none;border-radius:30px;padding:.6rem 1.1rem;font-size:15px;font-weight:600;display:flex;align-items:center;justify-content:center;width:100%}

@media (max-width:991px){
  .container{--bs-gutter-x:3rem}
  .nav-pill{display:none!important}
  .hero{padding:37px 0 40px}
  .hero-banner{aspect-ratio:auto;height:520px;min-height:0}
  .hero-copy{left:20px;right:20px;top:28px;bottom:auto;text-align:center}
  .hero-sub{font-size:15px}
  .search-pill{position:absolute;top:230px;left:20px;right:20px;margin:0;flex-direction:column;border-radius:28px}
  .search-field + .search-field{border-left:none;border-top:1px solid #e9eef3}
  .search-go{width:100%;margin:8px 0 0}
  .filter-bar{flex-direction:column;border-radius:24px;align-items:stretch}
  .filter-field + .filter-field{border-left:none;border-top:1px solid #e9eef3}
  .filter-go{width:100%;margin:8px 0 0}
  #paquetes{padding-top:0}
  #paquetes .h-section{font-size:36px}
  #paquetes .lead-2{font-size:14px}
  #grupales{padding-top:0}
  #grupales .h-section{font-size:48px}
  .arma-overlay{flex-direction:column;align-items:center;text-align:center}
  .arma-overlay h4{font-size:24px!important}
  .arma-overlay .mb-0{font-size:12px!important}
  .providers h2.h-section{font-size:36px}
  .prov-card{max-width:225px;margin-left:auto;margin-right:auto}
  .prov-ic{width:53px;height:53px}
  .prov-card h4{font-size:24px}
  .cuotas .h-section{font-size:36px}
  .cuotas-card{text-align:center}
  .cuotas-card .big{font-size:64px}
  .cuotas-card h3{font-size:40px!important}
  .cuotas-card p.lead-2{font-size:14px!important}
  .faq-q{font-size:14px}
  .faq-a{font-size:11px}
  #club .h-section{font-size:48px}
  #club .h-section + p{font-size:15px}
  .benefit h5{font-size:20px}
  .benefit p{font-size:12px}
  .footer-cta h2{font-size:36px;padding-left:3rem;padding-right:3rem}
  .foot-col p.head,.foot-suc p.head{font-size:20px}
  .foot-col a,.foot-suc p{font-size:20px}
  #paquetes .row.g-4{--bs-gutter-x:3rem}
  .pkg-swiper,.trip-swiper{margin-left:-24px;margin-right:-24px;padding-left:24px;padding-right:0}
  .testi-swiper{padding:0 0 0 24px}
  .club-wrap{padding-left:1rem;padding-right:1rem}
  .paq-hero{height:310px;min-height:0}
  .paq-title{font-size:36px}
  .pkg-grid{justify-content:center}
}
