/* ══════════════════════════════════════════
   OUTBASE OVERLAND — v8 (multi-página)
   Tokens heredados de v7 (Montserrat + verde/dorado + papel)
   Ampliado con: nav multi-página + menú móvil, hero secundario
   de página interior, breadcrumbs, FAQ acordeón, layout de
   destino, galería.
══════════════════════════════════════════ */
:root {
  --dark:    #0F2018;
  --green:   #14281E;
  --green-2: #1B3A2A;
  --gold:    #C8860A;
  --gold-lt: #E8B84B;
  --paper:   #F5EFE1;
  --cream:   #F3E7D7;
  --sand:    #D6C7A1;
  --ink:     #17241B;
  --gray:    #5C665D;
  --white:   #FFFFFF;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --t: 0.25s cubic-bezier(.4,0,.2,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
[id]{ scroll-margin-top:96px; }
body{
  font-family:'Montserrat',sans-serif; background:var(--white); color:var(--ink);
  line-height:1.6; -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit;}
img{display:block;max-width:100%;}
ul{list-style:none;}
.wrap{max-width:1180px;margin:0 auto;padding:0 28px;}

.sec--paper{ background:var(--paper); position:relative; color:var(--ink); }
.sec--paper::before{
  content:''; position:absolute; inset:0; pointer-events:none; opacity:0.5;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.sec--paper > *{ position:relative; z-index:1; }

.sec{ padding:100px 0; }
.sec--dark{ background:var(--green); color:var(--cream); }
.sec--green2{ background:var(--green-2); color:var(--cream); }
.sec--white{ background:var(--white); color:var(--ink); }

.intro{ max-width:700px; margin:0 auto 64px; text-align:center; }
.intro--left{ margin:0 0 48px; text-align:left; }
.eyebrow{ font-size:16px; font-weight:600; color:var(--gold); margin-bottom:14px; }
.eyebrow--lt{ color:var(--gold-lt); }
.intro h2{ font-size:clamp(28px,4vw,42px); font-weight:800; line-height:1.18; letter-spacing:-0.5px; margin-bottom:18px; }
.intro p{ font-size:16px; color:var(--gray); line-height:1.75; }
.sec--dark .intro p, .sec--green2 .intro p{ color:var(--sand); }
.intro .hi{ color:var(--gold); }
.sec--dark .intro .hi, .sec--green2 .intro .hi{ color:var(--gold-lt); }

.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Montserrat',sans-serif; font-weight:700; font-size:15px;
  padding:16px 28px; border-radius:var(--radius-sm); border:none; cursor:pointer;
  transition:var(--t);
}
.btn-gold{ background:var(--gold-lt); color:var(--dark); }
.btn-gold:hover{ background:#d4a432; transform:translateY(-2px); box-shadow:0 10px 26px rgba(232,184,75,.35); }
.btn-outline{ background:transparent; color:var(--cream); border:2px solid rgba(243,231,215,.4); }
.btn-outline:hover{ border-color:var(--cream); background:rgba(243,231,215,.08); }
.btn-outline-dark{ background:transparent; color:var(--ink); border:2px solid rgba(23,36,27,.25); }
.btn-outline-dark:hover{ border-color:var(--ink); }
.btn-wa{ background:#25D366; color:#fff; }
.btn-wa:hover{ background:#1eba58; transform:translateY(-2px); box-shadow:0 10px 26px rgba(37,211,102,.3); }
.btn:disabled{ opacity:.6; cursor:default; transform:none !important; box-shadow:none !important; }

/* NAV — multi-página con menú móvil real */
.nav{ position:fixed; top:0; left:0; right:0; z-index:100; background:rgba(15,32,24,0.94); backdrop-filter:blur(10px); }
.nav-inner{ max-width:1180px; margin:0 auto; padding:0 28px; height:72px; display:flex; align-items:center; justify-content:space-between; }
.nav-logo img{ height:28px; }
.ft-logo img{ height:42px; margin-bottom:16px; }
.nav-wordmark{ font-size:16.5px; font-weight:800; letter-spacing:0.5px; color:var(--cream); display:inline-flex; align-items:baseline; gap:7px; white-space:nowrap; }
.nav-wordmark .accent{ color:var(--gold-lt); font-weight:700; font-size:12.5px; letter-spacing:1.5px; text-transform:uppercase; }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{ font-size:14px; font-weight:500; color:rgba(243,231,215,0.75); }
.nav-links a:hover, .nav-links a.active{ color:var(--cream); }
.nav-links .nav-cta{ background:var(--gold-lt); color:var(--dark); font-weight:700; padding:11px 22px; border-radius:var(--radius-sm); }
.nav-links .nav-cta:hover{ background:#d4a432; color:var(--dark); }
.nav-burger{ display:none; width:40px; height:40px; border:none; background:transparent; cursor:pointer; flex-direction:column; align-items:center; justify-content:center; gap:5px; }
.nav-burger span{ width:22px; height:2px; background:var(--cream); border-radius:2px; }
@media (max-width:900px){
  .nav-links{ position:fixed; top:72px; left:0; right:0; background:var(--dark); flex-direction:column; align-items:flex-start; gap:0; max-height:0; overflow:hidden; transition:max-height .3s ease; }
  .nav-links.open{ max-height:420px; }
  .nav-links li{ width:100%; }
  .nav-links a{ display:block; width:100%; padding:16px 28px; border-bottom:1px solid rgba(255,255,255,.06); }
  .nav-links .nav-cta{ margin:16px 28px; display:inline-block; }
  .nav-burger{ display:flex; }
}

.nav-links li.lang-switch{ display:flex; align-items:center; gap:4px; background:rgba(255,255,255,.06); border-radius:20px; padding:3px; }
.nav-links li.lang-switch a.lang-opt{ display:inline-flex; width:auto; padding:5px 11px; border-radius:16px; border-bottom:none; font-size:11px; font-weight:700; letter-spacing:0.5px; color:var(--sand); }
.nav-links li.lang-switch a.lang-opt.active{ background:var(--gold-lt); color:var(--dark); }
.nav-links li.lang-switch a.lang-opt:hover:not(.active){ background:rgba(255,255,255,.14); color:var(--cream); }
@media (max-width:900px){
  .nav-links li.lang-switch{ margin:16px 28px; width:auto; }
}

/* HERO — portada (home). La foto de fondo se fija por página con
   style="background-image:url(...)" en el propio elemento .hero
   (evita el bug de resolución de rutas de url() dentro de custom
   properties consumidas desde una hoja de estilos externa). */
.hero{
  position:relative; min-height:92vh; display:flex; flex-direction:column; justify-content:center;
  padding-top:72px; background-size:cover; background-position:center;
}
.hero::before{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(15,32,24,0.55) 0%, rgba(15,32,24,0.4) 55%, rgba(15,32,24,0.92) 100%);
}
.hero-inner{ position:relative; z-index:1; max-width:1180px; margin:0 auto; padding:0 28px; width:100%; }
.hero-badge{
  display:inline-flex; align-items:center; gap:8px; background:rgba(232,184,75,.16);
  border:1px solid rgba(232,184,75,.35); color:var(--gold-lt); font-size:13px; font-weight:600;
  padding:7px 16px; border-radius:100px; margin-bottom:26px;
}
.hero-badge::before{ content:''; width:7px; height:7px; background:var(--gold-lt); border-radius:50%; }
.hero h1{
  font-size:clamp(42px,6.4vw,74px); font-weight:800; line-height:1.05; letter-spacing:-1px;
  color:var(--cream); max-width:760px; margin-bottom:22px;
}
.hero h1 .hi{ color:var(--gold-lt); }
.hero-sub{ font-size:17px; color:var(--sand); max-width:560px; margin-bottom:40px; line-height:1.7; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:64px; }

.stats-strip{ position:relative; z-index:1; background:rgba(27,58,42,0.6); border-top:1px solid rgba(255,255,255,.1); }
.stats-inner{ max-width:1180px; margin:0 auto; padding:18px 28px; display:flex; gap:32px; flex-wrap:wrap; }
.stat-pill{ display:flex; align-items:center; gap:8px; font-size:13px; font-weight:500; color:var(--sand); }
.stat-dot{ width:6px; height:6px; background:var(--gold-lt); border-radius:50%; }

/* PAGE-HERO — hero secundario, más bajo, para páginas interiores.
   La foto se fija por página con style="background-image:url(...)". */
.page-hero{
  position:relative; min-height:56vh; display:flex; flex-direction:column; justify-content:flex-end;
  padding-top:72px; padding-bottom:56px; background-size:cover; background-position:center;
}
.page-hero::before{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(15,32,24,0.35) 0%, rgba(15,32,24,0.55) 60%, rgba(15,32,24,0.95) 100%);
}
.page-hero-inner{ position:relative; z-index:1; max-width:1180px; margin:0 auto; padding:0 28px; width:100%; }
.breadcrumb{ display:flex; gap:8px; align-items:center; font-size:13px; color:var(--sand); margin-bottom:18px; }
.breadcrumb a{ color:var(--sand); }
.breadcrumb a:hover{ color:var(--cream); }
.page-hero h1{ font-size:clamp(34px,5vw,56px); font-weight:800; color:var(--cream); line-height:1.1; letter-spacing:-0.5px; max-width:820px; margin-bottom:16px; }
.page-hero h1 .hi{ color:var(--gold-lt); }
.page-hero p{ font-size:16px; color:var(--sand); max-width:620px; line-height:1.7; }

/* BIENVENIDA + VALORES */
.welcome-copy{ max-width:760px; margin:0 auto 72px; text-align:center; font-size:16.5px; color:var(--gray); line-height:1.85; }
.welcome-copy b{ color:var(--ink); font-weight:700; }
.welcome-copy .accent{ color:var(--gold); font-weight:700; }
.value-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:48px; text-align:center; }
.value-item .value-num{
  width:44px; height:44px; margin:0 auto 20px; border-radius:50%;
  background:var(--gold-lt); color:var(--dark); font-weight:800; font-size:16px;
  display:flex; align-items:center; justify-content:center;
}
.value-item h3{ font-size:19px; font-weight:700; margin-bottom:10px; }
.value-item p{ font-size:14px; color:var(--gray); line-height:1.75; max-width:280px; margin:0 auto; }

/* EL CAMPER */
.camper-layout{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.camper-img-wrap{ border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3; }
.camper-img-wrap img{ width:100%; height:100%; object-fit:cover; }
.specs-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:30px; }
.spec-pill{ display:flex; align-items:center; gap:9px; font-size:13.5px; font-weight:500; background:var(--paper); border-radius:10px; padding:12px 15px; }
.spec-pip{ width:7px; height:7px; border-radius:50%; background:var(--gold); flex-shrink:0; }
.incl-label{ font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--gray); margin-bottom:14px; }
.incl-grid{ display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.incl-item{ font-size:13.5px; color:var(--gray); display:flex; align-items:center; gap:6px; }
.incl-item::before{ content:'✓'; color:var(--gold); font-weight:700; }
.equip-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:56px; }
.equip-card{ aspect-ratio:1; border-radius:var(--radius-md); overflow:hidden; position:relative; background:var(--green-2); }
.equip-card img{ width:100%; height:100%; object-fit:cover; }
.equip-ph{ width:100%; height:100%; background:linear-gradient(135deg,var(--green-2),#0a1a10); display:flex; align-items:center; justify-content:center; font-size:34px; opacity:.5; }
.equip-lbl{ position:absolute; bottom:0; left:0; right:0; padding:20px 14px 12px; background:linear-gradient(to top,rgba(15,32,24,.9),transparent); color:var(--cream); font-size:13px; font-weight:600; }

/* GALERÍA (fotos reales de apoyo) */
.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.gallery-grid img{ width:100%; height:100%; aspect-ratio:3/4; object-fit:cover; border-radius:var(--radius-md); }
.gallery-grid .wide{ grid-column:span 2; aspect-ratio:auto; }
.gallery-grid .wide img{ aspect-ratio:16/10; }

.rotating-gallery{ position:relative; width:100%; max-width:820px; margin:0 auto; aspect-ratio:16/9; border-radius:var(--radius-lg); overflow:hidden; }
.rotating-gallery img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity 1s ease; }
.rotating-gallery img.active{ opacity:1; }

/* CARRUSEL + LIGHTBOX (galería El Camper) */
.carousel{ position:relative; display:flex; align-items:center; gap:14px; }
.carousel-track{ display:flex; gap:16px; overflow-x:auto; scroll-behavior:smooth; scroll-snap-type:x mandatory; padding:4px 2px 14px; -webkit-overflow-scrolling:touch; }
.carousel-track::-webkit-scrollbar{ height:6px; }
.carousel-track::-webkit-scrollbar-thumb{ background:rgba(15,32,24,.2); border-radius:10px; }
.carousel-item{ flex:0 0 auto; width:300px; height:210px; border-radius:var(--radius-md); overflow:hidden; scroll-snap-align:start; cursor:zoom-in; }
.carousel-item img{ width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.carousel-item:hover img{ transform:scale(1.06); }
.carousel-arrow{ flex:none; width:44px; height:44px; border-radius:50%; border:1.5px solid rgba(15,32,24,.15); background:var(--white); font-size:20px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:var(--t); }
.carousel-arrow:hover{ background:var(--gold-lt); border-color:var(--gold-lt); }

.lightbox{ position:fixed; inset:0; background:rgba(10,20,15,.94); z-index:300; display:none; align-items:center; justify-content:center; }
.lightbox.show{ display:flex; }
.lightbox-img{ max-width:88vw; max-height:86vh; border-radius:var(--radius-md); box-shadow:0 30px 80px rgba(0,0,0,.5); }
.lightbox-close{ position:absolute; top:24px; right:28px; width:44px; height:44px; border-radius:50%; border:none; background:rgba(255,255,255,.1); color:var(--cream); font-size:24px; cursor:pointer; }
.lightbox-close:hover{ background:rgba(255,255,255,.2); }
.lightbox-arrow{ position:absolute; top:50%; transform:translateY(-50%); width:52px; height:52px; border-radius:50%; border:none; background:rgba(255,255,255,.1); color:var(--cream); font-size:26px; cursor:pointer; }
.lightbox-arrow:hover{ background:rgba(255,255,255,.2); }
.lightbox-arrow--prev{ left:20px; }
.lightbox-arrow--next{ right:20px; }
@media (max-width:640px){
  .carousel-arrow{ display:none; }
  .carousel-item{ width:230px; height:170px; }
  .lightbox-arrow{ width:42px; height:42px; font-size:20px; }
  .lightbox-close{ top:14px; right:14px; }
}

/* TARJETAS (adicionales / tarifas / rutas) */
.card-grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.card-grid-6{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.card-grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

.uz-card{ background:var(--white); border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 2px 18px rgba(15,32,24,0.07); transition:transform var(--t), box-shadow var(--t); }
.uz-card:hover{ transform:translateY(-6px); box-shadow:0 22px 44px rgba(15,32,24,0.14); }
.uz-card-photo{ height:190px; overflow:hidden; position:relative; }
.uz-card-photo img{ width:100%; height:100%; object-fit:cover; }
.uz-card-photo-ph{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:52px; }
.uz-card-photo::after{ content:''; position:absolute; left:0; right:0; bottom:0; height:55%; background:linear-gradient(to top, rgba(15,32,24,.7), transparent); pointer-events:none; }
.uz-card-body{ padding:24px 24px 28px; }
.uz-card-tag{ font-size:11.5px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.uz-card-body h3{ font-size:18px; font-weight:700; margin-bottom:9px; }
.uz-card-body p{ font-size:13.5px; color:var(--gray); line-height:1.7; margin-bottom:14px; }
.uz-card-meta{ display:flex; gap:14px; flex-wrap:wrap; font-size:12px; color:var(--gray); }
.uz-card-link{ font-size:13px; font-weight:700; color:var(--gold); display:inline-flex; align-items:center; gap:6px; }

.adic-card{ background:rgba(255,255,255,0.06); border-radius:var(--radius-md); padding:30px 24px; text-align:center; transition:var(--t); }
.adic-card:hover{ background:rgba(232,184,75,0.08); transform:translateY(-5px); }
.adic-icon{ width:60px; height:60px; border-radius:16px; background:rgba(232,184,75,0.14); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.adic-icon img{ width:38px; height:38px; object-fit:contain; }
.adic-card h4{ font-size:15px; font-weight:700; color:var(--cream); margin-bottom:8px; }
.adic-card p{ font-size:12.5px; color:var(--sand); line-height:1.6; }
.adic-free{ color:var(--gold-lt) !important; font-weight:700 !important; }

.rate-card{ background:var(--white); border-radius:var(--radius-lg); padding:36px 30px; }
.rate-card.feat{ background:var(--gold-lt); }
.rate-months{ font-size:13px; font-weight:700; color:var(--gold); margin-bottom:14px; }
.rate-card.feat .rate-months{ color:var(--dark); }
.rate-card h3{ font-size:23px; font-weight:800; margin-bottom:10px; color:var(--dark); }
.rate-card.feat h3{ color:var(--dark); }
.rate-card p{ font-size:14px; color:var(--gray); }
.rate-card.feat p{ color:rgba(15,32,24,.65); }
.dur-strip{ border-top:1px solid rgba(255,255,255,.14); margin-top:44px; padding-top:36px; display:grid; grid-template-columns:repeat(3,1fr); gap:32px; text-align:center; }
.dur-num{ font-size:34px; font-weight:800; color:var(--gold-lt); }
.dur-label{ font-size:13.5px; color:var(--sand); margin-top:4px; }

/* FAQ — acordeón (SEO + reduce fricción) */
.faq-list{ max-width:820px; margin:0 auto; }
.faq-item{ border-bottom:1px solid rgba(23,36,27,.1); }
.faq-q{ width:100%; text-align:left; background:none; border:none; cursor:pointer; padding:22px 4px; display:flex; justify-content:space-between; align-items:center; gap:16px; font-family:'Montserrat',sans-serif; font-size:16px; font-weight:700; color:var(--ink); }
.faq-q .plus{ flex:none; width:22px; height:22px; position:relative; }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background:var(--gold); border-radius:2px; transition:var(--t); }
.faq-q .plus::before{ left:0; top:9px; width:22px; height:2.5px; }
.faq-q .plus::after{ left:9px; top:0; width:2.5px; height:22px; }
.faq-item.open .faq-q .plus::after{ transform:rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-item.open .faq-a{ max-height:400px; }
.faq-a p{ padding:0 4px 22px; font-size:14.5px; color:var(--gray); line-height:1.8; max-width:700px; }

/* OPINIONES */
.test-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:40px; }
.test-card{ background:var(--white); border:1.5px solid rgba(15,32,24,0.1); border-radius:var(--radius-lg); padding:32px; transition:var(--t); }
.test-card:hover{ transform:translateY(-5px); box-shadow:0 18px 36px rgba(15,32,24,0.1); border-color:rgba(200,134,10,0.25); }
.test-stars{ color:var(--gold); font-size:14px; margin-bottom:14px; letter-spacing:2px; }
.test-card blockquote{ font-size:14px; font-style:italic; line-height:1.72; color:var(--ink); margin-bottom:20px; }
.test-author{ font-size:13px; font-weight:700; color:var(--ink); }
.test-origin{ font-size:12px; color:var(--gray); margin-top:2px; }

.reviews-cta{
  max-width:640px; margin:0 auto; text-align:center; background:var(--paper);
  border-radius:var(--radius-lg); padding:40px 40px; position:relative;
}
.reviews-cta h4{ font-size:19px; font-weight:800; margin-bottom:8px; }
.reviews-cta p{ font-size:13.5px; color:var(--gray); margin-bottom:22px; }

/* CÓMO FUNCIONA — stepper vertical */
.how-layout{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:start; }
.how-photo-card{ background:rgba(255,255,255,0.05); border-radius:var(--radius-lg); overflow:hidden; position:sticky; top:100px; }
.how-photo-card img{ width:100%; aspect-ratio:4/3; object-fit:cover; }
.how-photo-card-body{ padding:26px 28px 30px; }
.how-photo-card-body h4{ font-size:19px; font-weight:800; margin-bottom:10px; }
.how-photo-card-body p{ font-size:13.5px; color:var(--sand); margin-bottom:20px; line-height:1.7; }
.steps{ position:relative; padding-left:8px; }
.step{ position:relative; padding:0 0 44px 52px; }
.step:last-child{ padding-bottom:0; }
.step::before{ content:''; position:absolute; left:15px; top:34px; bottom:-10px; width:1px; background:rgba(255,255,255,.14); }
.step:last-child::before{ display:none; }
.step-num{ position:absolute; left:0; top:0; width:32px; height:32px; border-radius:50%; background:rgba(232,184,75,0.16); border:1px solid rgba(232,184,75,.4); color:var(--gold-lt); font-weight:800; font-size:13px; display:flex; align-items:center; justify-content:center; }
.step h4{ font-size:18px; font-weight:700; margin-bottom:8px; }
.step p{ font-size:14px; color:var(--sand); line-height:1.7; max-width:440px; }

/* CTA BAND + FOOTER */
.cta-band{ background:var(--green-2); text-align:center; padding:90px 28px; }
.cta-band h2{ font-size:clamp(30px,5vw,50px); font-weight:800; color:var(--cream); margin-bottom:16px; letter-spacing:-0.5px; }
.cta-band h2 .hi{ color:var(--gold-lt); }
.cta-band p{ font-size:16px; color:var(--sand); margin-bottom:36px; }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

footer{ background:#0A140E; padding:64px 0 32px; color:var(--sand); }
.footer-grid{ display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.ft-brand h3{ font-size:17px; font-weight:800; color:var(--cream); letter-spacing:0.5px; margin-bottom:12px; }
.ft-brand h3 .hi{ color:var(--gold-lt); }
.ft-brand p{ font-size:13px; color:rgba(214,199,161,.55); line-height:1.7; margin-bottom:18px; }
.ft-social{ display:flex; gap:10px; }
.social-ico{ width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; color:var(--sand); font-size:14px; transition:var(--t); }
.social-ico:hover{ background:var(--gold-lt); color:var(--dark); }
.ft-col h4{ font-size:12px; font-weight:700; letter-spacing:1px; color:var(--cream); margin-bottom:14px; }
.ft-links{ display:flex; flex-direction:column; gap:9px; }
.ft-links a{ font-size:13.5px; color:rgba(214,199,161,.55); }
.ft-links a:hover{ color:var(--cream); }
.ft-bottom{ border-top:1px solid rgba(255,255,255,.06); padding-top:22px; display:flex; justify-content:space-between; font-size:11.5px; color:rgba(214,199,161,.35); flex-wrap:wrap; gap:10px; }

.wa-float{ position:fixed; right:24px; bottom:24px; z-index:150; width:58px; height:58px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; font-size:27px; box-shadow:0 10px 28px rgba(0,0,0,.35); transition:var(--t); }
.wa-float:hover{ transform:translateY(-3px) scale(1.05); }

@media (max-width:1024px){
  .value-grid, .card-grid-3, .card-grid-6, .test-grid, .card-grid-4{ grid-template-columns:repeat(2,1fr); }
  .camper-layout{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .equip-row{ grid-template-columns:repeat(2,1fr); }
  .how-layout{ grid-template-columns:1fr; }
  .how-photo-card{ position:static; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid .wide{ grid-column:span 2; }
}
@media (max-width:768px){
  .sec{ padding:64px 0; }
  .value-grid, .card-grid-3, .card-grid-6, .test-grid, .card-grid-4{ grid-template-columns:1fr; }
  .dur-strip{ grid-template-columns:1fr; gap:20px; }
  .footer-grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:38px; }
  .gallery-grid{ grid-template-columns:1fr; }
  .gallery-grid .wide{ grid-column:span 1; }
}

/* ══════════════════════════════════════════════════════════
   MÓDULO COTIZADOR — idéntico a v7 (no modificar la lógica)
══════════════════════════════════════════════════════════ */
#cotizar .quick-card{ background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:var(--radius-lg); padding:28px 32px; margin-bottom:24px; }
#cotizar .quick-card h3{ font-weight:700; font-size:18px; margin:0 0 8px; color:var(--cream); }
#cotizar .quick-card p{ margin:0 0 18px; font-size:13.5px; color:var(--sand); line-height:1.6; max-width:520px; }
#cotizar .quick-fields{ display:grid; grid-template-columns:1fr 1.6fr; gap:12px; margin-bottom:16px; align-items:start; }
#cotizar .quick-fields input,#cotizar .quick-fields textarea{ width:100%; background:rgba(255,255,255,.06); border:1.5px solid rgba(255,255,255,.16); border-radius:10px; padding:12px 14px; color:var(--cream); font-family:'Montserrat',sans-serif; font-size:14px; outline:none; }
#cotizar .quick-fields textarea{ resize:vertical; min-height:44px; }
#cotizar .quick-fields input::placeholder,#cotizar .quick-fields textarea::placeholder{ color:rgba(214,199,161,.5); }
#cotizar .quick-fields input:focus,#cotizar .quick-fields textarea:focus{ border-color:var(--gold-lt); }
#cotizar .quick-field.invalid input,#cotizar .quick-field.invalid textarea{ border-color:#E2665A; }
#cotizar .quick-field.invalid .error-text{ display:block; }

#cotizar .or-divider{ text-align:center; font-size:13px; color:var(--sand); margin:32px 0; font-weight:500; }

#cotizar .ticket{ display:flex; align-items:stretch; border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 30px 70px -30px rgba(0,0,0,.5); }
#cotizar .form-card{ background:rgba(255,255,255,0.05); flex:1.65; padding:44px 44px 40px; }
#cotizar .divider{ width:1px; background:rgba(255,255,255,.12); flex:none; }
#cotizar .stub{ background:rgba(0,0,0,0.15); flex:1; min-width:270px; padding:40px 32px; display:flex; flex-direction:column; gap:20px; position:relative; overflow:hidden; }
#cotizar .stub-eyebrow{ font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gold-lt); display:flex; justify-content:space-between; }
#cotizar .stub-row{ display:flex; flex-direction:column; gap:5px; }
#cotizar .stub-label{ font-size:11px; text-transform:uppercase; letter-spacing:1px; color:var(--sand); }
#cotizar .stub-value{ font-size:15px; font-weight:600; color:var(--cream); }
#cotizar .stub-route{ display:flex; align-items:center; gap:10px; font-size:22px; font-weight:800; color:var(--cream); }
#cotizar .stub-route .arrow{ color:var(--gold-lt); font-size:16px; }
#cotizar .stub-addons{ display:flex; flex-direction:column; gap:5px; font-size:13px; color:var(--sand); }
#cotizar .stub-fine{ margin-top:auto; font-size:11.5px; color:rgba(214,199,161,.6); border-top:1px dashed rgba(255,255,255,.18); padding-top:14px; line-height:1.55; }

#cotizar .stamp{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(15,32,24,.7); opacity:0; pointer-events:none; transition:opacity .25s ease; }
#cotizar .stamp.show{ opacity:1; }
#cotizar .stamp span{ border:3px solid var(--gold-lt); color:var(--gold-lt); text-transform:uppercase; letter-spacing:1.5px; font-weight:800; padding:10px 22px; border-radius:10px; transform:rotate(-8deg); animation:czStampIn .35s ease; }
@keyframes czStampIn{ from{transform:rotate(-8deg) scale(1.6); opacity:0;} to{transform:rotate(-8deg) scale(1); opacity:1;} }

#cotizar .reveal{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
#cotizar .reveal.in-view{ opacity:1; transform:translateY(0); }

#cotizar .field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:20px; }
#cotizar .field{ margin-bottom:20px; }
#cotizar label.field-label{ display:block; font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--gold-lt); margin-bottom:8px; font-weight:700; }
#cotizar input[type="text"],#cotizar input[type="tel"],#cotizar input[type="email"],#cotizar input[type="date"],#cotizar textarea{
  width:100%; padding:13px 15px; background:rgba(255,255,255,.06);
  border:1.5px solid rgba(255,255,255,.16); border-radius:10px;
  font-family:'Montserrat',sans-serif; font-size:14.5px; color:var(--cream); outline:none;
  transition:border-color .15s ease, box-shadow .15s ease;
}
#cotizar input::placeholder,#cotizar textarea::placeholder{ color:rgba(214,199,161,.5); }
#cotizar input:focus,#cotizar textarea:focus{ border-color:var(--gold-lt); box-shadow:0 0 0 3px rgba(232,184,75,.15); }
#cotizar textarea{ resize:vertical; min-height:80px; }
#cotizar input[type="date"]{ color-scheme:dark; }
#cotizar .error-text{ display:none; color:#E2665A; font-size:12px; margin-top:6px; }
#cotizar .field.invalid input{ border-color:#E2665A; }
#cotizar .field.invalid .error-text{ display:block; }

#cotizar .pill-group{ display:flex; gap:10px; flex-wrap:wrap; }
#cotizar .pill-group input{ position:absolute; opacity:0; width:0; height:0; }
#cotizar .pill{ display:inline-flex; align-items:center; padding:10px 20px; border:1.5px solid rgba(232,184,75,.4); border-radius:var(--radius-sm); font-size:13.5px; font-weight:600; cursor:pointer; color:var(--gold-lt); transition:all .15s ease; user-select:none; }
#cotizar .pill-group input:checked + .pill{ background:var(--gold-lt); border-color:var(--gold-lt); color:var(--dark); }
#cotizar .pill-group input:focus-visible + .pill{ box-shadow:0 0 0 3px rgba(232,184,75,.25); }
#cotizar .note{ font-size:13px; color:var(--sand); margin-top:10px; display:none; line-height:1.6; }
#cotizar .note.show{ display:block; }

#cotizar .addon-list{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
#cotizar .addon-card{ display:flex; gap:13px; align-items:flex-start; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:var(--radius-md); padding:16px; cursor:pointer; transition:var(--t); position:relative; height:100%; }
#cotizar .addon-card:hover{ border-color:rgba(232,184,75,.4); }
#cotizar .addon-card input{ position:absolute; opacity:0; width:0; height:0; }
#cotizar .addon-card svg{ flex:none; width:22px; height:22px; color:var(--gold-lt); margin-top:1px; }
#cotizar .addon-title{ font-weight:700; font-size:14.5px; color:var(--cream); }
#cotizar .addon-desc{ font-size:12px; color:var(--sand); margin-top:3px; line-height:1.45; }
#cotizar .addon-check{ flex:none; width:19px; height:19px; border-radius:5px; border:1.5px solid rgba(232,184,75,.4); display:flex; align-items:center; justify-content:center; margin-left:auto; margin-top:2px; }
#cotizar .addon-check svg{ width:12px; height:12px; color:var(--dark); opacity:0; }
#cotizar .addon-card.checked{ background:rgba(232,184,75,.12); border-color:var(--gold-lt); }
#cotizar .addon-card.checked .addon-check{ background:var(--gold-lt); border-color:var(--gold-lt); }
#cotizar .addon-card.checked .addon-check svg{ opacity:1; }

#cotizar .restkit-card{ align-items:flex-start; }
#cotizar .restkit-info{ flex:1; }
#cotizar .stepper{ display:flex; align-items:center; gap:10px; flex:none; align-self:center; }
#cotizar .stepper button{ width:28px; height:28px; border-radius:50%; border:1.5px solid var(--gold-lt); background:transparent; color:var(--gold-lt); font-size:16px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:opacity .15s ease; }
#cotizar .stepper button:disabled{ opacity:.3; cursor:default; }
#cotizar .stepper span{ font-weight:700; font-size:16px; min-width:14px; text-align:center; color:var(--cream); }

#cotizar .season-note{ display:flex; gap:13px; align-items:flex-start; background:rgba(232,184,75,.08); border:1px solid rgba(232,184,75,.3); border-radius:var(--radius-md); padding:16px; margin-top:0; height:100%; }
#cotizar .season-note svg{ flex:none; width:20px; height:20px; color:var(--gold-lt); margin-top:1px; }
#cotizar .season-note .addon-title{ font-size:14px; }
#cotizar .season-note .addon-desc{ color:var(--sand); }

#cotizar .form-status{ font-size:13px; color:var(--gold-lt); margin-top:14px; line-height:1.5; display:none; }
#cotizar .form-status.show{ display:block; }

#cotizar .trust-row{ display:flex; gap:28px; flex-wrap:wrap; margin:32px 4px 0; }
#cotizar .trust-item{ display:flex; align-items:center; gap:8px; font-size:13px; color:var(--sand); }
#cotizar .trust-item svg{ width:16px; height:16px; color:var(--gold-lt); flex:none; }

@media (max-width:860px){
  #cotizar .ticket{ flex-direction:column; }
  #cotizar .form-card{ padding:32px 24px 28px; }
  #cotizar .divider{ width:auto; height:1px; }
  #cotizar .stub{ padding:28px 24px; }
  #cotizar .field-row{ grid-template-columns:1fr; gap:0; }
  #cotizar .quick-fields{ grid-template-columns:1fr; }
  #cotizar .addon-list{ grid-template-columns:1fr; }
}
