/* ============================================================
   VIAJES NAVARRO — Luxury Travel Agency
   style.css
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dark:   #a07830;
  --dark:        #0d0d0d;
  --dark-2:      #141414;
  --dark-3:      #1c1c1c;
  --mid:         #2a2a2a;
  --light:       #f5f2ec;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #6b6b6b;
  --border:      rgba(201,168,76,.18);

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Montserrat', system-ui, sans-serif;

  --transition: .4s cubic-bezier(.25,.46,.45,.94);
  --radius:     2px;
  --section-v:  7rem;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full { width: 100%; justify-content: center; }

/* ---- SECTION TYPOGRAPHY ---- */
.section__eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section__eyebrow--light { color: var(--gold-light); }

.section__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}
.section__title em { font-style: italic; color: var(--gold-dark); }
.section__title--light { color: var(--white); }
.section__title--light em { color: var(--gold-light); }

.section__header { margin-bottom: 4rem; }
.section__header--center { text-align: center; }

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(13,13,13,.97);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 2px 40px rgba(0,0,0,.4);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--white);
}

.nav__logo-mark {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.nav__logo-mark svg {
  width: 100%;
  height: 100%;
}

.nav__logo-text {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: .08em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav__links a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold); }

.nav__cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: .55rem 1.4rem;
  border: 1px solid var(--gold);
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav__cta:hover {
  background: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slides { position: absolute; inset: 0; }

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
  animation: kenburns 12s ease-in-out infinite alternate;
}
.hero__slide.active { opacity: 1; }

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero__slide--1 { background-image: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1800&q=85'); }
.hero__slide--2 { background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1800&q=85'); }
.hero__slide--3 { background-image: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1800&q=85'); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.55) 60%,
    rgba(0,0,0,.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 860px;
  padding: 0 2rem;
}

.hero__eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,.85);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

.hero__dots {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero__dot.active {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.3);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .15s; }
.reveal:nth-child(3) { transition-delay: .3s; }
.reveal:nth-child(4) { transition-delay: .45s; }
.reveal:nth-child(5) { transition-delay: .6s; }

/* ================================================================
   BAND (statistics)
================================================================ */
.band {
  background: var(--dark);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.band__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.band__item {
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.band__num {
  font-family: var(--ff-serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.band__label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.band__sep {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ================================================================
   ABOUT
================================================================ */
.about {
  padding: var(--section-v) 0;
  background: var(--light);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__images {
  position: relative;
}

.about__img { overflow: hidden; }
.about__img img { transition: transform .8s ease; }
.about__img:hover img { transform: scale(1.04); }

.about__img--1 {
  aspect-ratio: 4/5;
  border: 8px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.about__img--2 {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 55%;
  aspect-ratio: 1;
  border: 8px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.about__badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(201,168,76,.3);
  z-index: 3;
}
.about__badge-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
}
.about__badge-text {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .4rem;
  max-width: 9rem;
}

.about__text { padding-bottom: 3rem; }

.about__body {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.about__body strong { color: var(--text); font-weight: 600; }

.about__features {
  list-style: none;
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about__features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about__feature-icon {
  color: var(--gold);
  font-size: .7rem;
  margin-top: .4rem;
  flex-shrink: 0;
}
.about__features strong { display: block; font-size: .9rem; margin-bottom: .25rem; }
.about__features p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ================================================================
   SERVICES
================================================================ */
.services {
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}

.services__bg {
  position: absolute;
  inset: 0;
  background: var(--dark-2);
}

.services .container { position: relative; z-index: 1; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.service-card {
  background: var(--dark-3);
  padding: 2.8rem 2.2rem;
  position: relative;
  transition: background var(--transition);
  cursor: default;
}
.service-card:hover { background: var(--mid); }
.service-card--featured { background: var(--dark); }
.service-card--featured:hover { background: #222; }

.service-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: .3rem .8rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .8rem;
}

.service-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.service-card__link:hover { border-color: var(--gold); }

/* ================================================================
   DESTINATIONS
================================================================ */
.destinations {
  padding: var(--section-v) 0;
  background: var(--white);
}

.dest__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: .8rem;
}

.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.dest-card--large { grid-column: span 2; aspect-ratio: 5/4; }
.dest-card--right { order: 5; }

.dest-card img {
  transition: transform .8s ease;
}
.dest-card:hover img { transform: scale(1.06); }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
  transition: var(--transition);
}

.dest-card__content { color: var(--white); }

.dest-card__region {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .5rem;
}
.dest-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: .5rem;
}
.dest-card p {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
  line-height: 1.6;
  max-width: 280px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.dest-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

.dest-card__btn {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  transition-delay: .05s;
}
.dest-card:hover .dest-card__btn {
  opacity: 1;
  transform: translateY(0);
}

.dest__cta {
  margin-top: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.dest__cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-family: var(--ff-serif);
  font-style: italic;
}

/* ================================================================
   REGIONES (selector por zona geográfica)
================================================================ */
.regions {
  margin-top: 6rem;
  padding-top: 5rem;
  border-top: 1px solid var(--border);
}

.regions__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.regions__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin: .6rem 0 1rem;
  letter-spacing: -0.01em;
}
.regions__title em {
  font-style: italic;
  color: var(--gold-dark);
}

.regions__intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.regions__tabs {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.regions__tab {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  padding: .65rem 1.4rem;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.regions__tab:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.regions__tab.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--gold);
}

.regions__panels { position: relative; }

.regions__panel {
  display: none;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: center;
}
.regions__panel.active {
  display: grid;
  animation: regionFade .5s ease both;
}

@keyframes regionFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.regions__img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.25);
}
.regions__img img {
  transition: transform .8s ease;
}
.regions__panel:hover .regions__img img {
  transform: scale(1.04);
}

.regions__content h4 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 400;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.regions__content > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 520px;
}

.regions__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.regions__pill {
  font-family: var(--ff-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .5rem 1.05rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
}
.regions__pill:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -6px rgba(201,168,76,.55);
}

@media (max-width: 768px) {
  .regions { margin-top: 4rem; padding-top: 3.5rem; }
  .regions__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: .25rem 0 2rem;
    margin: 0 -2rem 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .regions__tabs::-webkit-scrollbar { display: none; }
  .regions__panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .regions__img { aspect-ratio: 16 / 11; }
}

/* ================================================================
   CORPORATE
================================================================ */
.corporate {
  padding: var(--section-v) 0;
  background: var(--light);
}

.corporate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.corporate__body {
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.corporate__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin: 2.5rem 0 3rem;
}

.corp-feat {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
}
.corp-feat__icon {
  color: var(--gold);
  font-size: .8rem;
  margin-top: .3rem;
  flex-shrink: 0;
}
.corp-feat h4 {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .3rem;
}
.corp-feat p {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
}

.corporate__visual { position: relative; }

.corporate__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.15);
}
.corporate__img-wrap img { transition: transform .8s ease; }
.corporate__img-wrap:hover img { transform: scale(1.04); }

.corporate__card {
  position: absolute;
  bottom: -2rem;
  left: -3rem;
  background: var(--dark);
  color: var(--white);
  padding: 2rem;
  max-width: 280px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.corp-card__icon {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.corp-card__icon svg { width: 100%; height: 100%; }
.corp-card__text {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

/* ================================================================
   STRIP
================================================================ */
.strip {
  background: var(--gold);
  padding: 2rem 0;
  overflow: hidden;
}

.strip__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--dark);
}
.strip__item svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  stroke: var(--dark);
}
.strip__item span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials {
  padding: var(--section-v) 0;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--light);
  padding: 2.5rem;
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.testi-card:hover,
.testi-card--featured {
  border-top-color: var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
}
.testi-card--featured { background: var(--dark); }

.testi-card__stars {
  color: var(--gold);
  letter-spacing: .1em;
  font-size: .9rem;
  margin-bottom: 1.2rem;
}

.testi-card blockquote {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.8rem;
}
.testi-card--featured blockquote { color: rgba(255,255,255,.85); }

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.testi-card__author strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
}
.testi-card--featured .testi-card__author strong { color: var(--white); }
.testi-card__author span {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .15rem;
}
.testi-card--featured .testi-card__author span { color: rgba(255,255,255,.45); }

/* ================================================================
   CONTACT
================================================================ */
.contact {
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}
.contact .container { position: relative; z-index: 1; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact__intro {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin: 1.5rem 0 3rem;
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__method {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  color: var(--white);
  transition: var(--transition);
}
.contact__method:hover .contact__method-value { color: var(--gold); }

.contact__method-icon {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact__method-icon svg { width: 1rem; height: 1rem; }

.contact__method-label {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}
.contact__method-value {
  font-size: .95rem;
  font-weight: 300;
  transition: color var(--transition);
}

/* FORM */
.contact__form-wrap {
  background: var(--white);
  padding: 3rem;
}

.contact__form h3 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--dark);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.form__group:last-child { margin-bottom: 0; }

.form__group label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--ff-sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--light);
  border: 1px solid #e0dbd0;
  padding: .8rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
}
.form__group textarea { resize: vertical; }

.form__check {
  flex-direction: row !important;
  align-items: center;
  gap: .6rem !important;
  margin-bottom: 1.5rem !important;
}
.form__check input {
  width: auto;
  accent-color: var(--gold);
}
.form__check label {
  font-size: .8rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  cursor: pointer;
}
.form__link { color: var(--gold-dark); border-bottom: 1px solid var(--gold-dark); }

.form__success {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(201,168,76,.1);
  border: 1px solid var(--gold);
}
.form__success.show { display: flex; }
.form__success svg { width: 1.5rem; height: 1.5rem; color: var(--gold); flex-shrink: 0; }
.form__success p { font-size: .85rem; color: var(--text); margin: 0; }

/* ================================================================
   FOOTER
================================================================ */
.footer__top {
  background: var(--dark-2);
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer__brand .nav__logo-mark { color: var(--gold); border-color: var(--gold); }
.footer__brand .nav__logo-text { color: var(--white); }
.footer__logo { margin-bottom: 1.2rem; }

.footer__brand > p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 1.8rem;
}

.footer__social {
  display: flex;
  gap: .8rem;
}
.footer__social-link {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer__social-link svg { width: 1rem; height: 1rem; }
.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__col h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer__col ul a {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--gold); }

.footer__contact-list { list-style: none; }
.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .9rem;
}
.footer__contact-list svg {
  width: .9rem;
  height: .9rem;
  color: var(--gold);
  flex-shrink: 0;
}
.footer__contact-list a {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__contact-list a:hover { color: var(--gold); }

.footer__bottom {
  background: var(--dark);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .05em;
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--gold); }

/* ================================================================
   WHATSAPP WIDGET
================================================================ */
.wa-widget {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

/* Trigger button */
.wa-btn {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 36px rgba(37,211,102,.55);
}

.wa-btn__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
  position: absolute;
  transition: opacity .25s ease, transform .25s ease;
}
.wa-btn__icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(.7);
}
.wa-widget.open .wa-btn__icon--wa {
  opacity: 0;
  transform: rotate(90deg) scale(.7);
}
.wa-widget.open .wa-btn__icon--close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.wa-btn__badge {
  position: absolute;
  top: -.2rem;
  right: -.2rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: .6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  transition: opacity .25s ease, transform .25s ease;
}
.wa-widget.open .wa-btn__badge {
  opacity: 0;
  transform: scale(0);
}

/* Popup */
.wa-popup {
  width: 320px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(16px) scale(.97);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  transform-origin: bottom right;
}
.wa-widget.open .wa-popup {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.wa-popup__header {
  background: #075e54;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}

.wa-popup__avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.wa-popup__avatar svg { width: 1.6rem; height: 1.6rem; }

.wa-popup__info { flex: 1; }
.wa-popup__info strong {
  display: block;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .15rem;
}
.wa-popup__info span {
  font-size: .72rem;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.wa-popup__dot {
  display: inline-block;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: #25d366;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.wa-popup__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  transition: color .2s;
}
.wa-popup__close:hover { color: #fff; }
.wa-popup__close svg { width: 1rem; height: 1rem; }

.wa-popup__body {
  background: #ece5dd;
  padding: 1.4rem 1.2rem 1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5b9ae' fill-opacity='0.18'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wa-popup__bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: .9rem 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  position: relative;
  max-width: 90%;
}
.wa-popup__bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
}
.wa-popup__bubble p {
  font-size: .85rem;
  color: #303030;
  line-height: 1.5;
  margin-bottom: .4rem;
}
.wa-popup__bubble p:last-of-type { margin-bottom: .5rem; }

.wa-popup__time {
  display: block;
  font-size: .68rem;
  color: #999;
  text-align: right;
}

.wa-popup__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: #25d366;
  color: #fff;
  padding: 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s ease;
}
.wa-popup__cta:hover { background: #1da851; }
.wa-popup__cta svg { width: 1.1rem; height: 1.1rem; }

/* ================================================================
   FLOATING CTA
================================================================ */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(201,168,76,.4);
  transition: var(--transition);
}
.floating-cta svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: var(--dark);
}
.floating-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,168,76,.5);
}

/* ================================================================
   RESPONSIVE
================================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .about__grid,
  .corporate__grid { grid-template-columns: 1fr; gap: 4rem; }

  .about__images { max-width: 500px; margin: 0 auto; }
  .about__img--2 { right: -1rem; bottom: -1.5rem; }

  .corporate__visual { order: -1; max-width: 500px; margin: 0 auto; }
  .corporate__card { left: -1rem; }

  .dest__grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card--large { grid-column: span 2; aspect-ratio: 16/7; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid .testi-card:last-child { display: none; }

  .contact__grid { grid-template-columns: 1fr; gap: 4rem; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-v: 4.5rem; }

  .nav__links {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13,13,13,.98);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform .4s ease;
    z-index: 999;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: .9rem; }
  .nav__cta { padding: .8rem 2rem; }

  .nav__burger { display: flex; z-index: 1000; }
  .nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero__title { font-size: 2.5rem; }
  .hero__actions { flex-direction: column; align-items: center; }

  .band__sep { display: none; }
  .band__inner { gap: 2rem; }

  .services__grid { grid-template-columns: 1fr; }
  .dest__grid { grid-template-columns: 1fr; }
  .dest-card--large { grid-column: span 1; aspect-ratio: 4/3; }
  .dest-card { aspect-ratio: 4/3; }
  .dest-card p { opacity: 1; transform: none; }
  .dest-card__btn { opacity: 1; transform: none; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid .testi-card:last-child { display: flex; }

  .contact__form-wrap { padding: 2rem 1.5rem; }
  .form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__col:nth-child(2), .footer__col:nth-child(3) { display: none; }

  .hero__dots { display: none; }

  .strip__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .strip__item span { white-space: normal; }

  .about__img--2 { display: none; }
  .about__badge { left: 1rem; }

  .corporate__features { grid-template-columns: 1fr; }
  .corporate__card { position: static; margin-top: 1.5rem; max-width: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .btn { padding: .8rem 1.6rem; font-size: .7rem; }
}

/* ================================================================
   PÁGINAS DE DESTINO Y VIAJE (destino.html / viaje.html)
================================================================ */

/* Nav con fondo permanente (páginas interiores) */
.nav.nav--solid {
  background: rgba(13, 13, 13, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

/* HERO de página de país */
.dpage-hero,
.trip-hero {
  position: relative;
  min-height: 58vh;
  padding: 9rem 0 4rem;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--dark);
}
.trip-hero { min-height: 68vh; }

.dpage-hero__bg,
.trip-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.dpage-hero__bg img,
.trip-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
}
.dpage-hero__bg--empty {
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
}

.dpage-hero__overlay,
.trip-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.8) 85%);
}

.dpage-hero .container,
.trip-hero .container {
  position: relative; z-index: 2;
}

.dpage-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.4rem;
}
.dpage-hero__crumbs a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.dpage-hero__crumbs a:hover { color: var(--gold); }
.dpage-hero__crumb-current { color: var(--gold); }

.dpage-hero__title,
.trip-hero__title {
  font-family: var(--ff-serif);
  font-weight: 300;
  line-height: 1.05;
  margin: .5rem 0 1rem;
  letter-spacing: -.01em;
}
.dpage-hero__title { font-size: clamp(2.8rem, 6vw, 4.8rem); }
.trip-hero__title  { font-size: clamp(2.3rem, 5vw, 3.8rem); max-width: 900px; }

.dpage-hero__lead,
.trip-hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 640px;
  line-height: 1.6;
}

.trip-hero__meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}
.trip-hero__chip {
  padding: .45rem 1.1rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.9);
}
.trip-hero__price {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: -.01em;
}

/* Lista de programas */
.dpage-list {
  padding: var(--section-v) 0;
  background: var(--white);
}
.dpage-list .section__header { margin-bottom: 3rem; }
.dpage-list .section__header p {
  color: var(--text-muted);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
}

.dpage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* Tarjeta de programa */
.program-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px -10px rgba(0,0,0,.14);
  transition: transform var(--transition), box-shadow var(--transition);
  color: inherit;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -14px rgba(0,0,0,.28);
}
.program-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light);
}
.program-card__img img {
  transition: transform .7s ease;
}
.program-card:hover .program-card__img img {
  transform: scale(1.06);
}
.program-card__body {
  padding: 1.5rem 1.6rem 1.7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.program-card__title {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 .6rem;
  color: var(--text);
}
.program-card__intro {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.55;
  margin: 0 0 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.program-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.program-card__chip {
  font-family: var(--ff-sans);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.program-card__price {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-dark);
  font-weight: 500;
  white-space: nowrap;
}

.dpage-empty {
  max-width: 620px;
  margin: 2rem auto 0;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--light);
  border-radius: var(--radius);
}
.dpage-empty p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
}

/* CTA final de destino */
.dpage-cta {
  background: var(--dark);
  color: #fff;
  padding: var(--section-v) 0;
  text-align: center;
}
.dpage-cta__inner {
  max-width: 680px;
  margin: 0 auto;
}
.dpage-cta h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  margin: 1rem 0 1.2rem;
  line-height: 1.1;
}
.dpage-cta h2 em { font-style: italic; color: var(--gold-light); }
.dpage-cta p {
  color: rgba(255,255,255,.72);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.dpage-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.dpage-cta .section__eyebrow--light,
.dpage-cta .section__eyebrow { color: var(--gold-light); }

/* Trip body */
.trip-body { padding: var(--section-v) 0; background: #fff; }

.trip-body__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}

.trip-body__main .section__eyebrow { color: var(--gold); }
.trip-body__main .section__title { margin-bottom: 2rem; }

.trip-days {
  list-style: none;
  counter-reset: day;
  padding: 0;
  margin: 0;
}
.trip-days li {
  counter-increment: day;
  position: relative;
  padding: 1.2rem 0 1.2rem 3.2rem;
  border-bottom: 1px solid rgba(0,0,0,.07);
  font-family: var(--ff-serif);
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.45;
}
.trip-days li:last-child { border-bottom: none; }
.trip-days li::before {
  content: counter(day, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.35rem;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
}

.trip-empty {
  padding: 2rem;
  background: var(--light);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: var(--ff-serif);
  font-style: italic;
}

/* Aside (tarjeta sticky) */
.trip-body__aside { position: sticky; top: 100px; }
.trip-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 12px 40px -18px rgba(0,0,0,.18);
}
.trip-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 .6rem;
  color: var(--text);
}
.trip-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 1.5rem;
}
.trip-card .btn { margin-bottom: .65rem; }
.btn--full { width: 100%; justify-content: center; }

.trip-card__extra {
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 1rem;
  margin-top: 1rem;
  font-family: var(--ff-sans);
  font-size: .85rem;
  color: var(--text-muted);
}
.trip-card__extra p { margin: .35rem 0; }
.trip-card__extra a { color: var(--gold-dark); }
.trip-card__extra a:hover { color: var(--gold); }

/* Related */
.trip-related { padding: var(--section-v) 0; background: var(--light); }

/* Responsive */
@media (max-width: 900px) {
  .trip-body__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trip-body__aside { position: static; }
  .dpage-hero, .trip-hero { min-height: 54vh; padding: 7rem 0 3rem; }
}

@media (max-width: 600px) {
  .dpage-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .dpage-cta__actions { flex-direction: column; }
  .dpage-cta__actions .btn { width: 100%; justify-content: center; }
  .trip-hero__meta { gap: .8rem; }
}

/* ================================================================
   PÁGINAS LEGALES (aviso-legal / privacidad / cookies)
================================================================ */
.legal-hero {
  background: var(--dark);
  color: #fff;
  padding: 9rem 0 4rem;
}
.legal-hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 300;
  margin: .5rem 0 .5rem;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.legal-hero__updated {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-content {
  padding: 4.5rem 0 6rem;
  background: #fff;
}
.legal-container {
  max-width: 820px;
}
.legal-content p,
.legal-content li {
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: .98rem;
  line-height: 1.75;
}
.legal-content h2 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin: 2.5rem 0 .9rem;
  letter-spacing: -.005em;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin: .8rem 0; }
.legal-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--gold); }

.legal-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin: .8rem 0;
}
.legal-list li { margin: .35rem 0; }

.legal-note {
  margin-top: 3rem;
  padding: 1.2rem 1.4rem;
  background: var(--light);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  font-size: .95rem;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 2px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.legal-table th,
.legal-table td {
  padding: .8rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.legal-table th {
  background: var(--light);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
}
.legal-table tr:last-child td { border-bottom: none; }

@media (max-width: 640px) {
  .legal-hero { padding: 7rem 0 3rem; }
  .legal-content { padding: 3rem 0 4rem; }
  .legal-content h2 { font-size: 1.3rem; }
}
