/* ==========================================================================
   Latidos Tours Medellín — sistema de diseño 2026
   Paleta maestra de 4 colores (verde petróleo, turquesa, coral, amarillo);
   blanco, marfil y gris roca son SOLO neutros.
   ========================================================================== */

:root {
  /* --- Colores maestros --- */
  --teal-900: #04494B;
  --teal-800: #075F61;   /* principal: identidad, titulares, líneas */
  --teal-600: #0C7A78;
  --teal-500: #27A58F;   /* turquesa: fondos suaves, acentos de apoyo */
  --teal-300: #7FC9BB;
  --teal-100: #DCEFEA;
  --teal-050: #F0F8F6;

  --coral-700: #C93F2B;
  --coral-600: #F15A43;  /* acento principal: CTA, corazón, precio destacado */
  --coral-300: #FBA593;
  --coral-100: #FDE7E1;

  --gold-600: #E0A32B;
  --gold-500: #F5B83B;   /* acento secundario: atención puntual, estrellas */
  --gold-100: #FDF1DA;

  /* --- Neutros --- */
  --white: #FFFFFF;
  --ivory: #F7F5EF;
  --ivory-deep: #EFEBE1;
  --rock-700: #3F4441;
  --rock-600: #666B67;
  --rock-400: #949A96;
  --line: #E4E2DA;
  --line-soft: #EFEDE6;

  /* --- Texto --- */
  --ink: #14201F;
  --ink-soft: #4A5654;
  --ink-mute: #6E7A77;

  /* --- Tipografía --- */
  --font-display: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-text: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* --- Métrica --- */
  --wa-bar: 40px;
  --header-h: 68px;
  --shell: 1200px;
  --gutter: 20px;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(20, 32, 31, .06), 0 1px 3px rgba(20, 32, 31, .04);
  --sh-2: 0 4px 14px rgba(20, 32, 31, .08);
  --sh-3: 0 12px 32px rgba(20, 32, 31, .12);
  --sh-teal: 0 10px 28px rgba(7, 95, 97, .18);

  --ease: cubic-bezier(.2, .7, .3, 1);
}

@media (min-width: 768px) {
  :root { --header-h: 78px; --gutter: 28px; }
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { scroll-padding-top: calc(var(--wa-bar) + var(--header-h) + 12px); }

body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--wa-bar) + var(--header-h));
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
/* Los iconos son SVG en línea sin width/height propios: sin este suelo, uno
   suelto dentro de un contenedor flex se estira hasta ocuparlo entero. Las
   reglas por clase (más específicas) siguen mandando donde hay tamaño propio. */
svg { width: 1.15em; height: 1.15em; flex: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.02em;
  color: var(--teal-800);
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 2px;
  border-radius: 6px;
}

.shell { width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto; }
.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;
}

/* ========================= barra WhatsApp ========================= */
.wabar {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  height: var(--wa-bar);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(90deg, var(--teal-800), var(--teal-600) 55%, var(--teal-500));
  color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .01em;
  padding-inline: 12px; text-align: center;
}
.wabar svg { width: 17px; height: 17px; flex: none; }
.wabar strong { font-weight: 800; }
.wabar__sep { opacity: .55; }
@media (max-width: 560px) { .wabar__sep, .wabar__extra { display: none; } }

/* ========================= cabecera ========================= */
.hdr {
  position: fixed; inset: var(--wa-bar) 0 auto 0; z-index: 110;
  height: var(--header-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease);
}
.hdr.is-stuck { box-shadow: var(--sh-2); }
.hdr__in {
  height: 100%; display: flex; align-items: center; gap: 18px;
}
/* El logo manda: es el elemento más grande de la cabecera. */
.brand { flex: none; display: block; }
.brand img { height: 44px; width: auto; }
@media (min-width: 768px) { .brand img { height: 54px; } }
@media (min-width: 1100px) { .brand img { height: 58px; } }

.nav { margin-left: auto; display: none; align-items: center; gap: 4px; }
@media (min-width: 1000px) { .nav { display: flex; } }
.nav a {
  padding: 9px 13px; border-radius: var(--r-pill);
  font-size: .93rem; font-weight: 600; color: var(--ink-soft);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav a:hover { background: var(--teal-050); color: var(--teal-800); }
.nav a[aria-current="page"] { color: var(--teal-800); background: var(--teal-100); }

.hdr__act { margin-left: auto; display: flex; align-items: center; gap: 10px; }
@media (min-width: 1000px) { .hdr__act { margin-left: 0; } }

/* selector de idioma */
.lang { display: flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--white); }
.lang a {
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  padding: 5px 10px; border-radius: var(--r-pill); color: var(--ink-mute);
}
.lang a[aria-current="true"] { background: var(--teal-800); color: #fff; }

.burger {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--white);
}
@media (min-width: 1000px) { .burger { display: none; } }
.burger span { display: block; width: 18px; height: 2px; background: var(--teal-800); border-radius: 2px; position: relative; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: inherit; border-radius: 2px;
}
.burger span::before { top: -6px; } .burger span::after { top: 6px; }

@media (max-width: 800px) {
  .hdr__in { gap: 10px; }
  .hdr__act .btn { display: none; }
  .lang a { padding: 5px 9px; font-size: .74rem; }
}

/* menú móvil */
.drawer {
  position: fixed; inset: 0; z-index: 130;
  background: rgba(20, 32, 31, .45);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__panel {
  position: absolute; inset: 0 0 0 auto; width: min(88%, 340px);
  background: var(--white); padding: 22px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .3s var(--ease);
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer__top img { height: 42px; }
.drawer__close { width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line); font-size: 1.3rem; line-height: 1; color: var(--teal-800); }
.drawer a.drawer__link {
  padding: 13px 14px; border-radius: 12px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.drawer a.drawer__link:hover { background: var(--teal-050); }

/* ========================= botones ========================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-size: .96rem; font-weight: 700; letter-spacing: -.01em;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--coral { background: var(--coral-600); color: #fff; box-shadow: 0 8px 20px rgba(241, 90, 67, .28); }
.btn--coral:hover { background: var(--coral-700); box-shadow: 0 12px 26px rgba(241, 90, 67, .34); }
.btn--teal { background: var(--teal-800); color: #fff; box-shadow: var(--sh-teal); }
.btn--teal:hover { background: var(--teal-900); }
.btn--ghost { background: var(--white); color: var(--teal-800); border: 1.5px solid var(--teal-800); }
.btn--ghost:hover { background: var(--teal-050); }
.btn--soft { background: var(--teal-100); color: var(--teal-800); }
.btn--soft:hover { background: var(--teal-300); }
.btn--wa { background: #1FA855; color: #fff; box-shadow: 0 8px 20px rgba(31, 168, 85, .26); }
.btn--wa:hover { background: #18904a; }
.btn--sm { padding: 9px 16px; font-size: .87rem; }
.btn--lg { padding: 16px 30px; font-size: 1.03rem; }
.btn--block { width: 100%; }

/* ========================= hero ultra compacto ========================= */
.hero {
  position: relative;
  background:
    radial-gradient(120% 140% at 88% 0%, rgba(39, 165, 143, .16) 0%, transparent 58%),
    linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line-soft);
  padding: 24px 0 0;
}
.hero__in { display: grid; gap: 20px; }
@media (min-width: 900px) {
  .hero__in { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: 36px; padding-block: 8px 0; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--teal-100);
  color: var(--teal-800); font-size: .78rem; font-weight: 700; letter-spacing: .02em;
  padding: 6px 13px; border-radius: var(--r-pill); box-shadow: var(--sh-1);
}
.hero__eyebrow b { color: var(--coral-600); }
.hero h1 {
  font-size: clamp(1.9rem, 5.6vw, 3.05rem);
  margin: 12px 0 10px;
}
.hero h1 em { font-style: normal; color: var(--coral-600); }
.hero__sub {
  font-size: clamp(1rem, 2.4vw, 1.1rem); color: var(--ink-soft);
  max-width: 46ch; margin-bottom: 16px;
}
.hero__points { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--line);
  padding: 7px 13px; border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
}
.chip svg { width: 15px; height: 15px; color: var(--teal-500); flex: none; }

/* Un hijo de grid tiene `min-width:auto`: la fila de píldoras sin envolver
   (830px de contenido) ensanchaba TODA la página en móvil, no solo su caja.
   Es el mismo reventón que el del collage, y hay que taparlo en cada rejilla
   que contenga algo deslizable o texto largo. */
.hero__in > *, .tour__layout > *, .trust > *, .steps > *, .foot__grid > * { min-width: 0; }

/* collage del hero */
.hero__art { position: relative; }
.hero__art-grid {
  display: grid; grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px; height: clamp(210px, 42vw, 330px);
}
.hero__art-grid img {
  width: 100%; height: 100%; min-width: 0; min-height: 0;
  object-fit: cover; border-radius: var(--r-lg);
}
.hero__art-grid img:first-child { grid-row: span 2; }
.hero__badge {
  position: absolute; left: 12px; bottom: -14px;
  background: var(--white); border-radius: var(--r-md); box-shadow: var(--sh-3);
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
}
.hero__badge img { height: 34px; width: auto; }
.hero__badge span { font-size: .76rem; font-weight: 700; color: var(--teal-800); line-height: 1.25; }
.hero__badge span small { display: block; font-weight: 500; color: var(--ink-mute); font-size: .72rem; }

/* En móvil el hero tiene que ser DE VERDAD compacto: cuatro píldoras apiladas
   se comían la pantalla entera antes de que apareciera el buscador. Aquí pasan
   a una sola fila deslizante y el titular y el collage bajan de tamaño. */
@media (max-width: 899px) {
  .hero { padding-top: 16px; }
  .hero h1 { font-size: clamp(1.68rem, 7.4vw, 2.2rem); margin: 10px 0 8px; }
  .hero__sub { font-size: .96rem; margin-bottom: 13px; }
  .hero__points {
    flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1); padding: 2px var(--gutter) 4px;
    margin-bottom: 14px;
  }
  .hero__points::-webkit-scrollbar { display: none; }
  .chip { white-space: nowrap; font-size: .79rem; padding: 6px 12px; }
  .hero__art-grid { height: 172px; }
  .hero__badge { left: 8px; bottom: -12px; padding: 8px 11px; }
  .hero__badge img { height: 28px; }
  .hero__eyebrow { font-size: .74rem; padding: 5px 11px; }
}

/* planificador estilo buscador de viajes */
.planner {
  position: relative; z-index: 3;
  margin: 22px 0 -34px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--sh-3);
  padding: 14px;
}
@media (min-width: 768px) { .planner { padding: 16px 18px; } }
.planner__row { display: grid; gap: 10px; }
@media (min-width: 820px) { .planner__row { grid-template-columns: 1.5fr 1fr 1fr auto; align-items: end; } }
.field { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.field > label {
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-mute); padding-left: 2px;
}
.field select, .field input {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 13px; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666B67' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 17px;
  padding-right: 38px;
}
.field select:focus, .field input:focus { border-color: var(--teal-500); background: var(--white); }
.planner__note { margin-top: 10px; font-size: .78rem; color: var(--ink-mute); display: flex; align-items: center; gap: 7px; }
.planner__note svg { width: 15px; height: 15px; color: var(--teal-500); }

/* ========================= secciones ========================= */
.section { padding: 60px 0; }
.section--tight { padding: 44px 0; }
.section--ivory { background: var(--ivory); }
.section--teal { background: linear-gradient(160deg, var(--teal-800), var(--teal-600)); color: #fff; }
.section--teal h2, .section--teal h3 { color: #fff; }
@media (min-width: 768px) { .section { padding: 76px 0; } .section--tight { padding: 54px 0; } }

.shead { margin-bottom: 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.shead__txt { max-width: 62ch; }
.shead h2 { font-size: clamp(1.5rem, 3.6vw, 2.15rem); margin-bottom: 8px; }
.shead p { color: var(--ink-soft); font-size: 1rem; }
.section--teal .shead p { color: rgba(255, 255, 255, .84); }
.shead__link { font-weight: 700; color: var(--teal-600); display: inline-flex; align-items: center; gap: 6px; font-size: .93rem; }
.shead__link:hover { color: var(--coral-600); }

/* ========================= carrusel ========================= */
.carousel { position: relative; }
.carousel__track {
  display: grid; grid-auto-flow: column; gap: 16px;
  grid-auto-columns: minmax(260px, 78%);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 18px;
  margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; }
@media (min-width: 620px) { .carousel__track { grid-auto-columns: minmax(0, 46%); } }
@media (min-width: 900px) { .carousel__track { grid-auto-columns: minmax(0, 31.5%); } }
@media (min-width: 1240px) {
  .carousel__track { grid-auto-columns: minmax(0, 23.6%); margin-inline: 0; padding-inline: 4px; }
}
.carousel__nav {
  position: absolute; top: 38%; z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); box-shadow: var(--sh-3); color: var(--teal-800);
  display: none; place-items: center;
  transition: transform .18s var(--ease), opacity .18s;
}
.carousel__nav:hover { transform: scale(1.07); }
.carousel__nav[disabled] { opacity: .32; cursor: default; transform: none; }
.carousel__nav svg { width: 20px; height: 20px; }
.carousel__nav--prev { left: -18px; }
.carousel__nav--next { right: -18px; }
@media (min-width: 1100px) { .carousel__nav { display: grid; } }

.carousel__dots { display: flex; justify-content: center; gap: 6px; margin-top: 4px; }
@media (min-width: 1100px) { .carousel__dots { display: none; } }
.carousel__dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--line); transition: all .2s var(--ease); }
.carousel__dots i.on { background: var(--teal-600); width: 20px; border-radius: 3px; }

/* ========================= tarjeta de tour ========================= */
.tcard {
  display: flex; flex-direction: column; height: 100%;
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--teal-100); }
.tcard__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ivory-deep); }
.tcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tcard:hover .tcard__media img { transform: scale(1.05); }
.tcard__tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--white); color: var(--teal-800);
  font-size: .72rem; font-weight: 800; letter-spacing: .02em;
  padding: 5px 11px; border-radius: var(--r-pill); box-shadow: var(--sh-1);
}
.tcard__tag--hot { background: var(--coral-600); color: #fff; }
.tcard__tag--new { background: var(--gold-500); color: #4A3308; }
.tcard__dur {
  position: absolute; right: 10px; bottom: 10px;
  background: rgba(4, 73, 75, .82); color: #fff; backdrop-filter: blur(4px);
  font-size: .74rem; font-weight: 700; padding: 5px 10px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 5px;
}
.tcard__dur svg { width: 13px; height: 13px; }
.tcard__body { padding: 15px 16px 17px; display: flex; flex-direction: column; flex: 1; gap: 9px; }
.tcard__body h3 { font-size: 1.06rem; line-height: 1.25; }
.tcard__desc {
  font-size: .88rem; color: var(--ink-soft); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.tcard__meta { display: flex; flex-wrap: wrap; gap: 6px; }
.tcard__meta span {
  font-size: .74rem; font-weight: 600; color: var(--teal-800);
  background: var(--teal-050); border-radius: var(--r-pill); padding: 4px 9px;
}
.tcard__foot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line-soft); display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.price { line-height: 1.15; }
.price small { display: block; font-size: .7rem; font-weight: 600; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .05em; }
.price b { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--teal-800); }
.price i { font-style: normal; display: block; font-size: .72rem; color: var(--ink-mute); }

/* ========================= franja de confianza ========================= */
.trust { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .trust { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.trust__item {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 18px 16px; box-shadow: var(--sh-1);
}
.trust__ico {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--teal-050); color: var(--teal-600); margin-bottom: 11px;
}
.trust__ico svg { width: 21px; height: 21px; }
.trust__item h3 { font-size: .98rem; margin-bottom: 5px; }
.trust__item p { font-size: .85rem; color: var(--ink-soft); line-height: 1.5; }

/* ========================= pasos ========================= */
.steps { display: grid; gap: 18px; counter-reset: s; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.step { position: relative; padding-left: 56px; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  background: var(--gold-500); color: #4A3308;
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: .92rem; }
.section--teal .step p { color: rgba(255, 255, 255, .82); }
.section--teal .step::before { background: rgba(255, 255, 255, .16); color: #fff; }

/* ========================= Helbert: sección destacada ========================= */
.helbert-hero {
  display: grid; gap: 24px; align-items: center;
  background: linear-gradient(150deg, var(--teal-800) 0%, var(--teal-600) 60%, var(--teal-500) 100%);
  border-radius: var(--r-xl); padding: 26px 22px; color: #fff;
  position: relative; overflow: hidden;
}
.helbert-hero::after {
  content: ''; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245, 184, 59, .28), transparent 65%);
  pointer-events: none;
}
@media (min-width: 880px) {
  .helbert-hero { grid-template-columns: 260px minmax(0, 1fr); padding: 36px 40px; gap: 40px; }
}
.helbert-hero h2 { color: #fff; font-size: clamp(1.45rem, 3.4vw, 2.05rem); margin-bottom: 10px; }
.helbert-hero p { color: rgba(255, 255, 255, .88); margin-bottom: 16px; max-width: 54ch; }
.helbert-face {
  position: relative; width: min(220px, 62vw); aspect-ratio: 1; margin-inline: auto;
  border-radius: 50%; overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .22);
  box-shadow: 0 18px 44px rgba(4, 73, 75, .4);
  background: var(--teal-800);
}
.helbert-face img, .helbert-face video { width: 100%; height: 100%; object-fit: cover; }
.helbert-face::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: inset 0 -30px 44px rgba(4, 73, 75, .35);
  pointer-events: none;
}
.helbert-live {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  background: rgba(4, 73, 75, .82); backdrop-filter: blur(4px);
  color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  padding: 4px 11px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 6px; z-index: 2;
}
.helbert-live i { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.helbert-asks { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.helbert-asks button {
  background: rgba(255, 255, 255, .13); border: 1px solid rgba(255, 255, 255, .26);
  color: #fff; font-size: .85rem; font-weight: 600;
  padding: 8px 14px; border-radius: var(--r-pill);
  transition: background .18s var(--ease), transform .18s var(--ease);
  text-align: left;
}
.helbert-asks button:hover { background: rgba(255, 255, 255, .24); transform: translateY(-1px); }

/* ------------------- tira de Helbert (avatar + frase) ------------------- */
.hb-strip {
  display: grid; gap: 14px; align-items: center;
  grid-template-columns: 84px minmax(0, 1fr);
  background: var(--white); border: 1px solid var(--teal-100);
  border-radius: var(--r-xl); padding: 16px; box-shadow: var(--sh-1);
}
@media (min-width: 720px) {
  .hb-strip { grid-template-columns: 104px minmax(0, 1fr) auto; gap: 20px; padding: 18px 22px; }
}
.hb-strip .btn { grid-column: 1 / -1; }
@media (min-width: 720px) { .hb-strip .btn { grid-column: auto; } }
.hb-strip__face {
  width: 84px; height: 84px; border-radius: 50%; overflow: hidden;
  background: var(--teal-800); border: 3px solid var(--teal-100);
}
@media (min-width: 720px) { .hb-strip__face { width: 104px; height: 104px; } }
.hb-strip__face .hb-av { width: 100%; height: 100%; object-fit: cover; }
.hb-strip__txt h3 { font-size: 1.02rem; margin-bottom: 4px; }
.hb-strip__txt p { font-size: .89rem; color: var(--ink-soft); line-height: 1.5; }
.section--teal .hb-strip { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .22); box-shadow: none; }
.section--teal .hb-strip__txt h3 { color: #fff; }
.section--teal .hb-strip__txt p { color: rgba(255, 255, 255, .85); }
.section--teal .hb-strip__face { border-color: rgba(255, 255, 255, .28); }

/* ========================= galería ========================= */
.gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 700px) { .gal { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.gal img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-md); transition: transform .35s var(--ease); }
.gal a:hover img { transform: scale(1.04); }
.gal a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal a:nth-child(1) img { aspect-ratio: 1; }
@media (min-width: 700px) {
  .gal a { display: block; height: 100%; }
  .gal a:nth-child(1) img { aspect-ratio: auto; height: 100%; }
}

/* ========================= FAQ ========================= */
.faq { display: grid; gap: 10px; max-width: 860px; margin-inline: auto; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: var(--teal-300); box-shadow: var(--sh-1); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 15px 48px 15px 17px; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--teal-800);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 17px; top: 50%; width: 11px; height: 11px;
  border-right: 2.4px solid var(--teal-600); border-bottom: 2.4px solid var(--teal-600);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq__a { padding: 0 17px 16px; color: var(--ink-soft); font-size: .94rem; line-height: 1.62; }

/* ========================= pie ========================= */
.foot { background: var(--teal-900); color: rgba(255, 255, 255, .78); padding: 46px 0 26px; }
.foot__grid { display: grid; gap: 28px; }
@media (min-width: 760px) { .foot__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; } }
.foot__logo { background: var(--white); border-radius: var(--r-md); padding: 12px 14px; display: inline-block; margin-bottom: 14px; }
.foot__logo img { height: 52px; width: auto; }
.foot p { font-size: .89rem; line-height: 1.6; }
.foot h3 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 13px; }
.foot li { margin-bottom: 8px; }
.foot li a { font-size: .89rem; transition: color .18s; }
.foot li a:hover { color: var(--gold-500); }
.foot__soc { display: flex; gap: 10px; margin-top: 6px; }
.foot__soc a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .1); transition: background .18s, transform .18s;
}
.foot__soc a:hover { background: var(--coral-600); transform: translateY(-2px); }
.foot__soc svg { width: 19px; height: 19px; color: #fff; }
.foot__bot {
  margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .82rem; color: rgba(255, 255, 255, .58);
}

/* ========================= barra fija móvil ========================= */
.mobar {
  position: fixed; inset: auto 0 0 0; z-index: 105;
  display: flex; gap: 10px; align-items: center;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .3s var(--ease);
}
.mobar.is-on { transform: none; }
@media (min-width: 1000px) { .mobar { display: none; } }
.mobar .price b { font-size: 1.05rem; }
.mobar .btn { flex: 1; }
@media (max-width: 999px) { body.has-mobar { padding-bottom: 74px; } }

/* ========================= páginas interiores ========================= */
.crumbs { font-size: .82rem; color: var(--ink-mute); padding: 16px 0 0; display: flex; gap: 7px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--teal-600); }
.crumbs span { color: var(--ink); }

.page { padding-bottom: 60px; }
.page__head { padding: 6px 0 20px; }
.page__head h1 { font-size: clamp(1.7rem, 4.6vw, 2.7rem); margin-bottom: 10px; }
.page__lede { font-size: 1.04rem; color: var(--ink-soft); max-width: 66ch; }

.tour__layout { display: grid; gap: 28px; align-items: start; }
@media (min-width: 1000px) { .tour__layout { grid-template-columns: minmax(0, 1fr) 348px; gap: 40px; } }

.prose h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin: 34px 0 12px; }
.prose h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.prose p { margin-bottom: 14px; color: var(--ink-soft); line-height: 1.75; }
.prose strong { color: var(--ink); }

.timeline { position: relative; padding-left: 26px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--teal-300), var(--teal-100)); }
.timeline li { position: relative; padding: 0 0 15px 0; color: var(--ink-soft); }
.timeline li::before {
  content: ''; position: absolute; left: -26px; top: 7px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--white); border: 3px solid var(--teal-500);
}
.timeline li strong { color: var(--ink); }

.ticks { display: grid; gap: 9px; }
@media (min-width: 640px) { .ticks { grid-template-columns: repeat(2, 1fr); gap: 9px 22px; } }
.ticks li { position: relative; padding-left: 27px; color: var(--ink-soft); font-size: .94rem; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 6px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--teal-050);
}
.ticks li::after {
  content: ''; position: absolute; left: 5px; top: 10px; width: 7px; height: 4px;
  border-left: 2px solid var(--teal-600); border-bottom: 2px solid var(--teal-600);
  transform: rotate(-45deg);
}
.ticks--x li::before { background: var(--coral-100); }
.ticks--x li::after { border-color: var(--coral-600); transform: none; left: 6px; top: 12px; width: 6px; height: 0; }

.tipbox {
  background: var(--gold-100); border: 1px solid #F0DBA8; border-left: 4px solid var(--gold-500);
  border-radius: var(--r-md); padding: 15px 17px; margin: 22px 0;
}
.tipbox h3 { font-size: .95rem; color: #7A5A11; margin-bottom: 8px; }
.tipbox li { font-size: .9rem; color: #6B5214; padding-left: 16px; position: relative; margin-bottom: 5px; }
.tipbox li::before { content: '•'; position: absolute; left: 2px; color: var(--gold-600); }

/* tarjeta de reserva pegajosa */
.bookcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-2); padding: 20px; position: sticky; top: calc(var(--wa-bar) + var(--header-h) + 16px);
}
.bookcard__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.bookcard__price b { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--teal-800); }
.bookcard__price span { font-size: .86rem; color: var(--ink-mute); }
.bookcard__quees { font-size: .9rem; color: var(--ink-soft); margin-bottom: 6px; }
.bookcard__perhead { font-size: .84rem; color: var(--coral-600); font-weight: 700; margin-bottom: 14px; }
.bookcard__list { display: grid; gap: 9px; margin: 14px 0 16px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.bookcard__list li { display: flex; gap: 9px; font-size: .88rem; color: var(--ink-soft); align-items: flex-start; }
.bookcard__list svg { width: 16px; height: 16px; color: var(--teal-500); flex: none; margin-top: 2px; }
.bookcard .btn + .btn { margin-top: 9px; }
.bookcard__foot { margin-top: 13px; font-size: .78rem; color: var(--ink-mute); text-align: center; }

/* galería del tour — se adapta al número de fotos: hay tours con 2 y tours con
   10, y una rejilla fija dejaba huecos vacíos enormes en los cortos. */
.tgal { display: grid; gap: 8px; grid-template-columns: repeat(2, 1fr); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 22px; }
.tgal a { display: block; overflow: hidden; }
.tgal img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.tgal a:hover img { transform: scale(1.05); }
.tgal a:first-child { grid-column: 1 / -1; }
.tgal a:first-child img { aspect-ratio: 16 / 10; }
.tgal a:not(:first-child) img { aspect-ratio: 1; }

@media (min-width: 760px) {
  .tgal { height: 400px; grid-template-rows: repeat(2, minmax(0, 1fr)); }
  .tgal img, .tgal a:first-child img, .tgal a:not(:first-child) img { aspect-ratio: auto; height: 100%; }

  .tgal[data-n="1"] { grid-template-columns: 1fr; grid-template-rows: 1fr; }
  .tgal[data-n="2"] { grid-template-columns: 1fr 1fr; }
  .tgal[data-n="2"] a:first-child { grid-column: 1; grid-row: span 2; }
  .tgal[data-n="2"] a:nth-child(2) { grid-row: span 2; }

  .tgal[data-n="3"] { grid-template-columns: 2fr 1fr; }
  .tgal[data-n="3"] a:first-child { grid-column: 1; grid-row: span 2; }

  .tgal[data-n="4"] { grid-template-columns: 2fr 1fr 1fr; }
  .tgal[data-n="4"] a:first-child { grid-column: 1; grid-row: span 2; }
  .tgal[data-n="4"] a:nth-child(4) { grid-column: span 2; }

  .tgal[data-n="5"] { grid-template-columns: repeat(4, 1fr); }
  .tgal[data-n="5"] a:first-child { grid-column: span 2; grid-row: span 2; }
}
.tgal__more { position: relative; }
.tgal__more::after {
  content: attr(data-more); position: absolute; inset: 0;
  background: rgba(4, 73, 75, .58); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1rem;
}

/* guías */
.gcard {
  display: flex; flex-direction: column; height: 100%; background: var(--white);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-1); transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.gcard:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.gcard { position: relative; }
.gcard__body .go::after { content: ''; position: absolute; inset: 0; border-radius: inherit; }
.gcard__body .go:hover { text-decoration: underline; }
.gcard__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ivory-deep); }
.gcard__media img { width: 100%; height: 100%; object-fit: cover; }
.gcard__body { padding: 15px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.gcard__kicker { font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--coral-600); }
.gcard__body h3 { font-size: 1.02rem; line-height: 1.3; }
.gcard__body p { font-size: .87rem; color: var(--ink-soft); line-height: 1.5; }
.gcard__body .go { margin-top: auto; padding-top: 10px; font-weight: 700; font-size: .88rem; color: var(--teal-600); }

/* ========================= utilidades ========================= */
.lift { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.lift.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .lift { opacity: 1; transform: none; }
}
