/* ========================================
   WalkMe Travel · Sistema de diseño compartido
   Fuente única: usado por home, xcaret, tours y bikes (ES + EN).
   No cambiar variables ni nombres de clases sin avisar.
   ======================================== */

@font-face {
  font-family: 'GTEesti';
  src: url('../uploads/GT Eesti Pro Display Bold - OTF-ef657e90.otf') format('opentype');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'TravelSoul';
  src: url('../uploads/Travel Soulmates Weight - OTF-4b584a0a.otf') format('opentype');
  font-display: swap;
}

:root {
  --green:     #0d2e1a;
  --green-mid: #174a27;
  --orange:    #D4821A;
  --pink:      #E8397D;
  --yellow:    #F2DE4A;
  --cream:     #f7f5ef;
  --wa:        #25D366;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'GTEesti', 'Helvetica Neue', sans-serif;
  background: var(--cream);
  color: var(--green);
}
img { max-width: 100%; display: block; }

/* ───── NAV ───── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  background: transparent;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
nav.nav--solid {
  background: rgba(13,46,26,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo img { height: 46px; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }
.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-toggle { display: flex; background: rgba(255,255,255,0.08); border-radius: 20px; padding: 3px; gap: 2px; }
.lang-toggle a {
  padding: 5px 13px; border-radius: 16px;
  font-family: 'GTEesti', sans-serif; font-size: 12px; font-weight: bold;
  background: transparent; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: all .2s;
}
.lang-toggle a.active { background: var(--yellow); color: var(--green); }

.nav-wa {
  display: flex; align-items: center; gap: 8px;
  background: var(--pink); color: white; text-decoration: none;
  padding: 10px 20px; border-radius: 24px;
  font-size: 13px; font-weight: bold; letter-spacing: 0.02em;
  transition: transform .2s, background .2s;
}
.nav-wa:hover { transform: scale(1.04); background: #d12a6c; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; padding: 0;
  background: transparent; border: none; cursor: pointer; color: var(--yellow);
}
.nav-toggle svg { display: block; }

/* ───── HERO ───── */
.hero {
  min-height: 88vh;
  background: url('img/fondo-hero-walkme.jpg');
  background-size: cover; background-position: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 140px 24px 100px; position: relative; overflow: hidden;
}
.hero--tall { min-height: 100vh; }
.hero-badge {
  display: inline-block; background: var(--orange); color: white;
  font-size: 11px; font-weight: bold; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 20px; margin-bottom: 28px;
}
.hero-title {
  font-family: 'TravelSoul', serif;
  color: var(--yellow);
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.92; margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.hero-title em { color: var(--pink); display: block; font-style: normal; }
.hero-pre {
  font-family: 'GTEesti', sans-serif;
  font-size: clamp(28px, 4.5vw, 50px);
  display: block; letter-spacing: -0.01em; opacity: 0.85;
  color: var(--yellow);
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.hero-title .hl {
  display: inline-block;
  animation: heroLetterIn .5s cubic-bezier(0.23,1,0.32,1) both;
}
.hero-title .hl.settled { animation: none; transform: none; }
@keyframes heroLetterIn {
  from { opacity: 0; transform: perspective(400px) rotateX(-90deg); }
  to   { opacity: 1; transform: perspective(400px) rotateX(0deg); }
}
.hero-loc {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 32px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero-loc span:first-child, .hero-loc span:last-child { width: 24px; height: 1px; background: currentColor; flex-shrink: 0; }
.hero-sub {
  color: rgba(255,255,255,0.75); font-size: clamp(16px, 2vw, 19px);
  max-width: 540px; margin: 0 auto 36px; line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-y, .btn-wa {
  background: var(--yellow); color: var(--green);
  padding: 16px 30px; border-radius: 32px; text-decoration: none;
  font-weight: bold; font-size: 15px; transition: transform .2s;
  display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer;
  font-family: 'GTEesti', sans-serif;
}
.btn-y:hover, .btn-wa:hover { transform: scale(1.04); }
.btn-wa { background: var(--wa); color: white; }
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.25); color: white;
  padding: 14px 28px; border-radius: 32px; text-decoration: none;
  font-size: 15px; transition: border-color .2s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-ghost:hover { border-color: white; }
.btn-green {
  background: var(--green); color: var(--yellow);
  padding: 16px 30px; border-radius: 32px; text-decoration: none;
  font-weight: bold; font-size: 15px; transition: transform .2s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-green:hover { transform: scale(1.04); }

/* ───── SECTION HEADERS ───── */
.section { padding: 80px 48px; }
.section--green { background: var(--green); }
.section--yellow { background: var(--yellow); }
.section--cream { background: var(--cream); }
.s-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); opacity: 0.55; margin-bottom: 8px;
}
.section--green .s-label { color: var(--yellow); opacity: 0.55; }
.s-title {
  font-family: 'TravelSoul', serif;
  font-size: clamp(40px, 6.5vw, 76px);
  color: var(--green); line-height: 0.95; margin-bottom: 36px;
}
.section--green .s-title { color: var(--yellow); }
.s-intro {
  font-size: 16px; color: #555; max-width: 640px; line-height: 1.65;
  margin: -16px 0 40px;
}
.section--green .s-intro { color: rgba(255,255,255,0.7); }

/* ───── ANCHO DE CONTENIDO ─────
   Caja centrada compartida por el encabezado (s-label/s-title/s-intro) y su
   bloque de contenido, para que ambos arranquen en el mismo pixel. */
:root { --content: 1400px; }
.s-wrap       { max-width: var(--content); margin-left: auto; margin-right: auto; }
.s-wrap--760  { max-width: 760px; }   /* FAQ (.faq-list) */
.s-wrap--1000 { max-width: 1000px; }  /* Arma tu paquete (.pkg) */
.s-wrap--1060 { max-width: 1060px; }  /* .tours-grid--3col */

/* ───── TRUST STRIP ───── */
.trust {
  background: var(--green); padding: 36px 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-item { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.trust-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(242,222,74,0.12); color: var(--yellow);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-txt strong { display: block; color: white; font-size: 14px; margin-bottom: 2px; }
.trust-txt span { display: block; color: rgba(255,255,255,0.55); font-size: 12px; line-height: 1.4; }

/* ───── OFFICIAL BADGE ───── */
.official-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--yellow);
  padding: 8px 20px; border-radius: 20px;
  font-size: 12px; font-weight: bold; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 28px;
}

/* ───── XCARET INTRO (lead + features) ───── */
.xintro { max-width: 740px; margin: 0 auto; text-align: center; }
.xintro p { font-size: 16px; color: #555; line-height: 1.7; margin: 0 auto 16px; max-width: 660px; }
.xintro p.lead { font-size: 20px; color: var(--green); font-weight: bold; line-height: 1.45; margin-bottom: 20px; }
.xintro-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 720px; margin: 40px auto 0;
}
.xfeat { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.xfeat-ic {
  width: 52px; height: 52px; border-radius: 15px;
  background: rgba(13,46,26,0.06); color: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.xfeat span { font-size: 13px; color: var(--green); line-height: 1.35; font-weight: bold; }
@media (max-width: 640px) { .xintro-features { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ───── CARD DESCRIPTION (una línea por ficha) ───── */
.t-desc {
  font-size: 12.5px; color: #666; line-height: 1.45;
  margin: 4px 0 8px;
}

/* ───── TOUR GRID & CARDS ───── */
.tours-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px;
}
.tours-grid--center {
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  justify-content: center;
}
.tours-grid--3col {
  grid-template-columns: repeat(3, minmax(260px, 340px));
  justify-content: center;
}
@media (max-width: 900px) {
  .tours-grid--3col { grid-template-columns: repeat(2, minmax(260px, 340px)); }
}
@media (max-width: 600px) {
  .tours-grid--3col { grid-template-columns: minmax(260px, 1fr); }
}
.t-card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  transition: transform .25s cubic-bezier(0.23,1,0.32,1), box-shadow .25s cubic-bezier(0.23,1,0.32,1);
}
.t-img { height: 148px; position: relative; overflow: hidden; transition: transform .5s cubic-bezier(0.23,1,0.32,1); }
@media (hover: hover) and (pointer: fine) {
  .t-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.13); }
  .t-card:hover .t-img { transform: scale(1.05); }
}
.t-img-xcaret { background: linear-gradient(135deg, #0d2e1a 0%, #1e6636 60%, #D4821A 100%); }
.t-img-ocean  { background: linear-gradient(135deg, #06334a 0%, #0e7a9e 60%, #5fd3e0 100%); }
.t-img-jungle { background: linear-gradient(135deg, #1a3a10 0%, #2d7a24 60%, #a3d44e 100%); }
.t-img-arch   { background: linear-gradient(135deg, #2a1500 0%, #7a4f0d 60%, #D4821A 100%); }
.t-img-sea    { background: linear-gradient(135deg, #04294a 0%, #0a5f8a 60%, #3dc4e0 100%); }
.t-cat-tag {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.45); color: white;
  font-size: 10px; padding: 3px 10px; border-radius: 8px;
  letter-spacing: 0.06em; backdrop-filter: blur(4px);
}
.t-promo {
  position: absolute; top: 10px; right: 10px;
  background: var(--pink); color: white;
  font-size: 10px; font-weight: bold; padding: 3px 10px; border-radius: 8px;
}
.t-body { padding: 18px 18px 4px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.t-name { font-size: 16px; font-weight: bold; color: var(--green); line-height: 1.2; }
.t-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.t-chip {
  font-size: 10px; color: #888;
  background: var(--cream); padding: 3px 8px; border-radius: 6px;
  letter-spacing: 0.04em;
}
.t-desc { font-size: 12px; color: #777; line-height: 1.5; }
.t-bullets { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-top: 2px; }
.t-bullets li { font-size: 12px; color: #666; display: flex; gap: 6px; line-height: 1.4; }
.t-bullets li::before { content: '·'; color: var(--orange); font-weight: bold; }
.t-note { font-size: 11px; color: var(--orange); font-weight: bold; }
.t-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: var(--yellow); text-decoration: none;
  padding: 13px 18px; margin: 16px 18px 18px;
  border-radius: 12px; font-weight: bold; font-size: 13px;
  transition: background .2s;
}
.t-btn:hover { background: var(--orange); color: white; }

/* ───── COTIZADOR · precios visibles + modal ───── */
.t-quote {
  margin: 12px 18px 0;
  padding-top: 14px;
  border-top: 1px solid #f0ebde;
  display: flex; flex-direction: column; gap: 10px;
}
.t-prices-row { display: flex; gap: 18px; align-items: flex-end; }
.t-pr { display: flex; flex-direction: column; }
.t-plbl { font-size: 10px; color: #aaa; text-transform: uppercase; letter-spacing: 0.06em; }
.t-pval { font-size: 22px; font-weight: bold; color: var(--green); line-height: 1.1; }
.t-pval .t-pcur { font-size: 11px; color: #999; font-weight: normal; margin-left: 3px; letter-spacing: 0.04em; }
.t-pr-tbc { font-size: 11px; color: #999; line-height: 1.4; max-width: 180px; font-style: italic; }
.t-notes { display: flex; flex-direction: column; gap: 3px; }
.t-note-pdc { font-size: 11px; color: var(--green); display: flex; gap: 5px; align-items: flex-start; line-height: 1.35; }
.t-note-pdc::before { content: '●'; color: var(--orange); flex-shrink: 0; font-size: 9px; line-height: 1.6; }
.t-note-other { font-size: 11px; color: #999; display: flex; gap: 5px; align-items: flex-start; line-height: 1.35; }
.t-note-other::before { content: '○'; color: #ccc; flex-shrink: 0; font-size: 9px; line-height: 1.6; }
.t-btn-quote {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: var(--yellow); text-decoration: none;
  padding: 13px 16px; margin: 12px 18px 18px;
  border-radius: 12px; font-weight: bold; font-size: 13px;
  transition: background .2s; border: none; cursor: pointer;
  font-family: 'GTEesti', sans-serif; width: calc(100% - 36px);
  line-height: 1.2; text-align: center;
}
.t-btn-quote:hover { background: var(--orange); color: white; }

/* MODAL */
.qmodal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .2s cubic-bezier(0.23,1,0.32,1);
}
.qmodal.open { opacity: 1; pointer-events: all; transition: opacity .28s cubic-bezier(0.32,0.72,0,1); }
.qmodal-bg {
  position: absolute; inset: 0; background: rgba(13,46,26,0.55);
  backdrop-filter: blur(6px);
}
.qmodal-box {
  position: relative; background: white; border-radius: 24px;
  width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto;
  padding: 32px 28px 28px;
  transform: translateY(16px) scale(.97); opacity: 0;
  transition: transform .2s cubic-bezier(0.23,1,0.32,1), opacity .2s cubic-bezier(0.23,1,0.32,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.qmodal.open .qmodal-box {
  transform: translateY(0) scale(1); opacity: 1;
  transition: transform .32s cubic-bezier(0.32,0.72,0,1), opacity .28s cubic-bezier(0.32,0.72,0,1);
}
.qmodal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); border: none; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--green);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.qmodal-close:hover { background: #ede7d6; }
.qmodal-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--orange); font-weight: bold; margin-bottom: 4px;
}
.qmodal-name {
  font-family: 'GTEesti', sans-serif;
  font-size: 36px; line-height: 1; color: var(--green); margin-bottom: 22px;
  padding-right: 36px;
}
.qm-field { margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.qm-field label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #888; font-weight: bold;
}
.qm-field input, .qm-field select {
  width: 100%; padding: 12px 14px; border: 2px solid #e8e3d6;
  border-radius: 11px; font-family: 'GTEesti', sans-serif;
  font-size: 15px; color: var(--green); background: white; outline: none;
  transition: border-color .2s;
}
.qm-field input:focus, .qm-field select:focus { border-color: var(--green); }
.qm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qm-total {
  background: var(--cream); border-radius: 14px; padding: 16px 18px;
  margin: 18px 0 14px; min-height: 64px;
  display: flex; flex-direction: column; gap: 4px;
}
.qm-total.pdc { background: var(--yellow); }
.qm-total.custom { background: #fff3eb; }
.qm-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; color: var(--green);
}
.qm-total-row.main { font-weight: bold; font-size: 18px; }
.qm-total-row .qm-total-val { font-size: 22px; font-weight: bold; }
.qm-total-note { font-size: 11px; color: #555; line-height: 1.45; margin-top: 4px; }
.qm-submit {
  width: 100%; background: var(--wa); color: white;
  padding: 16px; border-radius: 32px; border: none;
  font-family: 'GTEesti', sans-serif; font-size: 16px; font-weight: bold;
  cursor: pointer; transition: transform .2s, opacity .2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 4px;
}
.qm-submit:hover:not(:disabled) { transform: scale(1.02); }
.qm-submit:disabled { opacity: 0.45; cursor: not-allowed; }
.qm-disclaimer { font-size: 11px; color: #999; line-height: 1.5; text-align: center; margin-top: 10px; }
@media (max-width: 480px) {
  .qmodal-box { padding: 28px 20px 22px; border-radius: 20px; }
  .qmodal-name { font-size: 30px; }
  .qm-row { grid-template-columns: 1fr; }
}

/* ───── PASOS (Cómo reservar) ───── */
.pasos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px;
}
.paso { display: flex; flex-direction: column; gap: 10px; }
.paso-n {
  font-family: 'GTEesti', sans-serif; font-size: 28px; line-height: 1;
  color: var(--cream); background: var(--green);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.num-fix { font-family: 'GTEesti', sans-serif; }
.paso-t { font-size: 19px; font-weight: bold; color: var(--green); }
.paso-d { font-size: 14px; color: var(--green); opacity: 0.7; line-height: 1.55; }

/* ───── BIKE PROMO (home block) ───── */
.bike-promo {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
  background: var(--green); border-radius: 28px; padding: 56px;
}
.bike-promo .s-label { color: var(--yellow); opacity: 0.6; }
.bike-promo .s-title { color: var(--yellow); margin-bottom: 16px; }
.bike-promo p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.65; margin-bottom: 24px; max-width: 460px; }
.bike-promo-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.bike-promo-img {
  border-radius: 20px;
  background: linear-gradient(155deg, #1a6636 0%, #D4821A 100%);
  height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.bike-promo-img img { width: 180px; opacity: 0.9; }

/* ───── FOOTER ───── */
/* ───── TIBURÓN BALLENA ───── */
.tibu-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px;
  align-items: center; max-width: 1080px; margin: 0 auto; text-align: left;
}
.tibu-grid--align-top { align-items: start; }
.tibu-price-row { display: flex; gap: 16px; flex-wrap: wrap; margin: 0 0 20px; }
.tibu-disclaimer { font-size: 13px; color: rgba(255,255,255,0.75); }
.tibu-includes {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 8px 24px;
  font-size: 15px; color: rgba(255,255,255,0.9);
}
.tibu-season-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white;
  font-size: 12px; font-weight: bold; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 20px; margin-bottom: 20px;
}
.tibu-why {
  font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6;
  margin: 0 0 20px; max-width: 560px;
}
.tibu-stats { display: flex; gap: 14px; flex-wrap: wrap; margin: 0 0 24px; }
.tibu-stat {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px; padding: 12px 18px;
}
.tibu-stat strong { display: block; font-size: 15px; color: var(--yellow); }
.tibu-stat span { display: block; font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.tibu-video-wrap { display: flex; justify-content: center; }
.tibu-phone {
  width: 100%; max-width: 280px; aspect-ratio: 9/16; object-fit: cover;
  border-radius: 32px; border: 6px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45); display: block;
}
@media (max-width: 900px) {
  .tibu-grid { grid-template-columns: 1fr; text-align: center; }
  .tibu-video-wrap { order: -1; margin-bottom: 8px; }
  .tibu-stats, .tibu-price-row { justify-content: center; }
  .tibu-why { margin-left: auto; margin-right: auto; }
}

footer { background: #022814; padding: 52px 48px 28px; } /* verde exacto del logo */
.f-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
.f-logo img { height: 56px; }
.f-logo p { color: rgba(255,255,255,0.45); font-size: 13px; margin-top: 10px; max-width: 240px; line-height: 1.5; }
.f-col h4 { color: rgba(255,255,255,0.45); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.f-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; margin-bottom: 8px; transition: color .2s; }
.f-col a:hover { color: var(--yellow); }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.f-bottom span { color: rgba(255,255,255,0.35); font-size: 12px; }

/* ───── WA FAB ───── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 62px; height: 62px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45); text-decoration: none;
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.1); }
.wa-fab-ring {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: var(--wa); opacity: 0.35; animation: wapulse 2.2s infinite;
}
@keyframes wapulse { 0%,100% { transform: scale(1); opacity: .35; } 60% { transform: scale(1.55); opacity: 0; } }

/* ───── FORM (Bikes) ───── */
.bike-form {
  max-width: 720px; margin: 0 auto; background: white;
  border-radius: 28px; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.bike-form h2 { font-family: 'TravelSoul', serif; font-size: clamp(36px, 5vw, 56px); color: var(--green); line-height: 1; margin-bottom: 6px; }
.bike-form .form-sub { color: #777; font-size: 14px; margin-bottom: 28px; line-height: 1.55; }
.field { margin-bottom: 22px; }
.field-label {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: #888; margin-bottom: 8px; font-weight: bold;
}
.field-input, .field-select {
  width: 100%; padding: 14px 16px; border: 2px solid #e8e3d6;
  border-radius: 12px; font-family: 'GTEesti', sans-serif;
  font-size: 15px; color: var(--green); background: white; outline: none;
  transition: border-color .2s;
}
.field-input:focus, .field-select:focus { border-color: var(--green); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bike-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.bike-type {
  border: 2px solid #e8e3d6; border-radius: 14px; padding: 16px;
  cursor: pointer; transition: all .2s; background: white;
  display: flex; flex-direction: column; gap: 4px;
}
.bike-type:hover { border-color: var(--orange); }
.bike-type input { display: none; }
.bike-type-name { font-weight: bold; color: var(--green); font-size: 15px; }
.bike-type-desc { font-size: 12px; color: #888; line-height: 1.4; }
.bike-type.checked { border-color: var(--green); background: var(--green); color: var(--yellow); }
.bike-type.checked .bike-type-name { color: var(--yellow); }
.bike-type.checked .bike-type-desc { color: rgba(255,255,255,0.7); }
.bike-type-photo { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
.terms-box {
  background: var(--cream); border-radius: 14px; padding: 16px 18px;
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px;
}
.terms-box input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; cursor: pointer; accent-color: var(--green); }
.terms-box label { font-size: 13px; color: #555; line-height: 1.55; cursor: pointer; }
.terms-box a { color: var(--green); font-weight: bold; }
.bike-submit {
  width: 100%; background: var(--wa); color: white;
  padding: 18px; border-radius: 32px; border: none;
  font-family: 'GTEesti', sans-serif; font-size: 17px; font-weight: bold;
  cursor: pointer; transition: transform .2s, opacity .2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
}
.bike-submit:hover:not(:disabled) { transform: scale(1.02); }
.bike-submit:disabled { opacity: 0.4; cursor: not-allowed; }
.bike-prices-strip {
  background: var(--yellow); padding: 22px 32px; border-radius: 18px;
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.bike-price-chip { display: flex; flex-direction: column; align-items: center; }
.bike-price-val { font-size: 24px; font-weight: bold; color: var(--green); line-height: 1; }
.bike-price-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); opacity: 0.65; margin-top: 4px; }

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
  nav { padding: 12px 16px; gap: 8px; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--green);
    padding: 8px 20px 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-wa span { display: none; }
  .nav-wa { padding: 10px 14px; }
  .section { padding: 60px 20px; }
  .trust { grid-template-columns: 1fr; padding: 28px 20px; gap: 18px; }
  .bike-promo { grid-template-columns: 1fr; padding: 36px 24px; gap: 28px; }
  .bike-promo-img { height: 220px; order: -1; }
  footer { padding: 48px 20px 24px; }
  .bike-form { padding: 28px 20px; border-radius: 22px; }
  .field-row { grid-template-columns: 1fr; }
  #bici-electrica .tibu-video-wrap,
  #e-bike .tibu-video-wrap { order: 0; }
}
@media (max-width: 480px) {
  .hero { padding: 130px 18px 80px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { justify-content: center; }
  .paso-n { width: 44px; height: 44px; font-size: 22px; }
}

/* ───── SCROLL REVEAL ───── */
.js :where([data-reveal]) {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s cubic-bezier(0.23,1,0.32,1), transform .6s cubic-bezier(0.23,1,0.32,1);
}
.js :where([data-reveal].is-visible) { opacity: 1; transform: translateY(0); }
.js [data-reveal][data-reveal-d="1"] { transition-delay: .08s; }
.js [data-reveal][data-reveal-d="2"] { transition-delay: .16s; }
.js [data-reveal][data-reveal-d="3"] { transition-delay: .24s; }

/* ───── ACCESIBILIDAD: reduced motion ───── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ───── SR-ONLY (imagen accesible/indexable sin duplicar carga visual) ───── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ───── FAQ ───── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border-radius: 16px; padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 0;
  font-weight: bold; font-size: 17px; color: var(--green);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: normal; color: var(--orange);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 18px; color: var(--green); opacity: 0.8; line-height: 1.5; }

/* ───── FICHAS · badge de video + modal de detalle ───── */
/* Badge de play sobre .t-img (el cotizador nunca toca .t-img) */
.t-play {
  position: absolute; bottom: 10px; right: 10px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; padding: 0;
  background: rgba(13,46,26,0.55); backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,0.55); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s cubic-bezier(0.23,1,0.32,1), background .2s;
}
.t-play svg { width: 16px; height: 16px; margin-left: 2px; }
.t-play:hover { background: var(--orange); transform: scale(1.08); }
.t-play:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* Overlay del modal (mismo lenguaje que .qmodal) */
.tmodal {
  position: fixed; inset: 0; z-index: 600;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .2s cubic-bezier(0.23,1,0.32,1);
}
.tmodal.open { opacity: 1; pointer-events: all; transition: opacity .28s cubic-bezier(0.32,0.72,0,1); }
.tmodal-bg { position: absolute; inset: 0; background: rgba(13,46,26,0.55); backdrop-filter: blur(6px); }
.tmodal-box {
  position: relative; background: #fff; border-radius: 24px;
  width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; outline: none;
  padding: 0 0 28px;
  transform: translateY(16px) scale(.97); opacity: 0;
  transition: transform .2s cubic-bezier(0.23,1,0.32,1), opacity .2s cubic-bezier(0.23,1,0.32,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.tmodal.open .tmodal-box {
  transform: translateY(0) scale(1); opacity: 1;
  transition: transform .32s cubic-bezier(0.32,0.72,0,1), opacity .28s cubic-bezier(0.32,0.72,0,1);
}
.tmodal-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15); transition: background .2s;
}
.tmodal-close:hover { background: #fff; }

/* Video del detalle: 16:9, póster + play manual (preload=none en el HTML) */
.t-detail-video {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: var(--green); border-radius: 24px 24px 0 0; overflow: hidden;
}
.t-detail-video video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--green); }
.t-detail-play {
  position: absolute; inset: 0; margin: auto;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(13,46,26,0.6); backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.7); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s cubic-bezier(0.23,1,0.32,1), background .2s;
}
.t-detail-play svg { width: 24px; height: 24px; margin-left: 3px; }
.t-detail-play:hover { background: var(--orange); transform: scale(1.08); }
.t-detail-video.playing .t-detail-play { display: none; }

/* Foto fija (tarjetas sin video): mismo marco 16:9 que el video */
.t-detail-photo {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: var(--green); border-radius: 24px 24px 0 0; overflow: hidden;
}
.t-detail-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.t-detail-head { padding: 20px 26px 0; }
.t-detail-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--orange); font-weight: bold; margin-bottom: 4px;
}
.t-detail-name {
  font-family: 'GTEesti', sans-serif; font-size: 30px; line-height: 1.05;
  color: var(--green); margin-bottom: 10px; padding-right: 30px;
}
.t-detail-lead { font-size: 14.5px; color: #555; line-height: 1.6; padding: 0 26px; margin-bottom: 18px; }
.t-detail-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 0 26px; margin-bottom: 20px;
}
.t-spec { background: var(--cream); border-radius: 12px; padding: 11px 14px; }
.t-spec-l { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: #999; margin-bottom: 3px; }
.t-spec-v { display: block; font-size: 13px; color: var(--green); font-weight: bold; line-height: 1.35; }
.t-detail-section { padding: 0 26px; margin-bottom: 20px; }
.t-detail-section h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green); margin-bottom: 10px; font-weight: bold;
}
.t-detail-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.t-detail-list li { font-size: 13.5px; color: #555; line-height: 1.45; display: flex; gap: 8px; }
.t-detail-list li::before { content: '✓'; color: var(--wa); font-weight: bold; flex-shrink: 0; }
.t-detail-list.is-no li::before { content: '·'; color: #bbb; font-weight: bold; }
/* FAQ dentro del modal reusa .faq-item, con fondo crema para contraste */
.t-detail-section .faq-list { gap: 8px; }
.t-detail-section .faq-item { background: var(--cream); }
.t-detail-section .faq-item summary { font-size: 14.5px; padding: 14px 0; }
.t-detail-section .faq-item p { font-size: 13.5px; }
.t-detail-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 4px 26px 0; background: var(--wa); color: #fff; text-decoration: none;
  padding: 15px; border-radius: 32px; font-weight: bold; font-size: 15px;
  transition: transform .2s;
}
.t-detail-cta:hover { transform: scale(1.02); }
.t-detail-cta svg { width: 18px; height: 18px; }
@media (max-width: 600px) {
  .tmodal-box { border-radius: 20px; max-height: 94vh; }
  .t-detail-video, .t-detail-photo { border-radius: 20px 20px 0 0; }
  .t-detail-name { font-size: 26px; }
  .t-detail-head, .t-detail-lead, .t-detail-section, .t-detail-cta { padding-left: 18px; padding-right: 18px; }
  .t-detail-cta { margin-left: 18px; margin-right: 18px; }
}

/* ═════════ ARMA TU PAQUETE · armador 20% (xcaret ES/EN) ═════════
   Panel verde sobre seccion crema, mismo lenguaje que .bike-promo.
   Solo usa tokens existentes: --green, --green-mid, --cream, --pink, --yellow, --wa */
.pkg {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 0;
  background: var(--green); border-radius: 28px; overflow: hidden;
  max-width: 1000px; margin: 40px auto 0; text-align: left;
}
.pkg-pick { padding: 34px 30px; min-width: 0; }
.pkg-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 20px;
}
/* Rosa sobre blanco da 3.95:1 -> solo apto para texto grande. Por eso 22px/bold. */
.pkg-badge {
  background: var(--pink); color: #fff; font-size: 22px; font-weight: bold;
  line-height: 1; padding: 11px 16px; border-radius: 14px; letter-spacing: -0.01em;
  flex-shrink: 0;
}
.pkg-zone { display: flex; flex-direction: column; gap: 5px; min-width: 190px; flex: 1; }
.pkg-zone label { font-size: 12px; color: var(--cream); opacity: .7; letter-spacing: .04em; }
.pkg-zone select {
  font-family: inherit; font-size: 15px; color: var(--green);
  background: var(--cream); border: 0; border-radius: 12px;
  padding: 12px 14px; min-height: 46px; width: 100%; cursor: pointer;
}
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0; }
.pkg-item {
  display: flex; align-items: center; gap: 13px;
  min-height: 48px; padding: 8px 14px; border-radius: 13px;
  background: rgba(247,245,239,0.07); cursor: pointer;
  transition: background .18s ease;
}
.pkg-item:hover { background: rgba(247,245,239,0.14); }
.pkg-item input { position: absolute; opacity: 0; width: 0; height: 0; }
/* Casilla: el check SVG se dibuja con clip-path, no con emoji */
.pkg-box {
  width: 24px; height: 24px; border-radius: 8px; flex-shrink: 0;
  border: 2px solid rgba(247,245,239,0.5); background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease, border-color .18s ease;
}
.pkg-box svg { width: 15px; height: 15px; color: var(--green); opacity: 0; transition: opacity .18s ease; }
.pkg-item input:checked ~ .pkg-box { background: var(--yellow); border-color: var(--yellow); }
.pkg-item input:checked ~ .pkg-box svg { opacity: 1; }
.pkg-item input:focus-visible ~ .pkg-box { outline: 3px solid var(--yellow); outline-offset: 3px; }
.pkg-item-name { flex: 1; font-size: 15px; color: var(--cream); line-height: 1.3; }
.pkg-item-price { font-size: 15px; font-weight: bold; color: var(--cream); flex-shrink: 0; }
.pkg-item-tbc {
  font-size: 11px; color: var(--green); background: var(--yellow);
  padding: 4px 9px; border-radius: 7px; font-weight: bold; flex-shrink: 0;
}
/* Deshabilitada = ya hay 4 elegidas */
.pkg-item.is-off { opacity: .38; cursor: not-allowed; }
.pkg-item.is-off:hover { background: rgba(247,245,239,0.07); }

/* La columna llena todo el alto (el fondo no deja hueco) y el resumen
   queda pegajoso para seguir visible mientras se recorre la lista. */
.pkg-sum { background: var(--green-mid); padding: 34px 30px; }
.pkg-sum-in {
  display: flex; flex-direction: column; gap: 4px;
  position: sticky; top: 96px;
}
.pkg-sum-lbl {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream); opacity: .65; margin-bottom: 4px;
}
.pkg-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pkg-chip {
  font-size: 12px; color: var(--green); background: var(--cream);
  padding: 5px 10px; border-radius: 8px; line-height: 1.3;
}
.pkg-empty { font-size: 14px; color: var(--cream); opacity: .7; line-height: 1.55; margin-bottom: 14px; }
.pkg-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: 14.5px; color: var(--cream); padding: 5px 0;
}
.pkg-row--off { color: var(--yellow); font-weight: bold; }
.pkg-row--total {
  border-top: 1px solid rgba(247,245,239,0.22); margin-top: 8px; padding-top: 14px;
  font-size: 16px; font-weight: bold;
}
.pkg-row--total .pkg-val { font-size: 27px; line-height: 1; }
.pkg-cur { font-size: 11px; opacity: .6; margin-left: 4px; }
.pkg-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 18px; background: var(--wa); color: #fff; text-decoration: none;
  padding: 15px 20px; border-radius: 32px; font-weight: bold; font-size: 15px;
  min-height: 48px; border: 0; font-family: inherit; cursor: pointer;
  transition: opacity .18s ease;
}
.pkg-cta:hover { opacity: .9; }
.pkg-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.pkg-cta[aria-disabled="true"] { opacity: .4; cursor: not-allowed; }
.pkg-note { font-size: 12px; color: var(--cream); opacity: .68; line-height: 1.55; margin-top: 12px; }

@media (max-width: 900px) {
  .pkg { grid-template-columns: 1fr; max-width: 560px; margin-left: 0; margin-right: 0; }
  .pkg-pick, .pkg-sum { padding: 28px 22px; }
  .pkg-sum-in { position: static; }
}
@media (max-width: 480px) {
  .pkg { border-radius: 22px; }
  .pkg-pick, .pkg-sum { padding: 24px 16px; }
  .pkg-head { gap: 12px; }
  .pkg-badge { font-size: 20px; padding: 10px 14px; }
  .pkg-item { padding: 8px 11px; gap: 11px; }
  .pkg-item-name, .pkg-item-price { font-size: 16px; }
  .pkg-row--total .pkg-val { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .pkg-item, .pkg-box, .pkg-box svg, .pkg-cta { transition: none; }
}

/* ═════════ HERO DE MARCA · home (WalkMe camina) ═════════
   Espejea el logo: "Walk" rosa, "Me" amarillo y el sendero naranja.
   Solo anima transform/opacity, asi que no provoca reflow ni salto de layout.
   El bloque global de prefers-reduced-motion ya anula todo esto. */
.hero-title--brand { margin-bottom: 20px; }
.hero-brand {
  display: block;
  font-family: 'TravelSoul', serif;
  font-size: clamp(62px, 13vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.015em;
}
/* Especificidad con el elemento para ganarle a `.hero-title em`, que pinta todo de rosa */
.hero-brand em { font-style: normal; display: inline-block; }
.hero-brand em.hero-walk { color: var(--pink); }
.hero-brand em.hero-me   { color: var(--yellow); }

/* Cada letra entra recta: baja en linea y aparece, sin inclinacion ni rebote. */
.hero-title--brand .hero-brand .hl {
  transform-origin: 50% 100%;
  animation: heroStepIn .42s ease-out both;
}
@keyframes heroStepIn {
  from { opacity: 0; transform: translateY(-32%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Linea de apoyo: chica y siempre en un solo renglon */
.hero-kicker {
  display: block;
  font-family: 'GTEesti', sans-serif;
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: bold;
  letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,0.78);
  margin-top: 24px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
  animation: heroKickerIn .5s ease-out .5s both;
}
@keyframes heroKickerIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .hero-kicker { letter-spacing: 0.12em; }
}
