/* =====================================================================
   Time Travelers Tenerife — Sistema de diseño
   Paleta extraída del logotipo (brújula del atardecer):
   índigo #2B388C · terracota #E0643B · oro #F7CD47 · azul cielo #3574B7
   ===================================================================== */

:root {
  /* Marca */
  --indigo: #2B388C;
  --indigo-deep: #1E2569;
  --indigo-ink: #171B45;
  --terracota: #E0643B;
  --terracota-deep: #C24E29;
  --oro: #F7CD47;
  --cielo: #3574B7;
  --cielo-claro: #6FA8DC;

  /* Neutros cálidos (papel de cuaderno de viaje) */
  --papel: #FBF6EC;
  --papel-2: #F3EADA;
  --papel-3: #EADFC9;
  --tinta: #1B1D3A;
  --tinta-suave: #4A4C68;
  --linea: rgba(27, 29, 58, 0.14);
  --linea-fina: rgba(27, 29, 58, 0.08);

  /* Tipografía */
  --display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Ritmo */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radio: 4px;
  --radio-l: 14px;

  --sombra: 0 1px 2px rgba(23,27,69,.05), 0 18px 40px -24px rgba(23,27,69,.35);
  --sombra-alta: 0 30px 70px -30px rgba(23,27,69,.5);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset moderado ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; width: 100%; max-width: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--papel);
  color: var(--tinta);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  position: relative;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; font-weight: 400; line-height: 1.05; }
p { margin: 0 0 1.1em; }
::selection { background: var(--oro); color: var(--indigo-ink); }

/* ---------- Tipografía display ---------- */
.display {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 380;
  letter-spacing: -0.015em;
}
.display em, .ital {
  font-style: italic;
  font-weight: 380;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1440px; }
section { position: relative; }
.section-pad { padding-block: clamp(4.5rem, 9vw, 9rem); }

/* Etiqueta de sección: rúbrica + rosa de los vientos (sin numeraciones) */
.rubric {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--terracota-deep);
}
.rubric::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--terracota);
  display: inline-block;
}
.rubric.on-dark { color: var(--oro); }
.rubric.on-dark::before { background: var(--oro); }

/* ---------- Botones ---------- */
.btn {
  --bg: var(--indigo);
  --fg: #fff;
  display: inline-flex; align-items: center; gap: .6em;
  padding: .95em 1.6em;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  border: 1px solid transparent; border-radius: 100px;
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(27,29,58,.5); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--book { --bg: var(--terracota); --fg: #fff; }
.btn--book:hover { --bg: var(--terracota-deep); }
.btn--ghost {
  --bg: transparent; --fg: var(--indigo-ink);
  border-color: var(--linea);
}
.btn--ghost:hover { --bg: rgba(43,56,140,.06); box-shadow: none; }
.btn--light { --bg: var(--papel); --fg: var(--indigo-ink); }
.btn--wa { --bg: #1FA855; --fg: #fff; }
.btn--wa:hover { --bg: #178a44; }
.btn--lg { padding: 1.1em 2em; font-size: 1rem; }

.linklike {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--indigo);
  border-bottom: 1px solid var(--linea);
  padding-bottom: 2px;
  transition: border-color .3s var(--ease), gap .3s var(--ease);
}
.linklike:hover { border-color: var(--terracota); gap: .8em; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: absolute; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header.scrolled {
  background: rgba(23,27,69,.94);
  backdrop-filter: blur(14px) saturate(1.15);
  box-shadow: 0 1px 0 rgba(255,255,255,.12);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-top: 1.65rem; padding-bottom: 1.2rem;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 54px; width: auto; transition: height .4s var(--ease); }
.scrolled .brand img { height: 54px; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.nav a {
  font-weight: 500; font-size: .95rem; color: #fff;
  position: relative; padding-block: .3rem;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--terracota); transition: width .35s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: .8rem; }
/* En escritorio, el CTA vive en .header-cta; el de la nav solo aparece en el menú móvil */
.nav > .btn--book { display: none; }
.header-when-light .nav a, .header-when-light .brand-name,
.header-when-light.scrolled .nav a, .header-when-light.scrolled .brand-name { color: #fff; }

.nav-toggle { display: none; }
.menu-btn {
  display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.42);
  border-radius: 100px; background: rgba(23,27,69,.42); align-items: center; justify-content: center;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  content: ""; display: block; width: 18px; height: 1.6px; background: #fff;
  transition: transform .3s var(--ease), opacity .3s;
}
.menu-btn span::before { transform: translateY(-6px); }
.menu-btn span::after { transform: translateY(4.4px); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
 .hero__media img,
.hero__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(13,19,56,.58) 0%, rgba(13,19,56,.30) 42%, rgba(13,19,56,.06) 74%, rgba(13,19,56,0) 100%),
    linear-gradient(180deg, rgba(23,27,69,.48) 0%, rgba(23,27,69,0) 34%),
    linear-gradient(0deg, rgba(23,27,69,.84) 4%, rgba(23,27,69,.17) 48%, rgba(43,56,140,.08) 100%);
}
.hero__inner { padding-bottom: clamp(3rem, 7vw, 6rem); padding-top: 8rem; width: 100%; }
.hero h1 {
  font-family: var(--display); font-weight: 340;
  font-size: clamp(2.9rem, 8.5vw, 7.4rem);
  letter-spacing: -0.02em; max-width: 15ch;
  text-shadow: 0 3px 12px rgba(6,10,35,.28), 0 14px 42px rgba(6,10,35,.36);
}
.hero h1 em { font-style: italic; color: var(--oro); }
.hero__lead {
  max-width: 46ch; margin-top: 1.5rem; font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: rgba(255,255,255,.9);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(3rem,7vw,6rem);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.75);
  writing-mode: vertical-rl;
}
@media (max-width: 720px){ .hero__scroll { display:none; } }

/* Cinta de confianza bajo el hero */
.trust {
  background: var(--indigo-ink); color: rgba(255,255,255,.86);
}
.trust__row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2.6rem;
  padding-block: 1.15rem; font-size: .82rem; letter-spacing: .02em;
}
.trust__row span { display: inline-flex; align-items: center; gap: .55rem; }
.trust__row .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--oro); }

/* =====================================================================
   SOCIAL STRIP — HOME
   ===================================================================== */
.home-social-bar {
  padding: 0 0 clamp(2.4rem, 4vw, 3.4rem);
}
.home-social-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem 2rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(23,27,69,.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.32));
  box-shadow: 0 18px 40px rgba(23,27,69,.06);
  backdrop-filter: blur(8px);
}
.home-social-bar__copy {
  display: grid;
  gap: .22rem;
}
.home-social-bar__eyebrow {
  margin: 0;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracota);
}
.home-social-bar__text {
  margin: 0;
  font-size: 1rem;
  color: var(--indigo-ink);
}
.home-social-bar__icons {
  margin-top: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.home-social-bar__icons a {
  width: auto;
  min-width: 0;
  height: 48px;
  padding: 0 .95rem 0 .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border-color: rgba(23,27,69,.10);
  gap: .62rem;
  box-shadow: 0 10px 24px rgba(23,27,69,.08);
}
.home-social-bar__icons a:hover {
  background: #fff;
  border-color: rgba(23,27,69,.14);
  transform: translateY(-2px);
}
.home-social-bar__icons a span {
  display: inline-block;
  color: var(--indigo-ink);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
}
.home-social-bar__icons svg { fill: var(--indigo-ink); }
.home-social-bar__icons a[aria-label="Instagram"] span { color: var(--indigo-ink); }
@media (max-width: 900px){
  .home-social-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-social-bar__icons {
    justify-content: flex-start;
  }
}
@media (max-width: 560px){
  .home-social-bar { padding-bottom: 2rem; }
  .home-social-bar__inner { border-radius: 22px; }
  .home-social-bar__icons { width: 100%; }
  .home-social-bar__icons a { flex: 1 1 calc(50% - .5rem); justify-content: center; }
}

/* =====================================================================
   INTRO / MANIFIESTO
   ===================================================================== */
.intro-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 5rem);
}
@media (min-width: 900px){ .intro-grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }
.intro__title {
  font-family: var(--display); font-weight: 360;
  font-size: clamp(2rem, 4.4vw, 3.6rem); letter-spacing: -0.015em; max-width: 18ch;
}
.intro__title em { font-style: italic; color: var(--indigo); }
.intro__body { max-width: 52ch; color: var(--tinta-suave); font-size: 1.1rem; }
.intro__body p:first-child::first-letter {
  font-family: var(--display); font-size: 3.4em; float: left; line-height: .82;
  padding: .05em .12em 0 0; color: var(--terracota); font-style: italic;
}

/* Fichas de valor (sin iconos genéricos, tipográficas) */
.values { display: grid; gap: 1px; background: rgba(255,255,255,.5); border-block: 0; margin-top: 3rem; }
@media (min-width: 700px){ .values { grid-template-columns: repeat(3,1fr); } }
.value {
  position: relative;
  background: var(--terracota) !important;
  padding: 2rem 1.6rem;
  color: #fff;
}
.value::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: .95rem;
  border-radius: 999px;
  background: var(--oro);
}
.value h3,
.value:nth-child(2) h3,
.value:nth-child(3) h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff !important;
  margin-bottom: .4rem;
}
.value p {
  font-size: .95rem;
  color: rgba(255,255,255,.92) !important;
  margin: 0;
}

/* =====================================================================
   EXCURSIONES — listado editorial
   ===================================================================== */
.excursions { background: var(--papel-2); }
.section-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 {
  font-family: var(--display); font-weight: 350;
  font-size: clamp(2.1rem, 5vw, 4rem); letter-spacing: -0.015em; max-width: 16ch;
}
.section-head h2 em { font-style: italic; color: var(--terracota); }
.section-head p { max-width: 40ch; color: var(--tinta-suave); margin: 0; }

/* Fila de excursión: número de plaza / imagen / datos (formato "cuaderno") */
.exc-list { display: flex; flex-direction: column; }
.exc-row {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  padding-block: clamp(1.8rem, 3.5vw, 2.8rem);
  border-top: 1px solid var(--linea);
  align-items: center;
}
.exc-row:last-child { border-bottom: 1px solid var(--linea); }
@media (min-width: 860px){
  .exc-row { grid-template-columns: 300px 1fr auto; gap: 2.8rem; }
}
.exc-row__media {
  position: relative; aspect-ratio: 16/11; overflow: hidden; border-radius: var(--radio-l);
  background: var(--papel-3);
}
.exc-row__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease); transform: scale(1.02);
}
.exc-row:hover .exc-row__media img { transform: scale(1.09); }
.exc-row__media .place {
  position: absolute; left: 12px; top: 12px; z-index: 2;
  background: rgba(23,27,69,.72); color: #fff; backdrop-filter: blur(6px);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .35em .7em; border-radius: 100px;
}
.exc-row__body h3 {
  font-family: var(--display); font-weight: 380;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -0.015em; color: var(--indigo-ink);
}
.exc-row__body h3 a { transition: color .3s var(--ease); }
.exc-row:hover .exc-row__body h3 a { color: var(--indigo); }
.exc-row__body p { color: var(--tinta-suave); max-width: 54ch; margin: .7rem 0 1rem; }
.exc-meta { display: flex; flex-wrap: wrap; gap: .5rem .6rem; }
.chip {
  font-size: .8rem; font-weight: 500; color: var(--indigo-ink);
  background: var(--papel); border: 1px solid var(--linea);
  padding: .4em .85em; border-radius: 100px;
}
.exc-row__aside { text-align: left; }
@media (min-width: 860px){ .exc-row__aside { text-align: right; min-width: 180px; } }
.exc-price .from { display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--tinta-suave); }
.exc-price .amount { font-family: var(--display); font-size: clamp(2.2rem,3.5vw,3rem); color: var(--terracota-deep); line-height: 1; }
.exc-price .pp { font-size: .82rem; color: var(--tinta-suave); }
.exc-row__aside .btn { margin-top: 1rem; }

/* =====================================================================
   TARJETAS (grid alternativo, usadas en home destacadas / relacionadas)
   ===================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: clamp(1.2rem,2.5vw,2rem); }
.tcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--papel); border: 1px solid var(--linea); border-radius: var(--radio-l);
  overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--sombra-alta); }
.tcard__media { aspect-ratio: 4/3; overflow: hidden; }
.tcard__media img { width:100%; height:100%; object-fit: cover; transition: transform .8s var(--ease); }
.tcard:hover .tcard__media img { transform: scale(1.07); }
.tcard__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.tcard__body h3 { font-family: var(--display); font-size: 1.5rem; color: var(--indigo-ink); margin-bottom: .4rem; }
.tcard__body p { font-size: .92rem; color: var(--tinta-suave); flex: 1; }
.tcard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.tcard__price { font-family: var(--display); font-size: 1.5rem; color: var(--terracota-deep); }
.tcard__price small { font-family: var(--sans); font-size: .7rem; color: var(--tinta-suave); letter-spacing: .12em; text-transform: uppercase; display:block; }

/* =====================================================================
   BLOQUE OSCURO (por qué privados / franja índigo)
   ===================================================================== */
.band-dark { background: var(--indigo-ink); color: var(--papel); position: relative; overflow: hidden; }
.band-dark::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background: radial-gradient(120% 80% at 85% 0%, rgba(53,116,183,.35), transparent 55%),
              radial-gradient(90% 70% at 0% 100%, rgba(224,100,59,.28), transparent 60%);
}
.band-dark .wrap { position: relative; }
.band-dark h2 { font-family: var(--display); font-weight: 340; font-size: clamp(2rem,4.6vw,3.6rem); letter-spacing: -0.015em; max-width: 20ch; }
.band-dark h2 em { font-style: italic; color: var(--oro); }
.feature-list { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; gap: 1px; background: rgba(255,255,255,.12); }
@media (min-width: 760px){ .feature-list { grid-template-columns: 1fr 1fr; } }
.feature-list li { background: var(--indigo-ink); padding: 1.6rem 0; padding-right: 2rem; display: flex; gap: 1rem; }
@media (min-width: 760px){ .feature-list li { padding-left: 2rem; } .feature-list li:nth-child(odd){ padding-left: 0; } }
.feature-list .k { font-family: var(--display); font-style: italic; font-size: 1.6rem; color: var(--oro); line-height: 1; flex-shrink: 0; }
.feature-list h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .3rem; font-family: var(--sans); }
.feature-list p { color: rgba(255,255,255,.72); font-size: .95rem; margin: 0; }

/* =====================================================================
   PASOS DE RESERVA (proceso claro)
   ===================================================================== */
.steps { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 780px){ .steps { grid-template-columns: repeat(3,1fr); gap: 2.5rem; } }
.step { position: relative; padding-top: 1.6rem; border-top: 2px solid var(--indigo); }
.step .st { font-family: var(--display); font-style: italic; font-size: 1rem; color: var(--terracota-deep); letter-spacing: .02em; }
.step h3 { font-family: var(--display); font-size: 1.5rem; color: var(--indigo-ink); margin: .3rem 0 .5rem; }
.step p { color: var(--tinta-suave); font-size: .95rem; margin: 0; }

/* =====================================================================
   TESTIMONIOS
   ===================================================================== */
.quote-wrap { max-width: 24ch; }
.bigquote {
  font-family: var(--display); font-weight: 340; font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.9rem); line-height: 1.18; letter-spacing: -0.01em;
  color: var(--indigo-ink); max-width: 20ch;
}
.testi-grid { display: grid; gap: 1.5rem; }
@media (min-width: 820px){ .testi-grid { grid-template-columns: repeat(3,1fr); } }
.testi { background: var(--papel); border: 1px solid var(--linea); border-radius: var(--radio-l); padding: 1.8rem; }
.testi p { font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--tinta); line-height: 1.4; }
.testi .by { font-size: .82rem; color: var(--tinta-suave); font-weight: 600; letter-spacing: .02em; margin-top: 1rem; display: block; }
.stars { color: var(--oro); letter-spacing: .15em; font-size: .9rem; margin-bottom: .8rem; }

/* =====================================================================
   CTA FINAL
   ===================================================================== */
.cta-final { position: relative; overflow: hidden; color: #fff; }
.cta-final__media { position: absolute; inset: 0; z-index: -2; }
.cta-final__media img { width:100%; height:100%; object-fit: cover; }
.cta-final__media::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(23,27,69,.9), rgba(23,27,69,.55)); }
.cta-final h2 { font-family: var(--display); font-weight: 340; font-size: clamp(2.2rem,5.5vw,4.4rem); letter-spacing: -0.02em; max-width: 16ch; }
.cta-final h2 em { font-style: italic; color: var(--oro); }
.cta-final p { max-width: 44ch; color: rgba(255,255,255,.88); font-size: 1.1rem; margin-top: 1rem; }
.cta-final .hero__actions { margin-top: 2rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--indigo-ink); color: rgba(255,255,255,.72); padding-block: clamp(3.5rem,6vw,5.5rem) 2rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand img { height: 54px; width: auto; margin-bottom: 1.2rem; filter: none; opacity: 1; }
.footer-brand p { max-width: 34ch; font-size: .95rem; }
.site-footer h4 { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--oro); margin-bottom: 1.1rem; font-weight: 600; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer-links a { transition: color .3s; font-size: .95rem; }
.footer-links a:hover { color: #fff; }
.footer-contact a { color: #fff; font-weight: 500; }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s;
}
.socials a:hover { background: var(--terracota); border-color: var(--terracota); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; fill: #fff; }
/* Logo institucional Turismo de Islas Canarias — debajo de las redes sociales */
.footer-institutional {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}
.footer-institutional__link {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: .5rem .7rem;
  transition: transform .2s ease, opacity .2s ease;
}
.footer-institutional__link:hover {
  transform: translateY(-2px);
  opacity: .96;
}
.footer-institutional__link img {
  display: block;
  width: min(285px, 72vw);
  height: auto;
  margin: 0;
  filter: none;
  opacity: 1;
}
.footer-institutional--compact {
  margin-top: 0;
  margin-bottom: 1.4rem;
}

.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer-bottom a:hover { color: #fff; }

/* Botón flotante WhatsApp */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #1FA855;
  display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(31,168,85,.6);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* =====================================================================
   PÁGINA INTERIOR: cabecera de página
   ===================================================================== */
.page-hero { position: relative; padding-top: 10rem; padding-bottom: clamp(3rem,6vw,5rem); color: #fff; overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width:100%; height:100%; object-fit: cover; }
.page-hero__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(23,27,69,.55), rgba(23,27,69,.78)); }
.breadcrumb { font-size: .8rem; letter-spacing: .04em; color: rgba(255,255,255,.72); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--oro); }
.breadcrumb span { opacity: .5; margin-inline: .5em; }
.page-hero h1 { font-family: var(--display); font-weight: 340; font-size: clamp(2.4rem,6vw,5rem); letter-spacing: -0.02em; max-width: 18ch; }
.page-hero h1 em { font-style: italic; color: var(--oro); }
.page-hero__lead { max-width: 50ch; margin-top: 1.2rem; color: rgba(255,255,255,.88); font-size: 1.1rem; }

/* =====================================================================
   DETALLE DE EXCURSIÓN
   ===================================================================== */
.detail-grid { display: grid; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
@media (min-width: 940px){ .detail-grid { grid-template-columns: 1fr 380px; } }
.detail-body h2 { font-family: var(--display); font-weight: 360; font-size: clamp(1.7rem,3.4vw,2.6rem); color: var(--indigo-ink); margin: 2.5rem 0 1rem; letter-spacing: -0.01em; }
.detail-body h2:first-child { margin-top: 0; }
.detail-body h2 em { font-style: italic; color: var(--terracota); }
.detail-body p { color: var(--tinta-suave); font-size: 1.08rem; }
.detail-lead { font-size: 1.25rem !important; color: var(--tinta) !important; font-family: var(--display); font-weight: 360; line-height: 1.5; }

.included { display: grid; gap: 1px; background: var(--linea); border: 1px solid var(--linea); border-radius: var(--radio-l); overflow: hidden; margin-top: 1rem; }
@media (min-width: 620px){ .included { grid-template-columns: 1fr 1fr; } }
.included li { list-style: none; background: var(--papel); padding: 1rem 1.2rem; display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; }
.included li::before { content: ""; width: 8px; height: 8px; margin-top: .5em; border-radius: 50%; background: var(--terracota); flex-shrink: 0; }
.included.excl li::before { background: var(--tinta-suave); opacity: .4; }

.activity-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem;
  margin: 1.8rem 0 2.4rem;
}
.activity-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 140px;
  background: var(--papel-2);
  cursor: zoom-in;
}
.activity-gallery__item--main {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 290px;
}
.activity-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.activity-gallery__item--thumb img { aspect-ratio: 1 / 1; }
.activity-gallery__item .pos-center { object-position: center center; }
.activity-gallery__item .pos-top { object-position: center 18%; }
.activity-gallery__item .pos-right { object-position: 78% center; }
.activity-gallery__item .pos-bottom { object-position: center 82%; }
.activity-gallery__item .pos-left { object-position: 18% center; }
.activity-gallery__badge {
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  appearance: none;
  border: 0;
  font: inherit;
  background: rgba(255,255,255,.94);
  color: var(--indigo-ink);
  border-radius: 999px;
  padding: .72rem 1.05rem;
  font-weight: 700;
  font-size: .9rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(23,27,69,.14);
  z-index: 2;
}
.activity-gallery__badge:hover { transform: translateY(-1px); }
.activity-gallery__badge:focus-visible { outline: 3px solid rgba(224,100,59,.35); outline-offset: 3px; }

/* Galería ampliada / lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(10,14,32,.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gallery-lightbox__stage {
  position: relative;
  width: min(1120px, 94vw);
  height: min(78vh, 760px);
  display: grid;
  place-items: center;
}
.gallery-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
}
.gallery-lightbox__close,
.gallery-lightbox__arrow {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--indigo-ink);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,.24);
  z-index: 3;
}
.gallery-lightbox__close {
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  line-height: 1;
}
.gallery-lightbox__arrow {
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
}
.gallery-lightbox__arrow--prev { left: 0; }
.gallery-lightbox__arrow--next { right: 0; }
.gallery-lightbox__close:hover,
.gallery-lightbox__arrow:hover { background: #fff; }
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__arrow:focus-visible { outline: 3px solid var(--terracota); outline-offset: 3px; }
.gallery-lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: -2.2rem;
  transform: translateX(-50%);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 720px){
  .gallery-lightbox { padding: .75rem; }
  .gallery-lightbox__stage { width: 100%; height: 78vh; }
  .gallery-lightbox__close { top: .25rem; right: .25rem; width: 44px; height: 44px; }
  .gallery-lightbox__arrow { width: 46px; height: 46px; }
  .gallery-lightbox__arrow--prev { left: .25rem; }
  .gallery-lightbox__arrow--next { right: .25rem; }
  .gallery-lightbox__counter { bottom: -1.4rem; }
}
@media (max-width: 720px){
  .activity-gallery { grid-template-columns: 1fr 1fr; }
  .activity-gallery__item--main { grid-column: 1 / -1; min-height: 240px; }
}

.itinerary { list-style: none; padding: 0; margin: 1rem 0 0; }
.itinerary li { position: relative; padding: 0 0 1.6rem 2rem; border-left: 2px solid var(--linea); }
.itinerary li:last-child { border-left-color: transparent; padding-bottom: 0; }
.itinerary li::before { content:""; position: absolute; left: -7px; top: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--indigo); border: 3px solid var(--papel); }
.itinerary .t { font-family: var(--display); font-style: italic; color: var(--terracota-deep); font-size: 1.05rem; }
.itinerary h4 { font-size: 1.1rem; color: var(--indigo-ink); margin: .1rem 0 .3rem; font-weight: 600; font-family: var(--sans); }
.itinerary p { margin: 0; font-size: .95rem; }

/* Tarjeta de reserva (sticky) */
.booking-card {
  position: sticky; top: 100px;
  background: var(--papel); border: 1px solid var(--linea); border-radius: var(--radio-l);
  padding: 1.8rem; box-shadow: var(--sombra);
}
.booking-card .price-lead { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--tinta-suave); }
.booking-card .price { font-family: var(--display); font-size: 3rem; color: var(--terracota-deep); line-height: 1; }
.booking-card .price small { font-family: var(--sans); font-size: .9rem; color: var(--tinta-suave); }
.booking-card .price--consult { font-size: 2rem; line-height: 1.1; }
.booking-card .facts-grid {
  display: grid;
  gap: .95rem;
  padding: 1.3rem 0;
  margin: 1.3rem 0;
  border-block: 1px solid var(--linea);
}
.fact-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: .95rem;
}
.fact-card::before {
  content: "";
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background-color: #EEF1F5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
.fact-copy { display: block; }
.fact-copy .lab {
  display: block;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--indigo-ink);
  margin-bottom: .28rem;
}
.fact-copy .val {
  display: block;
  font-size: .94rem;
  line-height: 1.45;
  color: var(--tinta-suave);
}
.fact-card--cancel::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2320294D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='4.5' width='17' height='16' rx='3'/%3E%3Cpath d='M8 3v3M16 3v3M3.5 9.5h17'/%3E%3Cpath d='m9 14 2 2 4-5'/%3E%3C/svg%3E");
}
.fact-card--duration::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2320294D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='13' r='8'/%3E%3Cpath d='M12 9v4l3 2M12 3v2M4 13H2m20 0h-2M5 5l1.5 1.5'/%3E%3C/svg%3E");
}
.fact-card--type::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2320294D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 20v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9.5' cy='8' r='3'/%3E%3Cpath d='M21 20v-2a4 4 0 0 0-3-3.87M16 4.13a3 3 0 0 1 0 5.74'/%3E%3C/svg%3E");
}
.fact-card--group::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2320294D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M4 19a5 5 0 0 1 10 0'/%3E%3Ccircle cx='17' cy='9' r='2.5'/%3E%3Cpath d='M14.5 18a4.5 4.5 0 0 1 7 0'/%3E%3C/svg%3E");
}
.fact-card--pickup::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2320294D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 15V9.5a2 2 0 0 1 2-2h10l4 4V15'/%3E%3Cpath d='M7 15h8M5.5 18.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM17.5 18.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM15 7.5V11h4'/%3E%3C/svg%3E");
}
.fact-card--lang::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2320294D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a15 15 0 0 1 0 18M12 3a15 15 0 0 0 0 18'/%3E%3C/svg%3E");
}
.fact-card--extra::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2320294D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 1.9 3.9 4.3.6-3.1 3 0.7 4.3L12 12.8 8.2 14.8l.7-4.3-3.1-3 4.3-.6L12 3Z'/%3E%3C/svg%3E");
}
.booking-card .btn { width: 100%; justify-content: center; }
.booking-card .btn + .btn { margin-top: .7rem; }
.booking-note { font-size: .82rem; color: var(--tinta-suave); text-align: center; margin: 1rem 0 0; }

/* =====================================================================
   FORMULARIO / CONTACTO
   ===================================================================== */
.form-grid { display: grid; gap: clamp(2rem,4vw,4rem); align-items: start; }
@media (min-width: 900px){ .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--indigo-ink); }
.field input, .field select, .field textarea {
  font: inherit; padding: .85em 1em; border: 1px solid var(--linea); border-radius: var(--radio);
  background: var(--papel); color: var(--tinta); transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(43,56,140,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 560px){ .form-row { grid-template-columns: 1fr 1fr; } }
.contact-aside { background: var(--indigo-ink); color: var(--papel); border-radius: var(--radio-l); padding: clamp(1.8rem,3vw,2.6rem); }
.contact-aside h3 { font-family: var(--display); font-size: 1.8rem; margin-bottom: 1.2rem; }
.contact-aside .ci { display: flex; gap: .9rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-aside .ci:first-of-type { border-top: none; }
.contact-aside .ci .lab { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--oro); }
.contact-aside .ci a, .contact-aside .ci p { color: #fff; font-weight: 500; margin: .2rem 0 0; }

.contact-aside .contact-location p { color:#fff; line-height:1.55; }
.contact-aside .contact-location strong { color:#fff; font-weight:700; }
.contact-aside .contact-location a { color:#fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 4px; }
.contact-aside .contact-location a:hover { text-decoration-color: var(--oro); }

.contact-faq {
  padding-top: clamp(3rem, 5vw, 4.75rem);
}
.contact-faq__wrap { max-width: 900px; }
.contact-faq__title {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  color: var(--indigo-ink);
  margin: 0 0 clamp(1.6rem, 3vw, 2.4rem);
}
.faq-accordion {
  border-top: 1px solid rgba(23,27,69,.18);
  border-bottom: 1px solid rgba(23,27,69,.18);
}
.faq-item {
  border-bottom: 1px solid rgba(23,27,69,.16);
  background: transparent;
}
.faq-item:last-child { border-bottom: 0; }
.faq-question {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.4rem;
  cursor: pointer;
  padding: clamp(1.25rem, 2.2vw, 1.7rem) .15rem;
  color: var(--indigo-ink);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 560;
  letter-spacing: -.015em;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ""; }
.faq-question:hover { color: var(--indigo); padding-left: .3rem; }
.faq-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(23,27,69,.22);
  border-radius: 50%;
  flex: 0 0 34px;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .3s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--indigo-ink);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), background .25s var(--ease);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon {
  background: var(--indigo-ink);
  border-color: var(--indigo-ink);
  transform: rotate(180deg);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: #fff; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  animation: faqReveal .32s var(--ease) both;
}
.faq-answer p {
  margin: 0;
  padding: 0 clamp(3.5rem, 8vw, 7rem) clamp(1.5rem, 2.5vw, 2rem) .15rem;
  color: var(--tinta-suave);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.75;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .contact-faq { padding-top: 2.6rem; }
  .faq-question { gap: 1rem; }
  .faq-answer p { padding-right: .25rem; }
}

/* El menú se mantiene siempre en blanco; al hacer scroll el fondo oscuro
   garantiza contraste sobre cualquier sección. */
.site-header .nav a,
.site-header.scrolled .nav a { color: #fff; }
.site-header .menu-btn span,
.site-header .menu-btn span::before,
.site-header .menu-btn span::after { background: #fff; }

/* =====================================================================
   NOSOTROS
   ===================================================================== */
.about-lead { font-family: var(--display); font-weight: 350; font-size: clamp(1.5rem,3.2vw,2.4rem); line-height: 1.35; color: var(--indigo-ink); max-width: 24ch; }
.about-lead em { font-style: italic; color: var(--terracota); }
.stat-row { display: grid; gap: 1px; background: var(--linea); border-block: 1px solid var(--linea); margin-top: 3rem; }
@media (min-width: 680px){ .stat-row { grid-template-columns: repeat(4,1fr); } }
.stat { background: var(--papel); padding: 2rem 1.5rem; text-align: center; }
.stat .n { font-family: var(--display); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--indigo); line-height: 1; }
.stat .l { font-size: .82rem; color: var(--tinta-suave); letter-spacing: .04em; margin-top: .4rem; }

/* Contenido legal */
.legal { max-width: 68ch; }
.legal h2 { font-family: var(--display); font-size: 1.7rem; color: var(--indigo-ink); margin: 2.2rem 0 .8rem; }
.legal p, .legal li { color: var(--tinta-suave); }
.legal a { color: var(--indigo); text-decoration: underline; }

/* =====================================================================
   Utilidades de animación (estado inicial, JS añade .is-in)
   ===================================================================== */
[data-anim] { opacity: 0; }
.no-js [data-anim] { opacity: 1; }

/* =====================================================================
   RESPONSIVE — navegación móvil
   ===================================================================== */
@media (max-width: 880px){
  .menu-btn { display: flex; }
  .nav {
    position: fixed; inset: 0; width: 100%; height: 100dvh; overflow-y: auto;
    background: var(--indigo-ink); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 1.4rem; padding: 5rem var(--gutter) 2.5rem;
    transform: translateX(100%); transition: transform .45s var(--ease); z-index: 120;
  }
  .nav a { color: #fff; font-size: 1.7rem; font-family: var(--display); font-weight: 520; }
  .nav a::after { display: none; }
  .nav-open .nav { transform: translateX(0); }
  .nav-open .menu-btn { position: fixed; right: var(--gutter); top: 1.1rem; z-index: 130; background: transparent; border-color: rgba(255,255,255,.3); }
  .nav-open .menu-btn span { background: transparent; }
  .nav-open .menu-btn span::before { transform: rotate(45deg); background:#fff; }
  .nav-open .menu-btn span::after { transform: rotate(-45deg); background:#fff; }
  .header-cta .btn:not(.menu-btn) { display: none; }
  .nav > .btn--book { display: inline-flex; margin-top: .6rem; font-size: 1rem; }
  .nav .btn { color: #fff; }
}

/* =====================================================================
   REDISEÑO — tipografía Bricolage, titulares a un solo color, sin rúbricas
   ===================================================================== */

/* El nuevo display es una grotesca (sin cursiva real): trazo recto y peso mayor */
.display, .hero h1, .page-hero h1, .intro__title, .section-head h2,
.band-dark h2, .cta-final h2, .detail-body h2, .about-lead, .detail-lead,
.value h3, .step h3, .step .st, .itinerary .t, .feature-list .k,
.testi p, .bigquote, .booking-card .price, .exc-price .amount,
.tcard__price, .stat .n, .exc-row__body h3, .tcard__body h3,
.contact-aside h3, .footer-brand ~ * h4, .legal h2 {
  font-style: normal;
}
.display, .hero h1, .page-hero h1, .intro__title, .section-head h2,
.band-dark h2, .cta-final h2, .detail-body h2, .about-lead, .detail-lead,
.exc-row__body h3, .tcard__body h3, .contact-aside h3, .legal h2 {
  font-weight: 560;
  letter-spacing: -0.025em;
}

/* Un solo color en los titulares: se anula el acento de las palabras <em> */
h1 em, h2 em, h3 em, h4 em,
.display em, .about-lead em, .detail-lead em, .intro__title em,
.section-head h2 em, .band-dark h2 em, .cta-final h2 em,
.page-hero h1 em, .hero h1 em, .detail-body h2 em {
  color: inherit;
  font-style: normal;
  font-weight: inherit;
}

/* Fuera las rúbricas / subtítulos que iban encima de cada título */
.rubric { display: none !important; }

/* Inicial destacada a un solo color y sin cursiva */
.intro__body p:first-child::first-letter {
  color: var(--indigo-ink);
  font-style: normal;
}

/* =====================================================================
   MÓVIL — ajuste fino (≤ 640px)
   ===================================================================== */
@media (max-width: 640px){
  :root { --gutter: 1.25rem; }

  .section-pad { padding-block: 3.4rem; }

  /* Hero más contenido y legible */
  .hero { min-height: 92svh; }
  .hero__inner { padding-top: 6rem; padding-bottom: 3rem; }
  .hero h1 { font-size: clamp(2.15rem, 9vw, 3rem); line-height: 1.08; }
  /* Evita desbordes horizontales del texto en pantallas estrechas */
  .hero__inner, .page-hero .wrap { min-width: 0; }
  .hero h1, .hero__lead, .page-hero h1, .page-hero__lead,
  .section-head h2, .section-head p, .band-dark h2, .cta-final h2,
  .cta-final p, .intro__title, .about-lead, .detail-lead, .bigquote {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .hero__lead { font-size: 1.05rem; margin-top: 1.1rem; }
  .hero__actions { margin-top: 1.6rem; gap: .7rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .page-hero { padding-top: 6.5rem; }
  .page-hero__lead { font-size: 1.02rem; }

  /* Botones grandes ocupan el ancho en las llamadas a la acción */
  .cta-final .hero__actions .btn,
  .band-dark .hero__actions .btn { width: 100%; justify-content: center; }
  .btn--lg { padding: 1em 1.6em; }

  /* Cinta de confianza en columna, más aireada */
  .trust__row { flex-direction: column; align-items: flex-start; gap: .55rem; }

  /* Filas de excursión: imagen amplia y precio + botón en una línea clara */
  .exc-row { gap: 1.1rem; padding-block: 1.8rem; }
  .exc-row__media { aspect-ratio: 3/2; }
  .exc-row__body h3 { font-size: 1.7rem; }
  .exc-row__body p { margin: .5rem 0 .8rem; }
  .exc-row__aside {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; border-top: 1px solid var(--linea-fina); padding-top: 1rem;
  }
  .exc-row__aside .btn { margin-top: 0; }
  .exc-price .amount { font-size: 2.1rem; }

  /* Encabezados de sección apilados */
  .section-head { gap: .8rem; margin-bottom: 2rem; }

  /* Tarjeta de reserva: full width y cómoda */
  .booking-card { position: static; padding: 1.5rem; }
  .booking-card .price { font-size: 2.6rem; }

  /* Detalle: mejores márgenes */
  .detail-body h2 { margin: 2rem 0 .8rem; }
  .itinerary li { padding-left: 1.6rem; }

  /* Testimonios y tarjetas a una columna cómoda */
  .testi p { font-size: 1.05rem; }
  .card-grid { grid-template-columns: 1fr; }

  /* Formulario: campos a una columna */
  .form-row { grid-template-columns: 1fr; }

  /* Footer más compacto */
  .footer-bottom { flex-direction: column; gap: .5rem; }

  /* WhatsApp flotante sin tapar contenido clave */
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* Bloqueo de scroll del fondo con el menú móvil abierto (evita que se quede "pillado") */
body.nav-open { overflow: hidden; touch-action: none; }

/* Conserva el tamaño de logo móvil de la versión anterior. */
@media (max-width: 640px) {
  .brand img { height: 50px; }
  .header-inner { padding-top: 1.2rem; padding-bottom: 1rem; }
}

/* =====================================================================
   PRELOADER — cortina "staircase" (columnas que se retiran escalonadas)
   Inspirado en Skiper UI · skiper9, adaptado a Time Travelers y a GSAP
   ===================================================================== */
.tt-preloader {
  position: fixed; inset: 0; z-index: 9999;
  overflow: hidden; background: #10163A;
  /* Evita que el sistema pinte texto de fondo antes de tiempo */
  isolation: isolate;
}
.tt-preloader[hidden] { display: none; }

/* Columnas de la cortina */
.tt-pl__cols { position: absolute; inset: 0; display: flex; z-index: 1; }
.tt-pl__col {
  --step-color: #2F4399;
  flex: 1 1 0%; height: 102%;            /* 102% evita hairline al traslado */
  background: linear-gradient(180deg, #18204F 0%, #18204F 48%, var(--step-color) 100%);
  position: relative; will-change: transform; backface-visibility: hidden;
}
/* La escalera recoge la paleta del logo: azul, celeste, amarillo y naranja. */
.tt-pl__col:nth-child(1) { --step-color: #2F4399; }
.tt-pl__col:nth-child(2) { --step-color: #55B7D1; }
.tt-pl__col:nth-child(3) { --step-color: #F3C347; }
.tt-pl__col:nth-child(4) { --step-color: #ED673B; }
.tt-pl__col:nth-child(5) { --step-color: #2F4399; }
.tt-pl__col:nth-child(6) { --step-color: #55B7D1; }
/* La mitad superior permanece en un azul más profundo para dar contraste;
   el color de marca aparece al retirarse la escalera. */
.tt-pl__col::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,13,42,.08), rgba(8,13,42,0) 58%);
}
.tt-pl__col::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--step-color); filter: brightness(1.15); z-index: 1;
}
.tt-pl__col + .tt-pl__col { box-shadow: -1px 0 0 rgba(255,255,255,.08); }

/* Contenido central de marca (por encima de las columnas) */
.tt-pl__inner {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.35rem; padding: 2rem; text-align: center; color: #fff;
  will-change: transform, opacity;
}
.tt-pl__logo {
  width: clamp(118px, 22vw, 154px); height: auto;
  filter: none; opacity: 1;
  background: rgba(255,255,255,.96);
  padding: .65rem .9rem;
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(6,10,35,.18);
}
.tt-pl__word {
  font-family: var(--display); font-weight: 560; letter-spacing: -.025em;
  font-size: clamp(1.7rem, 6vw, 2.9rem); line-height: 1;
  min-height: 1.1em; color: #fff;
}
.tt-pl__word em { font-style: normal; color: var(--oro); }
/* Cambio de palabra con micro-fundido */
.tt-pl__word span {
  display: inline-block; opacity: 0;
  transform: translateY(.35em);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
.tt-pl__word span.is-in { opacity: 1; transform: none; }
.tt-pl__meter {
  width: min(230px, 54vw); height: 2px;
  background: rgba(255,255,255,.16); position: relative; overflow: hidden; border-radius: 2px;
}
.tt-pl__bar {
  position: absolute; inset: 0 auto 0 0; width: 0%;
  background: var(--oro); border-radius: 2px;
}
.tt-pl__count {
  font-family: var(--sans); font-size: .7rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.62);
}

/* Sin animación: el preloader debe desaparecer sin coreografía */
@media (prefers-reduced-motion: reduce) {
  .tt-pl__col::before { display: none; }
}

/* =====================================================================
   HERO — soporte de parallax (las transformaciones las aplica GSAP)
   ===================================================================== */
.hero__media img,
.hero__media video,
.page-hero__media img { will-change: transform; }
.hero__media,
.page-hero__media { will-change: transform; }


/* =====================================================================
   V1.6 — identidad, navegación móvil y CTA excursiones a medida
   ===================================================================== */

/* Más contraste para el logo sobre cielos claros, sin crear una caja visible. */
.site-header {
  background: linear-gradient(180deg, rgba(12,18,55,.48) 0%, rgba(12,18,55,.18) 58%, rgba(12,18,55,0) 100%);
}
.brand img {
  height: 64px;
  filter: drop-shadow(0 3px 12px rgba(8,12,40,.34));
}
.scrolled .brand img { height: 64px; }
.footer-brand img { height: 66px; }

/* Instagram: icono de app reconocible con su degradado de marca. */
.socials a[aria-label="Instagram"] {
  border: 0;
  background: radial-gradient(circle at 30% 107%, #fdf497 0 8%, #fdf497 9%, #fd5949 42%, #d6249f 66%, #285AEB 100%);
  box-shadow: 0 7px 20px -10px rgba(214,36,159,.75);
}
.socials a[aria-label="Instagram"]:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0 8%, #fdf497 9%, #fd5949 42%, #d6249f 66%, #285AEB 100%);
  border-color: transparent;
}
.socials a[aria-label="Instagram"] .instagram-mark { width: 18px; height: 20px; fill:#fff; }

/* CTA final de excursiones: composición editorial con fotografía diferente al hero. */
.custom-trip { overflow: hidden; }
.custom-trip__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
}
.custom-trip__media {
  margin: 0;
  min-height: clamp(410px, 44vw, 600px);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 70px -35px rgba(0,0,0,.72);
}
.custom-trip__media::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(23,27,69,.04), rgba(23,27,69,.22));
  pointer-events:none;
}
.custom-trip__media img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition: transform .8s var(--ease);
}
.custom-trip:hover .custom-trip__media img { transform: scale(1.025); }
.custom-trip__content { max-width: 610px; }
.custom-trip__content h2 { max-width: 12ch; }
.custom-trip__content > p:not(.rubric) {
  color: rgba(255,255,255,.82);
  max-width: 48ch;
  margin: 1.35rem 0 2rem;
}
.custom-trip__content .hero__actions { justify-content:flex-start; margin-top:0; }

/* Nuevo menú móvil: panel flotante, más aire y guiños a la paleta del logo. */
@media (max-width: 880px) {
  .site-header .header-inner {
    padding-top: 2rem;
    padding-bottom: 1.35rem;
    padding-left: .4rem;
    padding-right: .4rem;
  }
  .site-header .wrap { padding-inline: 1.35rem; }
  .brand img { height: 62px; }
  .scrolled .brand img { height: 62px; }
  .menu-btn {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-color: rgba(255,255,255,.52);
    background: rgba(19,27,75,.46);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 28px -16px rgba(0,0,0,.7);
  }

  .nav {
    inset: 12px;
    width: auto;
    height: calc(100dvh - 24px);
    padding: 8.5rem 1.35rem 2rem;
    justify-content: flex-start;
    gap: .25rem;
    border-radius: 28px;
    overflow: hidden auto;
    background:
      radial-gradient(circle at 92% 13%, rgba(247,205,71,.16) 0 9%, transparent 23%),
      radial-gradient(circle at 8% 90%, rgba(53,116,183,.28) 0 12%, transparent 31%),
      linear-gradient(145deg, #171B45 0%, #20286d 56%, #253580 100%);
    box-shadow: 0 28px 80px -28px rgba(7,11,40,.85);
    transform: translateX(calc(100% + 24px)) scale(.98);
    opacity: .3;
    transition: transform .48s var(--ease), opacity .32s ease;
  }
  .nav::before {
    content: "Explora Time Travelers";
    position: absolute;
    top: 2.05rem;
    left: 1.5rem;
    max-width: 10rem;
    font-size: .67rem;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 650;
    color: rgba(255,255,255,.62);
  }
  .nav::after {
    content:"";
    position:absolute;
    top: 5.15rem;
    left: 1.5rem;
    width: 48px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--oro) 0 32%, var(--terracota) 32% 65%, var(--cielo-claro) 65% 100%);
  }
  .nav-open .nav { transform: translateX(0) scale(1); opacity:1; }
  .nav > a:not(.btn) {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .95rem .2rem;
    border-bottom: 1px solid rgba(255,255,255,.13);
    font-size: clamp(1.55rem, 7vw, 2rem);
    font-weight: 520;
    letter-spacing: -.02em;
  }
  .nav > a:not(.btn)::after {
    content: "↗";
    display: grid;
    place-items: center;
    position: static;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--oro);
    font-family: var(--sans);
    font-size: .95rem;
    transform: none;
    transition: background .25s ease, transform .25s ease;
  }
  .nav > a:not(.btn):active::after { transform: translate(2px,-2px); background: rgba(247,205,71,.17); }
  .nav > .btn--book {
    width: 100%;
    justify-content: center;
    margin-top: 1.35rem;
    padding-block: 1.05rem;
    font-size: 1rem;
    box-shadow: 0 14px 36px -20px rgba(224,100,59,.9);
  }
  .nav-open .menu-btn {
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
  }
  .footer-brand img { height: 62px; }

  .custom-trip__grid { grid-template-columns: 1fr; gap: 2rem; }
  .custom-trip__media { min-height: 330px; border-radius: 20px; }
  .custom-trip__content h2 { max-width: 13ch; }
}

@media (max-width: 520px) {
  .site-header .wrap { padding-inline: 1.15rem; }
  .site-header .header-inner { padding-top: 1.8rem; padding-left: .25rem; padding-right: .25rem; }
  .brand img { height: 59px; }
  .scrolled .brand img { height: 59px; }
  .nav { inset: 9px; height: calc(100dvh - 18px); border-radius: 24px; padding-left: 1.2rem; padding-right: 1.2rem; }
  .nav-open .menu-btn { right: 1.55rem; top: 1.7rem; }
  .custom-trip__media { min-height: 285px; }
  .footer-brand img { height: 60px; }
}


/* =====================================================================
   V1.6.4 — vídeo de fondo en el hero principal
   ===================================================================== */
.hero__media--video {
  background: #070b20;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}
@media (max-width: 720px) {
  /* En vertical el vídeo 16:9 se recorta mucho. Desplazamos el foco hacia
     la izquierda para conservar la silueta y la cumbre del Teide. */
  .hero__video {
    object-position: 18% 50%;
  }
  .hero__media::after {
    background:
      linear-gradient(90deg, rgba(12,18,54,.62) 0%, rgba(12,18,54,.30) 72%, rgba(12,18,54,.10) 100%),
      linear-gradient(180deg, rgba(16,22,62,.42) 0%, rgba(16,22,62,.06) 34%, rgba(16,22,62,.62) 100%);
  }
  .hero h1 {
    text-shadow: 0 3px 10px rgba(4,8,30,.35), 0 14px 34px rgba(4,8,30,.38);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { transform: none !important; }
}


/* =====================================================================
   V1.7.1 — hero video como fondo puro, sin UI nativa móvil
   ===================================================================== */
.hero__video {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-enclosure,
.hero__video::-webkit-media-controls-panel,
.hero__video::-webkit-media-controls-play-button,
.hero__video::-webkit-media-controls-start-playback-button,
.hero__video::-webkit-media-controls-overlay-play-button,
.hero__video::-webkit-media-controls-overlay-enclosure {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (max-width: 720px) {
  .hero__video {
    pointer-events: none !important;
    user-select: none;
    -webkit-user-select: none;
  }
}


/* =====================================================================
   V1.7.2 — móvil: fotograma del propio vídeo + reproducción al primer toque
   y contención total del desbordamiento horizontal.
   ===================================================================== */
.hero__video-poster,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.hero__video-poster {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  background: #11183f;
}
.hero__video-poster.is-ready { opacity: 1; }
.hero__video-poster.is-hidden { opacity: 0; }
.hero__video {
  z-index: 2;
  opacity: 0;
  pointer-events: none !important;
  transition: opacity .22s ease;
}
.hero__video.is-playing { opacity: 1; }

/* Ni Safari ni Chrome pueden enseñar UI de vídeo al quedar la capa de vídeo
   invisible hasta que el evento playing confirma que ya está en movimiento. */
.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-enclosure,
.hero__video::-webkit-media-controls-panel,
.hero__video::-webkit-media-controls-play-button,
.hero__video::-webkit-media-controls-start-playback-button,
.hero__video::-webkit-media-controls-overlay-play-button,
.hero__video::-webkit-media-controls-overlay-enclosure {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  -webkit-appearance: none !important;
}

html, body, #page, main, header, footer, section {
  max-width: 100%;
}
body, main, .site-header, .site-footer, .hero {
  overflow-x: clip;
}
@supports not (overflow: clip) {
  html, body, main, .site-header, .site-footer, .hero { overflow-x: hidden; }
}

@media (max-width: 880px) {
  .hero__video-poster,
  .hero__video {
    object-position: 18% 50%;
  }
  .hero__media,
  .hero__inner,
  .site-header,
  .header-inner,
  .wrap {
    max-width: 100%;
  }
  .nav {
    max-width: calc(100% - 24px);
  }
}


/* =====================================================================
   V1.7.3 — móvil: el primer fotograma REAL es el propio vídeo.
   Sin canvas, sin poster artificial y sin fondo monocromático.
   ===================================================================== */
.hero__media--video {
  background: transparent !important;
}
.hero__video-poster { display: none !important; }
.hero__video {
  opacity: 1 !important;
  visibility: visible !important;
  background: transparent !important;
  pointer-events: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-enclosure,
.hero__video::-webkit-media-controls-panel,
.hero__video::-webkit-media-controls-play-button,
.hero__video::-webkit-media-controls-start-playback-button,
.hero__video::-webkit-media-controls-overlay-play-button,
.hero__video::-webkit-media-controls-overlay-enclosure {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  -webkit-appearance: none !important;
}
@media (max-width: 880px) {
  .hero__video {
    opacity: 1 !important;
    object-position: 18% 50%;
  }
}


/* =====================================================================
   V1.7.4 — móvil: fotograma REAL del MP4 por encima del vídeo pausado.
   El vídeo permanece oculto hasta el evento `playing`, impidiendo que iOS
   pueda dibujar su botón de reproducción nativo sobre el hero.
   ===================================================================== */
.hero__frame { display: none; }

@media (max-width: 880px) {
  .hero__media--video {
    background: #0d173f url("../assets/hero-teide.png") 18% 50% / cover no-repeat !important;
  }
  .hero__video {
    z-index: 1 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .hero__video.is-playing {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .hero__frame {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: transparent;
    transition: opacity .18s ease;
  }
  .hero__frame.is-ready {
    opacity: 1;
    visibility: visible;
  }
  .hero__frame.is-hidden {
    opacity: 0;
    visibility: hidden;
  }
  .hero__media::after { z-index: 4; }
  .hero__inner { z-index: 5; }

  .hero__video::-webkit-media-controls,
  .hero__video::-webkit-media-controls-enclosure,
  .hero__video::-webkit-media-controls-panel,
  .hero__video::-webkit-media-controls-play-button,
  .hero__video::-webkit-media-controls-start-playback-button,
  .hero__video::-webkit-media-controls-overlay-play-button,
  .hero__video::-webkit-media-controls-overlay-enclosure {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    -webkit-appearance: none !important;
  }
}

/* =====================================================================
   V1.7.5 — capa clara sutil sobre el vídeo del hero para mejorar
   la legibilidad/contraste del logo, especialmente en móvil.
   ===================================================================== */
.hero__media::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.08) 18%, rgba(255,255,255,0) 42%),
    linear-gradient(90deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.04) 18%, rgba(255,255,255,0) 34%),
    linear-gradient(90deg, rgba(13,19,56,.50) 0%, rgba(13,19,56,.24) 42%, rgba(13,19,56,.05) 74%, rgba(13,19,56,0) 100%),
    linear-gradient(180deg, rgba(23,27,69,.38) 0%, rgba(23,27,69,0) 34%),
    linear-gradient(0deg, rgba(23,27,69,.76) 4%, rgba(23,27,69,.14) 48%, rgba(43,56,140,.06) 100%);
}

@media (max-width: 880px) {
  .hero__media::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,.10) 20%, rgba(255,255,255,0) 46%),
      linear-gradient(90deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.05) 26%, rgba(255,255,255,0) 42%),
      linear-gradient(90deg, rgba(12,18,54,.52) 0%, rgba(12,18,54,.24) 72%, rgba(12,18,54,.08) 100%),
      linear-gradient(180deg, rgba(16,22,62,.34) 0%, rgba(16,22,62,.05) 34%, rgba(16,22,62,.56) 100%);
  }
}

/* =====================================================================
   V1.7.6 — refuerzo real del contraste del logo sobre el hero.
   Se añade una luz localizada detrás del logotipo y una sombra más marcada.
   ===================================================================== */
.site-header {
  background: linear-gradient(180deg, rgba(12,18,55,.36) 0%, rgba(12,18,55,.12) 58%, rgba(12,18,55,0) 100%);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  isolation: isolate;
}
.brand::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 24px);
  height: calc(100% + 18px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 28% 38%, rgba(255,255,255,.72) 0%, rgba(255,255,255,.52) 28%, rgba(255,255,255,.24) 52%, rgba(255,255,255,0) 78%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}
.brand img {
  filter: drop-shadow(0 4px 12px rgba(7,12,38,.42)) drop-shadow(0 1px 0 rgba(255,255,255,.16));
}
.hero__media::after {
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.34) 0%, rgba(255,255,255,.18) 16%, rgba(255,255,255,.06) 30%, rgba(255,255,255,0) 48%),
    linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.08) 18%, rgba(255,255,255,0) 42%),
    linear-gradient(90deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.04) 18%, rgba(255,255,255,0) 34%),
    linear-gradient(90deg, rgba(13,19,56,.46) 0%, rgba(13,19,56,.20) 42%, rgba(13,19,56,.04) 74%, rgba(13,19,56,0) 100%),
    linear-gradient(180deg, rgba(23,27,69,.34) 0%, rgba(23,27,69,0) 34%),
    linear-gradient(0deg, rgba(23,27,69,.74) 4%, rgba(23,27,69,.14) 48%, rgba(43,56,140,.06) 100%);
}
@media (max-width: 880px) {
  .brand::before {
    left: -10px;
    width: calc(100% + 18px);
    height: calc(100% + 14px);
    border-radius: 22px;
    background:
      radial-gradient(circle at 30% 36%, rgba(255,255,255,.78) 0%, rgba(255,255,255,.58) 30%, rgba(255,255,255,.24) 54%, rgba(255,255,255,0) 80%);
    filter: blur(8px);
  }
  .brand img {
    filter: drop-shadow(0 4px 11px rgba(7,12,38,.44)) drop-shadow(0 1px 0 rgba(255,255,255,.18));
  }
  .hero__media::after {
    background:
      radial-gradient(circle at 18% 9%, rgba(255,255,255,.40) 0%, rgba(255,255,255,.22) 18%, rgba(255,255,255,.08) 34%, rgba(255,255,255,0) 52%),
      linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.10) 20%, rgba(255,255,255,0) 46%),
      linear-gradient(90deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.05) 26%, rgba(255,255,255,0) 42%),
      linear-gradient(90deg, rgba(12,18,54,.48) 0%, rgba(12,18,54,.20) 72%, rgba(12,18,54,.07) 100%),
      linear-gradient(180deg, rgba(16,22,62,.30) 0%, rgba(16,22,62,.05) 34%, rgba(16,22,62,.54) 100%);
  }
}


/* =====================================================================
   V1.7.14 — Página Senderismo
   ===================================================================== */
.senderismo-hero .page-hero__media img { object-position: center 48%; }
.senderismo-intro { margin-bottom: clamp(2rem,4vw,3.2rem); }
.hike-list { display: grid; gap: clamp(1.6rem,3vw,2.6rem); }
.hike-card {
  display: grid;
  grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
  overflow: hidden;
  border: 1px solid var(--linea);
  border-radius: 28px;
  background: var(--papel);
  box-shadow: 0 18px 42px rgba(23,27,69,.07);
}
.hike-card:nth-child(even) { grid-template-columns: minmax(0,1.28fr) minmax(260px,.72fr); }
.hike-card:nth-child(even) .hike-card__media { order: 2; }
.hike-card__media {
  margin: 0;
  min-height: 510px;
  background: var(--indigo-ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hike-card__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hike-card__body { padding: clamp(1.7rem,3.5vw,3.4rem); display: flex; flex-direction: column; justify-content: center; }
.hike-card__top { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.15rem; }
.hike-card__num {
  width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--terracota); color: #fff; font-weight: 700; font-size: .9rem;
}
.hike-card h2 { color: var(--indigo-ink); font-size: clamp(2rem,3vw,3.1rem); margin: 0 0 1rem; line-height: 1.03; }
.hike-card p { color: var(--tinta-suave); font-size: 1rem; line-height: 1.72; margin: 0 0 1rem; }
.hike-card .linklike { margin-top: .65rem; align-self: flex-start; }
.senderismo-cta .custom-trip__media img { object-position: center; }
@media (max-width: 900px){
  .hike-card, .hike-card:nth-child(even) { grid-template-columns: 1fr; }
  .hike-card:nth-child(even) .hike-card__media { order: 0; }
  .hike-card__media { min-height: 0; max-height: none; }
  .hike-card__media img { height: auto; max-height: 680px; }
}
@media (max-width: 560px){
  .hike-card { border-radius: 20px; }
  .hike-card__body { padding: 1.45rem; }
  .hike-card__media img { max-height: none; }
}

/* V1.7.20 — bloque social home siempre visible */
.home-social-bar,
.home-social-bar__inner,
.home-social-bar__copy,
.home-social-bar__icons {
  opacity: 1 !important;
  visibility: visible !important;
}
.home-social-bar {
  background: var(--papel);
  padding: 1rem 0 1.4rem;
}
.home-social-bar__inner {
  min-height: 84px;
}
.home-social-bar__icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-social-bar__icons svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.home-social-bar__icons a[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0 8%, #fdf497 9%, #fd5949 42%, #d6249f 66%, #285AEB 100%);
  border-color: transparent;
}
.home-social-bar__icons a[aria-label="Instagram"] svg { fill: #fff; }
.home-social-bar__icons a[aria-label="Instagram"] span { color: #fff; }


/* =====================================================================
   V1.7.21 — franja social HOME aislada de los estilos del footer
   ===================================================================== */
.home-intro-section {
  padding-top: 0 !important;
}
.tt-social-strip {
  box-sizing: border-box !important;
  min-height: 104px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
  margin: 0 auto clamp(3.8rem, 7vw, 7rem) !important;
  padding-top: 1.35rem !important;
  padding-bottom: 1.35rem !important;
  border-bottom: 1px solid rgba(23,27,69,.13) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.tt-social-strip__text {
  display: flex !important;
  align-items: baseline !important;
  gap: .75rem !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.tt-social-strip__kicker {
  display: inline-block !important;
  color: #E0643B !important;
  font-size: .76rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: .20em !important;
  text-transform: uppercase !important;
}
.tt-social-strip__handle {
  display: inline-block !important;
  color: #171B45 !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
}
.tt-social-strip__links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: .65rem !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.tt-social-link {
  box-sizing: border-box !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(23,27,69,.13) !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.72) !important;
  box-shadow: 0 8px 22px rgba(23,27,69,.07) !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}
.tt-social-link svg {
  display: block !important;
  width: 19px !important;
  height: 19px !important;
  fill: #171B45 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.tt-social-link:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(224,100,59,.45) !important;
  box-shadow: 0 12px 26px rgba(23,27,69,.12) !important;
}
.tt-social-link--instagram {
  border: 0 !important;
  background: radial-gradient(circle at 30% 107%, #fdf497 0 8%, #fdf497 9%, #fd5949 42%, #d6249f 66%, #285AEB 100%) !important;
}
.tt-social-link--instagram svg { fill: #fff !important; }
.tt-social-link--youtube:hover { background: #fff !important; }
@media (max-width: 680px) {
  .tt-social-strip {
    min-height: 92px !important;
    align-items: center !important;
    margin-bottom: 3.5rem !important;
  }
  .tt-social-strip__text {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .3rem !important;
  }
  .tt-social-strip__handle { font-size: .88rem !important; }
  .tt-social-link {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
}
@media (max-width: 440px) {
  .tt-social-strip__handle { display: none !important; }
  .tt-social-strip__links { gap: .45rem !important; }
}

/* V1.7.24 — dirección visible en footer y contacto */
.footer-address {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: .15rem;
}
.footer-address a {
  display: grid !important;
  gap: .15rem;
  color: rgba(255,255,255,.82) !important;
  font-weight: 400 !important;
  line-height: 1.45;
}
.footer-address__name {
  color: #fff;
  font-weight: 700;
}
.footer-address a:hover { color: #fff !important; }
.contact-aside .ci--address,
.contact-aside .contact-location {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100%;
}
.contact-location__address {
  display: grid !important;
  gap: .12rem;
  margin-top: .55rem;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  line-height: 1.45;
}
.contact-location__address strong {
  display: block;
  color: #fff !important;
  font-size: 1.08rem;
  margin-bottom: .1rem;
}
.contact-location__address span {
  display: block;
  color: rgba(255,255,255,.88) !important;
}
.contact-location__address:hover span { color: #fff !important; }


/* V1.7.25 — franja social con más color */
.tt-social-strip {
  position: relative !important;
  overflow: hidden !important;
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
  border: 1px solid rgba(23,27,69,.10) !important;
  border-bottom: 1px solid rgba(23,27,69,.10) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 12% 50%, rgba(224,100,59,.16), transparent 24%),
    radial-gradient(circle at 88% 50%, rgba(43,56,140,.12), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.94) 0%, rgba(255,248,244,.96) 35%, rgba(244,246,255,.96) 100%) !important;
  box-shadow: 0 18px 42px rgba(23,27,69,.07) !important;
}
.tt-social-strip::before,
.tt-social-strip::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.tt-social-strip::before {
  left: 1.6rem;
  right: 1.6rem;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #E0643B 0%, #F2B950 45%, #4F6BDA 100%);
  opacity: .95;
}
.tt-social-strip::after {
  width: 180px;
  height: 180px;
  right: -70px;
  top: -92px;
  background: radial-gradient(circle, rgba(79,107,218,.12) 0%, rgba(79,107,218,0) 70%);
}
.tt-social-strip__text,
.tt-social-strip__links {
  position: relative;
  z-index: 1;
}
.tt-social-strip__kicker {
  color: #E0643B !important;
}
.tt-social-strip__handle {
  color: #1E255F !important;
}
.tt-social-link {
  background: rgba(255,255,255,.88) !important;
}
.tt-social-link--facebook {
  background: rgba(24,119,242,.08) !important;
  border-color: rgba(24,119,242,.18) !important;
}
.tt-social-link--youtube {
  background: rgba(255,0,0,.06) !important;
  border-color: rgba(255,0,0,.14) !important;
}
.tt-social-link--facebook:hover {
  background: rgba(24,119,242,.14) !important;
  border-color: rgba(24,119,242,.28) !important;
}
.tt-social-link--youtube:hover {
  background: rgba(255,0,0,.10) !important;
  border-color: rgba(255,0,0,.24) !important;
}
@media (max-width: 680px) {
  .tt-social-strip {
    padding-left: 1.1rem !important;
    padding-right: 1.1rem !important;
    border-radius: 22px !important;
  }
  .tt-social-strip::before {
    left: 1.1rem;
    right: 1.1rem;
  }
}


/* V1.7.26 — rediseño alternativo de la franja social */
.tt-social-strip {
  min-height: 96px !important;
  padding: 1.15rem 1.35rem !important;
  border: 0 !important;
  border-radius: 26px !important;
  background: linear-gradient(135deg, #171B45 0%, #20285C 52%, #293274 100%) !important;
  box-shadow: 0 20px 50px rgba(23,27,69,.18) !important;
}
.tt-social-strip::before {
  display: none !important;
}
.tt-social-strip::after {
  width: 180px !important;
  height: 180px !important;
  left: -42px !important;
  top: auto !important;
  bottom: -92px !important;
  right: auto !important;
  background: radial-gradient(circle, rgba(224,100,59,.34) 0%, rgba(224,100,59,0) 72%) !important;
}
.tt-social-strip__text {
  gap: .9rem !important;
}
.tt-social-strip__kicker {
  padding: .62rem .92rem !important;
  border-radius: 999px !important;
  background: #E0643B !important;
  color: #fff !important;
  font-size: .72rem !important;
  line-height: 1 !important;
  box-shadow: 0 10px 24px rgba(224,100,59,.24) !important;
}
.tt-social-strip__handle {
  color: #fff !important;
  font-size: 1.08rem !important;
  font-weight: 600 !important;
}
.tt-social-strip__links {
  gap: .75rem !important;
}
.tt-social-link {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: none !important;
}
.tt-social-link svg {
  fill: #fff !important;
}
.tt-social-link:hover {
  transform: translateY(-3px) !important;
  background: rgba(255,255,255,.18) !important;
  border-color: rgba(255,255,255,.28) !important;
  box-shadow: 0 12px 28px rgba(8,12,40,.22) !important;
}
.tt-social-link--facebook {
  background: rgba(24,119,242,.18) !important;
  border-color: rgba(111,168,255,.34) !important;
}
.tt-social-link--youtube {
  background: rgba(255,0,0,.12) !important;
  border-color: rgba(255,92,92,.26) !important;
}
.tt-social-link--facebook:hover {
  background: rgba(24,119,242,.28) !important;
  border-color: rgba(111,168,255,.44) !important;
}
.tt-social-link--youtube:hover {
  background: rgba(255,0,0,.22) !important;
  border-color: rgba(255,92,92,.38) !important;
}
.tt-social-link--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0 8%, #fdf497 9%, #fd5949 42%, #d6249f 66%, #285AEB 100%) !important;
  border-color: transparent !important;
}
@media (max-width: 680px) {
  .tt-social-strip {
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 1rem !important;
    border-radius: 22px !important;
  }
  .tt-social-strip__text {
    gap: .55rem !important;
  }
  .tt-social-strip__handle {
    font-size: .96rem !important;
  }
  .tt-social-link {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }
}
@media (max-width: 440px) {
  .tt-social-strip {
    flex-direction: column !important;
  }
  .tt-social-strip__links {
    width: 100% !important;
    justify-content: flex-start !important;
  }
}


/* V1.7.27 — franja social refinada e integrada */
.tt-social-strip {
  min-height: 88px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.4rem !important;
  padding: 1.15rem 1.4rem !important;
  border: 1px solid rgba(23,27,69,.10) !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.48) 100%) !important;
  box-shadow: 0 14px 34px rgba(23,27,69,.06) !important;
  backdrop-filter: blur(7px) !important;
}
.tt-social-strip::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  left: 1.15rem !important;
  top: 50% !important;
  width: 4px !important;
  height: 38px !important;
  transform: translateY(-50%) !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #E0643B 0%, #F2B950 100%) !important;
  opacity: 1 !important;
}
.tt-social-strip::after {
  display: none !important;
}
.tt-social-strip__text {
  display: flex !important;
  align-items: center !important;
  gap: .85rem !important;
  padding-left: .95rem !important;
}
.tt-social-strip__kicker {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #E0643B !important;
  font-size: .76rem !important;
  letter-spacing: .20em !important;
  font-weight: 800 !important;
}
.tt-social-strip__handle {
  color: #171B45 !important;
  font-size: 1.02rem !important;
  font-weight: 650 !important;
}
.tt-social-strip__links {
  display: flex !important;
  align-items: center !important;
  gap: .7rem !important;
}
.tt-social-link {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(23,27,69,.11) !important;
  background: rgba(255,255,255,.82) !important;
  box-shadow: 0 8px 22px rgba(23,27,69,.05) !important;
}
.tt-social-link svg {
  width: 18px !important;
  height: 18px !important;
  fill: #171B45 !important;
}
.tt-social-link:hover {
  transform: translateY(-2px) !important;
  background: #fff !important;
  border-color: rgba(224,100,59,.26) !important;
  box-shadow: 0 12px 26px rgba(23,27,69,.09) !important;
}
.tt-social-link--facebook {
  background: rgba(24,119,242,.06) !important;
  border-color: rgba(24,119,242,.12) !important;
}
.tt-social-link--youtube {
  background: rgba(255,0,0,.05) !important;
  border-color: rgba(255,0,0,.11) !important;
}
.tt-social-link--instagram {
  border: 0 !important;
  background: radial-gradient(circle at 30% 107%, #fdf497 0 8%, #fdf497 9%, #fd5949 42%, #d6249f 66%, #285AEB 100%) !important;
  box-shadow: 0 10px 24px rgba(214,36,159,.18) !important;
}
.tt-social-link--instagram svg {
  fill: #fff !important;
}
@media (max-width: 680px) {
  .tt-social-strip {
    min-height: 0 !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 1rem !important;
    border-radius: 20px !important;
  }
  .tt-social-strip::before {
    left: .95rem !important;
    height: 30px !important;
  }
  .tt-social-strip__text {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .3rem !important;
    padding-left: .85rem !important;
  }
  .tt-social-strip__handle {
    font-size: .92rem !important;
  }
  .tt-social-link {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 13px !important;
  }
}
@media (max-width: 440px) {
  .tt-social-strip {
    flex-direction: column !important;
  }
  .tt-social-strip__links {
    width: 100% !important;
    justify-content: flex-start !important;
  }
}


/* V1.7.28 — más aire y mejor jerarquía en móvil */
@media (max-width: 680px) {
  .tt-social-strip {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 1.15rem !important;
    padding: 1.35rem 1.25rem 1.4rem !important;
    border-radius: 22px !important;
  }
  .tt-social-strip::before {
    left: 1.2rem !important;
    top: 1.32rem !important;
    width: 4px !important;
    height: 25px !important;
    transform: none !important;
  }
  .tt-social-strip__text {
    width: 100% !important;
    padding-left: 1rem !important;
    gap: .4rem !important;
  }
  .tt-social-strip__kicker {
    line-height: 1.15 !important;
  }
  .tt-social-strip__handle {
    font-size: .92rem !important;
    line-height: 1.35 !important;
  }
  .tt-social-strip__links {
    width: 100% !important;
    justify-content: flex-start !important;
    gap: .85rem !important;
    padding-left: 1rem !important;
  }
  .tt-social-link {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    border-radius: 14px !important;
  }
}
@media (max-width: 440px) {
  .tt-social-strip {
    padding: 1.4rem 1.15rem 1.45rem !important;
  }
  .tt-social-strip::before {
    left: 1.1rem !important;
  }
  .tt-social-strip__text,
  .tt-social-strip__links {
    padding-left: .95rem !important;
  }
}


/* V1.7.31 — reseñas Google sobre el botón de WhatsApp */
.review-widget {
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: 9991;
}
.review-float {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #E0643B, #C94F2A);
  color: #fff;
  box-shadow: 0 12px 30px rgba(224,100,59,.30);
  border: 3px solid rgba(255,255,255,.88);
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-float:hover,
.review-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(224,100,59,.38);
}
.review-float svg {
  width: 27px;
  height: 27px;
  fill: #fff;
}
.review-popover {
  position: absolute;
  right: 72px;
  bottom: -2px;
  width: 230px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 82px;
  gap: .8rem;
  align-items: center;
  background: rgba(255,255,255,.98);
  color: var(--indigo-ink);
  border: 1px solid rgba(23,27,69,.10);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(23,27,69,.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(10px) scale(.98);
  transform-origin: right bottom;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.review-widget:hover .review-popover,
.review-widget:focus-within .review-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}
.review-popover::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 22px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid rgba(23,27,69,.10);
  border-top: 1px solid rgba(23,27,69,.10);
  transform: rotate(45deg);
}
.review-popover__copy {
  display: grid;
  gap: .22rem;
  min-width: 0;
}
.review-popover__eyebrow {
  color: var(--terracota);
  font-size: .68rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.review-popover__copy strong {
  font-size: .98rem;
  line-height: 1.22;
  color: var(--indigo-ink);
}
.review-popover__copy > span:last-child {
  font-size: .82rem;
  line-height: 1.35;
  color: var(--tinta-suave);
}
.review-popover img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}
.review-popover__hint {
  grid-column: 1 / -1;
  padding-top: .65rem;
  border-top: 1px solid rgba(23,27,69,.08);
  color: var(--tinta-suave);
  font-size: .72rem;
  text-align: center;
}
@media (max-width: 720px) {
  .review-widget {
    right: 16px;
    bottom: 80px;
  }
  .review-float {
    width: 52px;
    height: 52px;
    border-width: 2px;
  }
  .review-float svg {
    width: 24px;
    height: 24px;
  }
  /* En móvil, tocar lleva directamente a Google: no se muestra el QR. */
  .review-popover {
    display: none !important;
  }
}


/* V1.7.32 — galería de la furgoneta en home */
.van-showcase {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}
.van-showcase__head {
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.van-showcase__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.van-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 40px rgba(23,27,69,.08);
  min-height: 220px;
  margin: 0;
}
.van-card--main {
  grid-row: span 2;
  min-height: 100%;
}
.van-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.van-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: .35rem;
}
.van-highlight {
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.48));
  border: 1px solid rgba(23,27,69,.08);
}
.van-highlight__label {
  display: inline-flex;
  align-items: center;
  padding: .36rem .7rem;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracota);
  background: rgba(224,100,59,.10);
  margin-bottom: .7rem;
}
.van-highlight p {
  margin: 0;
  color: var(--tinta-suave);
  line-height: 1.55;
}
@media (max-width: 980px) {
  .van-showcase__grid {
    grid-template-columns: 1fr 1fr;
  }
  .van-card--main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }
  .van-highlights {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .van-showcase__grid {
    gap: .8rem;
  }
  .van-card {
    border-radius: 20px;
    min-height: 170px;
  }
  .van-card--main {
    min-height: 240px;
  }
  .van-highlight {
    padding: 1rem;
    border-radius: 18px;
  }
}


/* V1.7.33 — segunda versión galería de la furgoneta */
.van-showcase--v2 {
  padding-top: clamp(3.2rem, 5vw, 4.8rem);
}
.van-lounge {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}
.van-lounge__copy {
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.44));
  border: 1px solid rgba(23,27,69,.08);
  box-shadow: 0 18px 40px rgba(23,27,69,.05);
}
.van-lounge__lead {
  margin: .9rem 0 0;
  color: var(--tinta-suave);
  line-height: 1.65;
  max-width: 46ch;
}
.van-lounge__points {
  display: grid;
  gap: .85rem;
  margin-top: 1.25rem;
}
.van-point {
  padding: .95rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(23,27,69,.07);
}
.van-point__title {
  display: inline-block;
  margin-bottom: .45rem;
  color: var(--indigo-ink);
  font-weight: 700;
}
.van-point p {
  margin: 0;
  color: var(--tinta-suave);
  line-height: 1.55;
}
.van-lounge__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.25rem;
}
.van-lounge__chips .chip {
  background: rgba(224,100,59,.10);
  color: var(--indigo-ink);
  border-color: rgba(224,100,59,.16);
}
.van-lounge__gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 100%;
}
.van-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 40px rgba(23,27,69,.08);
}
.van-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.van-shot--main {
  grid-row: 1 / span 2;
  min-height: 480px;
}
.van-shot--main::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(23,27,69,0) 0%, rgba(23,27,69,.76) 100%);
}
.van-shot--main figcaption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.1rem;
  z-index: 1;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}
.van-shot--top,
.van-shot--bottom-left,
.van-shot--bottom-right {
  min-height: 230px;
}
.van-shot--top {
  grid-column: 2;
  grid-row: 1;
}
.van-shot--bottom-left,
.van-shot--bottom-right {
  min-height: 225px;
}
.van-shot--bottom-left {
  grid-column: 2;
  grid-row: 2;
}
.van-shot--bottom-right {
  display: none;
}
/* make the second row a two-up strip inside col 2 */
.van-lounge__gallery {
  position: relative;
}
.van-shot--bottom-left {
  width: calc(50% - .5rem);
  position: absolute;
  right: calc(50% + .5rem);
  bottom: 0;
}
.van-shot--bottom-right {
  display: block;
  width: calc(50% - .5rem);
  position: absolute;
  right: 0;
  bottom: 0;
  min-height: 225px;
}
.van-shot--top {
  min-height: 245px;
}
@media (max-width: 1024px) {
  .van-lounge {
    grid-template-columns: 1fr;
  }
  .van-lounge__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: .9rem;
  }
  .van-shot--main {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 340px;
  }
  .van-shot--top {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 220px;
    position: relative;
  }
  .van-shot--bottom-left,
  .van-shot--bottom-right {
    position: relative;
    width: auto;
    min-height: 180px;
    right: auto;
    bottom: auto;
    display: block;
  }
}
@media (max-width: 640px) {
  .van-lounge__copy {
    border-radius: 22px;
    padding: 1.2rem;
  }
  .van-point {
    border-radius: 16px;
    padding: .85rem .9rem;
  }
  .van-lounge__gallery {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }
  .van-shot {
    border-radius: 20px;
  }
  .van-shot--main {
    min-height: 260px;
  }
  .van-shot--top {
    min-height: 170px;
  }
  .van-shot--bottom-left,
  .van-shot--bottom-right {
    min-height: 145px;
  }
  .van-shot--main figcaption {
    left: .9rem;
    right: .9rem;
    bottom: .85rem;
    font-size: .92rem;
  }
}


/* V1.7.34 — furgoneta minimal, fotos sin recortes */
.van-clean {
  padding-top: clamp(3rem, 5vw, 4.4rem);
  padding-bottom: clamp(3rem, 5vw, 4.4rem);
}
.van-clean__head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.6rem;
}
.van-clean__head p:last-child {
  margin: 0 0 .25rem;
  color: var(--tinta-suave);
  font-size: 1rem;
}
.van-clean__gallery.activity-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin: 0;
}
.van-clean__photo.activity-gallery__item {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border-radius: 22px;
  background: var(--papel-2);
  cursor: zoom-in;
  box-shadow: 0 12px 30px rgba(23,27,69,.06);
}
.van-clean__photo.activity-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transition: transform .35s ease;
}
.van-clean__photo:hover img {
  transform: scale(1.015);
}
.van-clean__open {
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  padding: .7rem 1rem;
  background: rgba(255,255,255,.94);
  color: var(--indigo-ink);
  font: inherit;
  font-size: .86rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(23,27,69,.14);
  cursor: pointer;
}
.van-clean__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}
.van-clean__meta span {
  display: inline-flex;
  align-items: center;
  padding: .5rem .78rem;
  border-radius: 999px;
  border: 1px solid rgba(23,27,69,.09);
  background: rgba(255,255,255,.56);
  color: var(--indigo-ink);
  font-size: .82rem;
  font-weight: 600;
}
@media (max-width: 760px) {
  .van-clean__head {
    grid-template-columns: 1fr;
    gap: .55rem;
    margin-bottom: 1.15rem;
  }
  .van-clean__head p:last-child {
    margin: 0;
  }
  .van-clean__gallery.activity-gallery {
    display: flex;
    overflow-x: auto;
    gap: .75rem;
    padding: 0 0 .55rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .van-clean__gallery.activity-gallery::-webkit-scrollbar {
    display: none;
  }
  .van-clean__photo.activity-gallery__item {
    flex: 0 0 86%;
    scroll-snap-align: start;
    border-radius: 18px;
  }
  .van-clean__photo.activity-gallery__item img {
    width: 100%;
    height: auto;
  }
  .van-clean__meta {
    margin-top: .8rem;
  }
}
@media (max-width: 480px) {
  .van-clean__photo.activity-gallery__item {
    flex-basis: 90%;
  }
  .van-clean__open {
    right: .65rem;
    bottom: .65rem;
    padding: .6rem .82rem;
    font-size: .8rem;
  }
  .van-clean__meta span {
    font-size: .76rem;
    padding: .45rem .65rem;
  }
}


/* V1.7.35 — galería compacta de actividades en home */
.activity-moments {
  padding-top: clamp(2.6rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 5vw, 4.6rem);
  background: var(--papel);
}
.activity-moments__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  margin-bottom: clamp(1.4rem, 2.5vw, 2rem);
}
.activity-moments__head h2 {
  margin-bottom: 0;
}
.activity-moments__facebook {
  flex-shrink: 0;
}
.activity-moments__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 220px 180px;
  gap: .85rem;
}
.activity-moment {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: var(--papel-2);
}
.activity-moment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(23,27,69,.68) 100%);
  opacity: .82;
  transition: opacity .3s ease;
}
.activity-moment img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}
.activity-moment:hover img {
  transform: scale(1.035);
}
.activity-moment:hover::after {
  opacity: .94;
}
.activity-moment__label {
  position: absolute;
  left: 1rem;
  bottom: .9rem;
  z-index: 1;
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.activity-moment--teide { grid-column: 1 / 6; grid-row: 1 / 3; }
.activity-moment--anaga { grid-column: 6 / 10; grid-row: 1; }
.activity-moment--masca { grid-column: 10 / 13; grid-row: 1; }
.activity-moment--cetaceos { grid-column: 6 / 9; grid-row: 2; }
.activity-moment--norte { grid-column: 9 / 13; grid-row: 2; }
.activity-moment--teide img { object-position: center 48%; }
.activity-moment--anaga img { object-position: center 50%; }
.activity-moment--masca img { object-position: center 52%; }
.activity-moment--cetaceos img { object-position: center 48%; }
.activity-moment--norte img { object-position: center 52%; }
@media (max-width: 820px) {
  .activity-moments__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .activity-moments__grid {
    display: flex;
    overflow-x: auto;
    gap: .8rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
    padding-bottom: .25rem;
  }
  .activity-moments__grid::-webkit-scrollbar { display: none; }
  .activity-moment,
  .activity-moment--teide,
  .activity-moment--anaga,
  .activity-moment--masca,
  .activity-moment--cetaceos,
  .activity-moment--norte {
    flex: 0 0 min(78vw, 330px);
    height: 230px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .activity-moments {
    padding-top: 2.2rem;
    padding-bottom: 3rem;
  }
  .activity-moment,
  .activity-moment--teide,
  .activity-moment--anaga,
  .activity-moment--masca,
  .activity-moment--cetaceos,
  .activity-moment--norte {
    flex-basis: 82vw;
    height: 210px;
  }
}


/* V1.7.36 — página y popup Rent a Car */
.rentacar-page { background: var(--papel); }
.rentacar-intro {
  padding-top: clamp(8rem, 12vw, 10rem);
  padding-bottom: clamp(1.8rem, 3vw, 2.8rem);
}
.rentacar-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-top: .7rem;
}
.rentacar-title-row h1 {
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 6rem);
  color: var(--indigo-ink);
  line-height: .98;
}
.rentacar-title-row p {
  margin: 0 0 .45rem;
  color: var(--tinta-suave);
  font-size: 1.08rem;
  line-height: 1.6;
}
.rentacar-content { padding-top: 1rem; }
.rentacar-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.rentacar-rates {
  position: sticky;
  top: 2rem;
  display: grid;
  gap: 1rem;
}
.rentacar-rates__image {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(23,27,69,.08);
  box-shadow: 0 18px 46px rgba(23,27,69,.08);
}
.rentacar-rates__image img {
  display: block;
  width: 100%;
  height: auto;
}
.rentacar-booking-link { width: 100%; justify-content: center; }
.rentacar-form-panel {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 28px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(23,27,69,.08);
  box-shadow: 0 18px 46px rgba(23,27,69,.06);
}
.rentacar-form-panel__lead {
  margin: 0 0 1.4rem;
  color: var(--tinta-suave);
}

.rent-popup {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(10,14,47,.58);
  backdrop-filter: blur(9px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.rent-popup.is-open { opacity: 1; visibility: visible; }
.rent-popup__card {
  position: relative;
  width: min(92vw, 480px);
  padding: 2rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(247,205,71,.16), transparent 30%),
    linear-gradient(145deg, #fff 0%, #fbf6ec 100%);
  box-shadow: 0 32px 90px rgba(5,9,35,.28);
  text-align: center;
  transform: translateY(18px) scale(.98);
  transition: transform .3s ease;
}
.rent-popup.is-open .rent-popup__card { transform: translateY(0) scale(1); }
.rent-popup__close {
  position: absolute;
  top: .95rem;
  right: .95rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23,27,69,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--indigo-ink);
  padding: 0;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15,23,42,.12);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.rent-popup__close svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rent-popup__close:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(23,27,69,.2);
  box-shadow: 0 14px 28px rgba(15,23,42,.16);
}
.rent-popup__close:focus-visible {
  outline: none;
  border-color: rgba(224,100,59,.38);
  box-shadow: 0 0 0 4px rgba(224,100,59,.16), 0 14px 28px rgba(15,23,42,.16);
}
.rent-popup__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--terracota), #F39C34);
  box-shadow: 0 16px 32px rgba(224,100,59,.22);
}
.rent-popup__icon svg { width: 36px; height: 36px; }
.rent-popup__eyebrow {
  display: inline-block;
  margin-bottom: .5rem;
  color: var(--terracota);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.rent-popup__copy h2 {
  margin: 0;
  color: var(--indigo-ink);
  font-family: var(--display);
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  line-height: 1;
}
.rent-popup__copy p {
  margin: .85rem auto 1.35rem;
  max-width: 32ch;
  color: var(--tinta-suave);
  line-height: 1.55;
}
.rent-popup__cta { width: 100%; justify-content: center; }
.rent-popup__later {
  margin-top: .9rem;
  border: 0;
  background: transparent;
  color: var(--tinta-suave);
  font: inherit;
  font-size: .86rem;
  cursor: pointer;
}
.rent-popup__later:hover { color: var(--indigo-ink); }
@media (max-width: 880px) {
  .rentacar-title-row,
  .rentacar-grid { grid-template-columns: 1fr; }
  .rentacar-rates { position: relative; top: auto; }
  .rentacar-title-row p { max-width: 42ch; }
}
@media (max-width: 560px) {
  .rentacar-intro { padding-top: 7rem; }
  .rentacar-rates__image,
  .rentacar-form-panel { border-radius: 22px; }
  .rent-popup { align-items: end; padding: .8rem; }
  .rent-popup__card {
    width: 100%;
    padding: 1.55rem 1.2rem 1.2rem;
    border-radius: 26px;
  }
  .rent-popup__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }
}


/* V1.7.37 — popup Rent a Car con logo y diseño refinado */
.rent-popup__card {
  width: min(92vw, 560px);
  padding: 1.2rem 1.2rem 1.3rem;
  border: 1px solid rgba(255,255,255,.32);
  background:
    radial-gradient(circle at 0% 100%, rgba(224,100,59,.12), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(247,205,71,.18), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.98) 0%, rgba(251,246,236,.98) 100%);
}
.rent-popup__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .7rem;
  padding: .55rem .65rem;
  border-radius: 20px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(23,27,69,.06);
}
.rent-popup__brand-logo {
  display: block;
  width: auto;
  max-width: 180px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}
.rent-popup__brand-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: .52rem .84rem;
  border-radius: 999px;
  background: rgba(224,100,59,.10);
  color: var(--terracota);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.rent-popup__hero {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: center;
  padding: .75rem .4rem .35rem;
  text-align: left;
}
.rent-popup__icon {
  width: 88px;
  height: 88px;
  margin: 0;
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(224,100,59,.22);
}
.rent-popup__icon svg { width: 42px; height: 42px; }
.rent-popup__eyebrow {
  margin-bottom: .35rem;
  color: var(--indigo-ink);
  opacity: .75;
  letter-spacing: .08em;
}
.rent-popup__copy h2 {
  font-size: clamp(2.3rem, 7vw, 4rem);
  margin-bottom: .15rem;
}
.rent-popup__copy p {
  margin: .7rem 0 0;
  max-width: 34ch;
}
.rent-popup__pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .55rem;
  margin: .5rem 0 1.15rem;
}
.rent-popup__pills span {
  display: inline-flex;
  align-items: center;
  padding: .5rem .8rem;
  border-radius: 999px;
  background: rgba(23,27,69,.05);
  color: var(--indigo-ink);
  font-size: .82rem;
  font-weight: 600;
}
.rent-popup__cta {
  border-radius: 999px;
  min-height: 62px;
  box-shadow: 0 18px 30px rgba(224,100,59,.22);
}
.rent-popup__later {
  margin-top: .8rem;
  font-size: .9rem;
}
@media (max-width: 560px) {
  .rent-popup__card {
    width: 100%;
    padding: 1rem 1rem 1.1rem;
  }
  .rent-popup__brand-row {
    gap: .7rem;
    padding: .45rem .55rem;
    border-radius: 16px;
  }
  .rent-popup__brand-logo {
    max-width: 132px;
    height: 36px;
  }
  .rent-popup__brand-badge {
    padding: .4rem .65rem;
    font-size: .64rem;
  }
  .rent-popup__hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: .6rem .15rem .2rem;
    gap: .85rem;
  }
  .rent-popup__icon {
    width: 74px;
    height: 74px;
    border-radius: 24px;
  }
  .rent-popup__icon svg { width: 36px; height: 36px; }
  .rent-popup__copy p {
    max-width: 27ch;
    margin-left: auto;
    margin-right: auto;
  }
  .rent-popup__pills {
    margin-bottom: 1rem;
    gap: .45rem;
  }
  .rent-popup__pills span {
    font-size: .76rem;
    padding: .45rem .7rem;
  }
  .rent-popup__cta {
    min-height: 58px;
  }
}


/* V1.7.38 — métricas de Nosotros en naranja, como las tarjetas de la home */
.stat-row {
  gap: 1px;
  background: rgba(255,255,255,.45);
  border-block: 0;
}
.stat {
  position: relative;
  background: var(--terracota) !important;
  color: #fff !important;
  padding: 2.15rem 1.5rem 2rem;
}
.stat::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: var(--oro);
}
.stat .n {
  color: #fff !important;
}
.stat .l {
  color: rgba(255,255,255,.92) !important;
}
@media (max-width: 679px) {
  .stat {
    padding: 1.7rem 1.2rem 1.55rem;
  }
}


/* V1.7.39 — páginas nuevas visibles y destacadas en menú móvil */
@media (max-width: 880px) {
  .nav .nav-rentacar {
    color: #fff !important;
  }
  .nav .nav-rentacar::after {
    content: "Nuevo" !important;
    width: auto !important;
    min-width: 52px !important;
    height: 28px !important;
    padding: 0 .62rem !important;
    border-radius: 999px !important;
    background: rgba(224,100,59,.18) !important;
    color: #F7CD47 !important;
    font-size: .68rem !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
  }
}


/* V1.7.40 — popup Rent a Car robusto en móvil */
@media (max-width: 700px) {
  .rent-popup.rent-popup--mobile {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    padding: max(.7rem, env(safe-area-inset-top)) .7rem max(.7rem, env(safe-area-inset-bottom)) !important;
  }
  .rent-popup.rent-popup--mobile .rent-popup__card {
    width: min(100%, 430px) !important;
    max-height: calc(100dvh - 1.4rem) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    margin: auto !important;
    padding: .9rem .9rem 1rem !important;
    border-radius: 24px !important;
  }
  .rent-popup.rent-popup--mobile .rent-popup__brand-logo {
    max-width: 122px !important;
    height: 34px !important;
  }
  .rent-popup.rent-popup--mobile .rent-popup__brand-badge {
    font-size: .6rem !important;
    padding: .38rem .58rem !important;
  }
  .rent-popup.rent-popup--mobile .rent-popup__close {
    width: 34px !important;
    height: 34px !important;
    top: .8rem !important;
    right: .8rem !important;
  }
  .rent-popup.rent-popup--mobile .rent-popup__hero {
    gap: .6rem !important;
    padding-top: .45rem !important;
  }
  .rent-popup.rent-popup--mobile .rent-popup__icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 20px !important;
  }
  .rent-popup.rent-popup--mobile .rent-popup__copy h2 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }
  .rent-popup.rent-popup--mobile .rent-popup__copy p {
    font-size: .92rem !important;
    line-height: 1.45 !important;
    margin-top: .5rem !important;
  }
  .rent-popup.rent-popup--mobile .rent-popup__pills {
    margin: .45rem 0 .8rem !important;
  }
  .rent-popup.rent-popup--mobile .rent-popup__pills span {
    font-size: .7rem !important;
    padding: .38rem .58rem !important;
  }
  .rent-popup.rent-popup--mobile .rent-popup__cta {
    min-height: 54px !important;
  }
  .rent-popup.rent-popup--mobile .rent-popup__later {
    margin-top: .65rem !important;
  }
}


/* =====================================================================
   1.7.42 — SEO local + menú ampliado
   ===================================================================== */
.pickup-note {
  margin: .25rem 0 1rem;
  padding: .7rem .9rem;
  border-left: 3px solid var(--terracota);
  background: rgba(224,100,59,.07);
  color: var(--indigo-ink);
  font-size: .92rem;
}
.pickup-chip { border-color: rgba(224,100,59,.32); }

/* Con ocho enlaces el menú de escritorio necesita pasar antes a formato panel. */
@media (min-width: 881px) and (max-width: 1240px) {
  .menu-btn { display: flex; }
  .header-cta .btn:not(.menu-btn) { display: none; }
  .nav {
    position: fixed;
    inset: 12px;
    width: auto;
    height: calc(100dvh - 24px);
    overflow-y: auto;
    z-index: 120;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .25rem;
    padding: 8.5rem 1.5rem 2rem;
    border-radius: 28px;
    background:
      radial-gradient(circle at 92% 13%, rgba(247,205,71,.16) 0 9%, transparent 23%),
      radial-gradient(circle at 8% 90%, rgba(53,116,183,.28) 0 12%, transparent 31%),
      linear-gradient(145deg, #171B45 0%, #20286d 56%, #253580 100%);
    box-shadow: 0 28px 80px -28px rgba(7,11,40,.85);
    transform: translateX(calc(100% + 24px)) scale(.98);
    opacity: .3;
    transition: transform .48s var(--ease), opacity .32s ease;
  }
  .nav a {
    color: #fff;
    width: 100%;
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 520;
    padding: .58rem .35rem;
  }
  .nav a::after { display:none; }
  .nav > .btn--book { display:inline-flex; width:auto; margin-top:.7rem; font-family:var(--sans); font-size:1rem; }
  .nav-open .nav { transform: translateX(0) scale(1); opacity:1; }
  .nav-open .menu-btn { position:fixed; right:1.4rem; top:1.35rem; z-index:130; }
  .nav-open .menu-btn span { background:transparent; }
  .nav-open .menu-btn span::before { transform:rotate(45deg); background:#fff; }
  .nav-open .menu-btn span::after { transform:rotate(-45deg); background:#fff; }
}


/* =====================================================================
   1.7.43 — cabecera de escritorio con menú amplio y sin saltos de línea
   ===================================================================== */
@media (min-width: 1241px) {
  .site-header .wrap {
    max-width: 1580px;
    padding-inline: clamp(1.25rem, 2vw, 2rem);
  }
  .site-header .header-inner {
    gap: clamp(.9rem, 1.2vw, 1.25rem);
  }
  .site-header .brand,
  .site-header .header-cta {
    flex: 0 0 auto;
  }
  .site-header .nav {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    gap: clamp(.72rem, 1.15vw, 1.2rem);
  }
  .site-header .nav > a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: clamp(.84rem, .76rem + .14vw, .95rem);
  }
  .site-header .header-cta .btn--book {
    padding-inline: 1.35em;
    white-space: nowrap;
  }
}
