/* Vive Destinos — paleta extraída del logotipo
   navy #0A2240 · azul #1FA5DE · celeste #8FD8F2 · noche #061627 · crema #F7F4EF */

:root {
  --navy: #0A2240;
  --night: #061627;
  --blue: #1FA5DE;
  --sky: #8FD8F2;
  --cream: #F7F4EF;
  --grey: #5C6572;
  --grey-soft: #8A9199;
  --line: rgba(10, 34, 64, 0.09);
  --line-light: rgba(255, 255, 255, 0.14);
  --pad: clamp(24px, 4vw, 56px);
  --wrap: 1450px;
  --gutter: max(var(--pad), calc((100vw - var(--wrap)) / 2));
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;
  --display: 'Jost', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; transition: color .25s ease, background .25s ease, border-color .25s ease; }
a:hover { color: var(--blue); }
::selection { background: var(--sky); color: var(--night); }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

@keyframes vdRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ---------- Tipografía compartida ---------- */
.eyebrow { font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--blue); }
.eyebrow--light { color: var(--sky); }
.eyebrow--sky { color: var(--sky); }
.h2 { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(34px, 3.6vw, 56px); line-height: 1.08; letter-spacing: -.03em; }
.h2--xl { font-size: clamp(42px, 4.6vw, 80px); line-height: .98; }
.h2 em { font-style: italic; color: var(--blue); }
.body { margin: 0; font-size: 17px; line-height: 1.75; color: var(--grey); text-wrap: pretty; }
.body--light { color: rgba(255, 255, 255, .66); font-size: 19px; line-height: 1.7; max-width: 56ch; }
.muted { font-size: 14px; color: rgba(255, 255, 255, .5); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 999px; cursor: pointer; font-family: var(--sans); font-weight: 400;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn--solid { padding: 17px 36px; background: #fff; color: var(--navy); border: none; }
.btn--solid:hover { background: var(--blue); color: #fff; }
.btn--ghost { padding: 16px 34px; background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: #fff; color: var(--night); }
.btn--underline { color: #fff; border-bottom: 1px solid rgba(255, 255, 255, .4); border-radius: 0; padding: 0 0 5px; }
.btn--underline:hover { border-color: var(--sky); color: #fff; }
.btn--navy { padding: 17px 32px; background: var(--navy); color: #fff; border: none; gap: 10px; }
.btn--navy:hover { background: var(--blue); color: #fff; }
.btn--navy-ghost { padding: 13px 26px; background: transparent; color: var(--navy); border: 1px solid rgba(10, 34, 64, .28); font-size: 12px; }
.btn--navy-ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn__icon { width: 18px; height: 18px; flex: none; }

.round-btn {
  width: 52px; height: 52px; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(10, 34, 64, .22); background: #fff; color: var(--navy);
  font-size: 16px; font-family: var(--sans); transition: all .25s ease;
}
.round-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; cursor: pointer; white-space: nowrap;
  font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  background: transparent; color: var(--navy); border: 1px solid rgba(10, 34, 64, .22);
  transition: all .25s ease;
}
.chip em {
  font-style: normal; font-size: 11px; letter-spacing: 0; font-weight: 500;
  color: var(--grey); min-width: 1em;
}
.chip:hover { border-color: var(--navy); }
.chip.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.chip.is-active em { color: var(--sky); }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Placeholder de imagen ---------- */
.ph {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, #0e2a49 0 12px, #12314f 12px 24px);
  display: grid; place-items: center; padding: 24px; text-align: center;
}
.ph::after {
  content: attr(data-ph);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255, 255, 255, .45); line-height: 1.7;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px var(--gutter);
  background: rgba(6, 22, 39, .28); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-light);
}
.nav__brand { display: flex; align-items: center; flex: none; }
.nav__brand:hover { color: inherit; opacity: .88; }
.nav__logo { width: auto; height: 65px; max-width: min(340px, 52vw); object-fit: contain; object-position: left center; }
.nav__name { font-weight: 500; letter-spacing: .16em; font-size: 17px; text-transform: uppercase; color: #fff; }
.nav__tagline { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.nav__links {
  display: flex; align-items: stretch; align-self: stretch;
  gap: clamp(12px, 1.35vw, 26px);
  font-size: 14px; letter-spacing: .02em; font-weight: 400; white-space: nowrap;
}
.nav--page { background: var(--night); }
.nav__links > a:not(.nav__cta) { display: flex; align-items: center; }
.nav__links a { color: rgba(255, 255, 255, .86); }
.nav__links a:hover, .nav__links a.is-active { color: var(--sky); }
.nav__cta.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }
.nav__cta {
  padding: 10px 20px; background: var(--navy); border: 1px solid var(--navy);
  border-radius: 8px; color: #fff; flex: none; align-self: center; letter-spacing: .04em;
}
.nav__cta:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.nav__toggle {
  display: none; width: 44px; height: 44px; padding: 0; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .4); border-radius: 999px;
  background: transparent; position: relative; flex: none;
}
.nav__toggle span {
  position: absolute; left: 13px; right: 13px; top: 50%;
  height: 2px; background: #fff; margin-top: -1px;
  transition: background .25s ease;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 2px; background: #fff;
  transform-origin: center;
  transition: transform .25s ease, top .25s ease;
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
.nav-open .nav__toggle span { background: transparent; }
.nav-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }
body.nav-open { overflow: hidden; }
.nav__item { position: relative; display: flex; align-items: center; }
.nav__parent { display: inline-flex; align-items: center; align-self: stretch; gap: 6px; }
.nav__parent::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .7; }
.nav__sub {
  display: none; position: absolute; top: 100%; left: 0; z-index: 60;
  min-width: 240px; padding: 10px 0;
  background: var(--night); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px; box-shadow: 0 16px 40px rgba(6, 22, 39, .28);
}
.nav__sub::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 20px;
}
.nav__item--wide .nav__sub {
  min-width: 420px; display: none; grid-template-columns: 1fr 1fr;
}
.nav__item:hover .nav__sub,
.nav__item:focus-within .nav__sub { display: flex; flex-direction: column; }
.nav__item--wide:hover .nav__sub,
.nav__item--wide:focus-within .nav__sub { display: grid; }
.nav__sub a { display: block; padding: 9px 16px; color: rgba(255, 255, 255, .86); white-space: normal; line-height: 1.35; }
.nav__sub a:hover, .nav__sub a.is-active { color: var(--sky); background: rgba(255, 255, 255, .04); }
section { scroll-margin-top: 96px; }

/* ---------- Página interna ---------- */
.page-hero {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
  padding: 135px var(--gutter) 75px;
  background: radial-gradient(ellipse 90% 70% at 75% 25%, #0E3056 0%, #061627 85%);
  color: #fff;
  border-bottom: 1px solid var(--line-light);
}
.page-hero__copy { display: flex; flex-direction: column; justify-content: center; }
.page-hero__title {
  margin: 16px 0 0; font-family: var(--display); font-weight: 600;
  font-size: clamp(36px, 4.2vw, 62px); line-height: 1.08; letter-spacing: -.03em;
  max-width: 18ch;
}
.page-hero__lead { margin: 22px 0 0; max-width: 46ch; font-size: 19px; line-height: 1.7; color: rgba(255, 255, 255, .8); }
.page-hero__media {
  position: relative; margin: 0; overflow: hidden;
  width: 100%; max-height: 400px; aspect-ratio: 16 / 10;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.page-hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  transform: scale(1.04); transition: transform 7s ease;
}
.page-hero__media.is-in img { transform: scale(1.12); }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 34, 64, .12) 0%, rgba(10, 34, 64, .35) 48%, rgba(10, 34, 64, .85) 100%);
}
.page-hero__caption {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  margin: 0; color: #fff; font-size: 13px; font-weight: 400; line-height: 1.35;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(6, 22, 39, .75); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
  display: inline-flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.page-hero__caption .price__now { color: #fff; }
.page-hero__caption .price--sale .price__now { color: var(--sky); }
.media-slider { position: absolute; inset: 0; }
.media-slider__track { position: absolute; inset: 0; }
.media-slider__slide {
  position: absolute; inset: 0; z-index: 0;
  padding: 0; border: 0; background: none; cursor: zoom-in;
  opacity: 0; transition: opacity .85s ease;
}
.media-slider__slide.is-on { opacity: 1; z-index: 1; }
.media-slider__slide img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.media-slider__dots {
  position: absolute; left: 50%; bottom: 14px; z-index: 3;
  display: flex; align-items: center; gap: 7px;
  transform: translateX(-50%);
}
.media-slider__dot {
  width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(255, 255, 255, .42); cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.media-slider__dot.is-on { width: 18px; background: #fff; }
.page-hero__media .media-slider__dots {
  left: auto; right: 16px; bottom: 18px; transform: none;
}
.tile .media-slider__dots {
  left: 16px; top: 16px; bottom: auto; transform: none;
}
.tile__actions { pointer-events: auto; position: relative; z-index: 3; }
.page-hero__caption .price__was { color: rgba(255, 255, 255, .55); }
.page-block { background: var(--cream); }
.booker { padding: 48px var(--gutter) 96px; background: var(--cream); border-top: 1px solid var(--line); }
.booker__intro { max-width: 42em; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.booker__widget { min-height: 420px; background: #fff; border-radius: 16px; padding: 8px; border: 1px solid rgba(10, 34, 64, .08); }
.booker__widget iframe { width: 100%; min-height: 520px; border: 0; }
.band { padding: 96px var(--gutter); background: #fff; }
.band--cream { background: var(--cream); border-top: 1px solid var(--line); }
.band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.band__copy { display: flex; flex-direction: column; gap: 20px; }
.band__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.band--live {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.band--live .nums { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.band--live .band__copy,
.band--live .list,
.band--live .faq { margin-top: 24px; }
.shot {
  position: relative; margin: 0; overflow: hidden; width: 100%;
  aspect-ratio: 16 / 10; max-height: 440px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(10, 34, 64, .08);
}
.shot img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  transform: scale(1.04); transition: transform 7s ease;
}
.shot.is-in img { transform: scale(1.12); }
.shot::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 34, 64, .12) 0%, rgba(10, 34, 64, .36) 50%, rgba(10, 34, 64, .82) 100%);
}
.shot__cap {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  margin: 0; color: #fff; font-size: 13px; line-height: 1.35;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(6, 22, 39, .75); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
}
.shot--wide {
  margin-top: 52px;
  aspect-ratio: 21 / 9;
  max-height: 420px;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(10, 34, 64, .1);
}
.js-motion .js-reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; transition-delay: var(--d, 0ms); }
.js-motion .js-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal { opacity: 1; transform: none; }
  .shot img, .shot.is-in img,
  .page-hero__media img, .page-hero__media.is-in img,
  .metodo__photo img, .metodo__photo.is-in img,
  .service-card, .service-card__media img { transform: none; transition: none; }
}
.feat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.feat-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.team-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(6, 22, 39, .06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(6, 22, 39, .1);
}
.team-card__photo {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 80% 0%, rgba(31, 165, 222, .28), transparent 58%),
    var(--navy);
  display: grid; place-items: center;
}
.team-card__photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__photo span {
  font-family: var(--display); font-weight: 600; font-size: 42px; color: var(--sky);
}
.team-card__body {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px 22px 26px;
}
.team-card__name {
  margin: 0; font-family: var(--display); font-weight: 600;
  font-size: 28px; line-height: 1.12; letter-spacing: -.02em; color: var(--navy);
}
.team-card__social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.team-card__social a {
  width: 38px; height: 38px; border-radius: 999px;
  display: grid; place-items: center;
  color: var(--navy); border: 1px solid rgba(10, 34, 64, .16);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.team-card__social a:hover { color: #fff; background: var(--navy); border-color: var(--navy); }
.team-card__social svg { width: 16px; height: 16px; fill: currentColor; }
.team-card__wa { align-self: flex-start; margin-top: 8px; padding: 12px 22px; }
.feat {
  background: #fff; padding: 34px 30px; border-radius: 16px;
  border: 1px solid rgba(10, 34, 64, .08);
  box-shadow: 0 8px 24px rgba(10, 34, 64, .04);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feat:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(10, 34, 64, .09);
  border-color: rgba(31, 165, 222, .3);
}
.band--cream .feat { background: #fff; }
.band:not(.band--cream) .feat { background: #FAF9F6; }
.feat__n { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--blue); font-weight: 500; }
.feat__icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(31, 165, 222, .38);
  color: var(--blue);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.feat__icon svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 1.45;
  stroke-linecap: round; stroke-linejoin: round;
}
.feat--icon:hover .feat__icon {
  background: var(--navy); color: var(--sky); border-color: var(--navy);
}
.feat__title { margin: 0; font-family: var(--display); font-weight: 500; font-size: 24px; line-height: 1.2; color: var(--navy); }
.feat__price {
  margin: 10px 0 0; padding-top: 14px; border-top: 1px solid rgba(10, 34, 64, .08);
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); font-weight: 500;
}
.nums { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.nums strong { display: block; font-family: var(--serif); font-weight: 300; font-size: clamp(38px, 4.2vw, 60px); line-height: 1; color: var(--navy); font-variant-numeric: tabular-nums; }
.nums span { display: block; margin-top: 10px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--grey); }
.list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 16px; }
.list li { padding-left: 26px; position: relative; font-size: 17px; line-height: 1.65; color: var(--grey); }
.list li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--blue); box-shadow: 0 0 6px rgba(31, 165, 222, .5);
}
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.blog-card {
  background: #fff; padding: 36px 32px 40px; border-radius: 16px;
  border: 1px solid rgba(10, 34, 64, .08);
  box-shadow: 0 8px 24px rgba(10, 34, 64, .04);
  display: flex; flex-direction: column; gap: 14px;
  color: inherit;
  transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  background: var(--navy); border-color: var(--navy);
  box-shadow: 0 20px 45px rgba(10, 34, 64, .14);
  color: #fff;
}
.blog-card:hover .blog-card__title, .blog-card:hover .blog-card__meta, .blog-card:hover .blog-card__more { color: #fff; }
.blog-card:hover .body { color: rgba(255, 255, 255, .72); }
.blog-card__media {
  margin: -36px -32px 8px; height: 180px; overflow: hidden; border-radius: 16px 16px 0 0;
}
.blog-card__meta { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); font-weight: 500; }
.blog-card__title { margin: 0; font-family: var(--display); font-weight: 500; font-size: 25px; line-height: 1.25; color: var(--navy); }
.blog-card__more { margin-top: auto; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); font-weight: 500; }

.article { padding: 48px var(--gutter) 80px; background: #fff; }
.article__head { max-width: 42em; display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.article__back { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); font-weight: 500; }
.page-hero .article__back { color: var(--sky); display: inline-block; margin-bottom: 12px; }
.article__title { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(34px, 4vw, 62px); line-height: 1.08; letter-spacing: -.03em; color: var(--navy); }
.article__lead { margin: 0; font-size: 20px; line-height: 1.6; color: var(--grey); }
.article__media { margin: 0 calc(var(--gutter) * -1) 48px; max-height: 520px; overflow: hidden; }
.article__media img { width: 100%; height: clamp(280px, 48vh, 520px); object-fit: cover; }
.article__body { max-width: 42em; font-size: 18px; line-height: 1.8; color: var(--grey); }
.article__body p { margin: 0 0 1.15em; }
.article__body h2, .article__body h3 { margin: 1.6em 0 .5em; font-family: var(--display); font-weight: 600; color: var(--navy); line-height: 1.2; }
.article__body h2 { font-size: 30px; }
.article__body h3 { font-size: 22px; }
.article__body ul, .article__body ol { margin: 0 0 1.2em; padding-left: 1.2em; }
.article__body li { margin: 0 0 .4em; }
.article__body a { color: var(--blue); text-decoration: underline; }
.article__body blockquote {
  margin: 0 0 1.3em; padding: 8px 0 8px 22px;
  border-left: 3px solid var(--blue); color: var(--navy); font-family: var(--serif);
  font-size: 22px; font-style: italic; line-height: 1.45;
}
.article__foot { max-width: 42em; margin-top: 48px; display: flex; flex-wrap: wrap; gap: 12px; }
.faq { margin: 0; display: flex; flex-direction: column; gap: 14px; }
.faq div {
  padding: 22px 26px; border-radius: 14px;
  background: #fff; border: 1px solid rgba(10, 34, 64, .08);
  box-shadow: 0 4px 14px rgba(10, 34, 64, .03);
  transition: transform .25s ease, box-shadow .25s ease;
}
.faq div:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(10, 34, 64, .06);
}
.faq dt { font-size: 19px; font-weight: 400; margin: 0 0 8px; color: var(--navy); }
.faq dd { margin: 0; color: var(--grey); line-height: 1.65; font-size: 15px; }
/* ---------- Servicios (Service Cards) ---------- */
.drawer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.service-card {
  background: #fff; padding: 0; border-radius: 18px;
  border: 1px solid rgba(10, 34, 64, .08);
  box-shadow: 0 10px 30px rgba(10, 34, 64, .04);
  display: flex; flex-direction: column; min-height: 320px;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
  position: relative; overflow: hidden; isolation: isolate;
}
.service-card:is(:hover, :focus-within) {
  transform: translateY(-8px);
  border-color: var(--navy);
  box-shadow: 0 22px 48px rgba(10, 34, 64, .18);
}
.service-card__media {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.16); opacity: 0;
  transition: opacity .55s ease, transform 1.2s ease;
}
.service-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 34, 64, .46) 0%, rgba(10, 34, 64, .78) 46%, rgba(10, 34, 64, .92) 100%);
  opacity: 0; transition: opacity .45s ease;
}
.service-card:is(:hover, :focus-within) .service-card__media img {
  opacity: 1; transform: scale(1.04);
}
.service-card:is(:hover, :focus-within)::after { opacity: 1; }
.service-card__body {
  position: relative; z-index: 2;
  padding: 36px 30px; display: flex; flex-direction: column; gap: 16px; flex: 1;
}
.service-card__header {
  display: flex; align-items: center; justify-content: space-between;
}
.service-card__n {
  font-family: var(--serif); font-size: 32px; line-height: 1;
  color: var(--blue); transition: color .35s ease;
}
.service-card:is(:hover, :focus-within) .service-card__n { color: var(--sky); }
.service-card__badge {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
  background: rgba(31, 165, 222, .08); color: var(--blue);
  font-weight: 500; transition: background .35s ease, color .35s ease;
}
.service-card:is(:hover, :focus-within) .service-card__badge {
  background: rgba(255, 255, 255, .16); color: #fff;
}
.service-card__title {
  margin: 0; font-family: var(--display); font-weight: 500;
  font-size: 26px; line-height: 1.2; color: var(--navy);
  transition: color .35s ease;
}
.service-card:is(:hover, :focus-within) .service-card__title { color: #fff; }
.service-card__text {
  margin: 0; font-size: 15px; line-height: 1.7; color: var(--grey);
  flex: 1; transition: color .35s ease;
}
.service-card:is(:hover, :focus-within) .service-card__text { color: rgba(255, 255, 255, .82); }
.service-card__footer {
  margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(10, 34, 64, .08);
  transition: border-color .35s ease;
}
.service-card:is(:hover, :focus-within) .service-card__footer { border-top-color: rgba(255, 255, 255, .14); }
.service-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); font-weight: 500; transition: gap .25s ease, color .35s ease;
}
.service-card:is(:hover, :focus-within) .service-card__link { color: var(--sky); gap: 12px; }
.service-card__arrow { font-size: 14px; transition: transform .25s ease; }
.service-card:is(:hover, :focus-within) .service-card__arrow { transform: translateX(4px); }

/* Fallback para drawer */
.drawer { position: relative; min-height: 290px; overflow: hidden; border-radius: 18px; }
.drawer__front {
  height: 100%; padding: 32px 28px; background: #fff;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  border: 1px solid rgba(10, 34, 64, .08); border-radius: 18px;
}
.drawer__panel { display: none; }
.drawer__n { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); }
.drawer__title { margin: 0; font-family: var(--display); font-weight: 500; font-size: 26px; line-height: 1.15; }
/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; min-height: 660px; overflow: hidden; background: var(--night); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.03); }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(6,22,39,.88) 0%, rgba(6,22,39,.65) 45%, rgba(6,22,39,.25) 100%);
}
.hero__content {
  position: absolute; inset: 0; max-width: 58%;
  display: flex; flex-direction: column; justify-content: center; gap: 32px;
  padding: 0 var(--gutter); animation: vdRise 1s ease both;
}
.eyebrow__dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--sky); box-shadow: 0 0 10px var(--sky); margin-right: 6px;
  animation: vdPulse 2s infinite ease-in-out;
}
.hero__title {
  margin: 0; font-family: var(--display); font-weight: 600; color: #fff;
  font-size: clamp(48px, 5.8vw, 96px); line-height: 1; letter-spacing: -.035em;
}
.hero__title em { font-style: italic; color: var(--sky); }
.hero__lead { margin: 0; max-width: 48ch; font-size: 20px; line-height: 1.7; color: rgba(255, 255, 255, .82); }
.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 6px; }
.hero__stats {
  position: absolute; inset: auto 0 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 0 var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, .15);
  background: rgba(6, 22, 39, .5); backdrop-filter: blur(16px);
}
.stat {
  padding: 26px var(--pad); display: flex; align-items: baseline; gap: 14px;
  border-right: 1px solid var(--line-light); transition: background .3s ease;
}
.stat:hover { background: rgba(255, 255, 255, .04); }
.stat:last-child { border-right: none; }
.stat__num { font-family: var(--serif); font-size: 36px; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.stat__label { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255, 255, 255, .7); }

/* ---------- Manifiesto ---------- */
.manifesto { display: grid; grid-template-columns: .95fr 1.05fr; background: #fff; border-bottom: 1px solid var(--line); }
.manifesto__claim {
  padding: 110px var(--gutter) 110px var(--gutter); border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
  background: linear-gradient(180deg, #fff 0%, #FAF8F5 100%);
}
.manifesto__claim .h2 { font-size: clamp(38px, 3.6vw, 62px); line-height: 1.06; }
.manifesto__cols { display: grid; grid-template-columns: 1fr 1fr; }
.manifesto__col {
  padding: 110px 48px; display: flex; flex-direction: column; gap: 16px;
  transition: background .3s ease;
}
.manifesto__col:hover { background: #FAF9F7; }
.manifesto__col:first-child { border-right: 1px solid var(--line); padding-left: var(--pad); }
.manifesto__col:last-child { padding-right: var(--gutter); }
.manifesto .eyebrow {
  color: var(--navy);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .16em;
}
.manifesto__col .eyebrow { color: #16324F; }
.manifesto__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(31, 165, 222, .08); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
}

/* ---------- Cabeceras de sección ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 52px; }
.section-head--pad { padding: 0 var(--gutter); margin-bottom: 48px; }
.section-head__text { display: flex; flex-direction: column; gap: 14px; }

/* ---------- Carrusel ---------- */
.styles { padding: 100px 0 110px; background: #fff; border-top: 1px solid var(--line); }
.carousel__nav { display: flex; align-items: center; gap: 12px; }
.carousel {
  display: flex; gap: 24px; overflow-x: auto; padding: 10px var(--pad) 24px var(--gutter);
  cursor: grab; touch-action: pan-x; user-select: none;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.carousel.is-dragging .card-style { transform: none; pointer-events: none; }
.carousel img, .card-style { -webkit-user-drag: none; user-select: none; }
.card-style__img { pointer-events: none; }
.card-style {
  position: relative; flex: none; overflow: hidden; background: var(--night);
  width: clamp(250px, 23vw, 320px); height: clamp(420px, 48vw, 540px);
  border-radius: 16px; box-shadow: 0 14px 36px rgba(6, 22, 39, .15);
  transition: transform .4s ease, box-shadow .4s ease;
}
.card-style:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(6, 22, 39, .25);
}
.card-style__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .8s ease;
}
.card-style:hover .card-style__img { transform: scale(1.09); }
.card-style__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 22, 39, 0.05) 0%, rgba(6, 22, 39, 0.3) 45%, rgba(6, 22, 39, 0.94) 100%);
}
.card-style__tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .2); backdrop-filter: blur(8px);
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: #fff;
  margin-bottom: 8px; width: fit-content;
}
.card-style .tile__title { font-weight: 400; font-size: 30px; margin: 4px 0 0; color: #fff; }
.card-style__meta { display: block; margin-top: 8px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, .75); }

/* ---------- Destinos ---------- */
.destinos { padding: 120px var(--gutter) 130px; background: var(--cream); border-top: 1px solid var(--line); }
.destinos__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.card {
  position: relative;
  display: flex; flex-direction: column; background: #fff;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(10, 34, 64, .07);
  box-shadow: 0 10px 30px rgba(10, 34, 64, .05);
  transition: transform .35s ease, box-shadow .35s ease;
}
.card__hit { position: absolute; inset: 0; z-index: 2; }
.card__actions { position: relative; z-index: 3; }
.card .media-slider__dots { z-index: 3; }
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(10, 34, 64, .12);
}
.card__media { position: relative; height: 320px; overflow: hidden; min-width: 0; }
.card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.card:hover .card__img { transform: scale(1.08); }
.card__badges {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: center;
  pointer-events: none; z-index: 2;
}
.card__region {
  padding: 6px 14px; border-radius: 999px;
  background: rgba(6, 22, 39, .78); backdrop-filter: blur(8px);
  color: #fff; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
}
.card__cat {
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(8px);
  color: var(--navy); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
}
.card__body { padding: 28px 30px 32px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.card__title { margin: 0; font-family: var(--display); font-weight: 500; font-size: 26px; line-height: 1.2; color: var(--navy); }
.card__desc { margin: 0; font-size: 15px; line-height: 1.7; color: var(--grey); flex: 1; }
.card__meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid rgba(10, 34, 64, .09);
  font-size: 13px;
}
.card__dias { display: inline-flex; align-items: center; gap: 8px; color: var(--grey); letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.card__icon { color: var(--blue); }
.price {
  display: inline-flex; flex-direction: column; align-items: flex-end; gap: 2px;
  text-align: right; line-height: 1.3;
}
.price--inline { flex-direction: row; align-items: baseline; gap: 10px; }
.price__was {
  font-size: 12px; font-weight: 400; color: var(--grey-soft);
  letter-spacing: .04em; text-transform: uppercase; text-decoration: line-through;
}
.price__now {
  font-size: 14px; font-weight: 500; color: var(--navy);
  letter-spacing: .06em; text-transform: uppercase;
}
.price--sale .price__now { color: var(--blue); }
.card__price { font-size: 14px; font-weight: 500; color: var(--navy); letter-spacing: .06em; text-transform: uppercase; }

.place-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
}
.place-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(10, 34, 64, .08);
  box-shadow: 0 10px 30px rgba(10, 34, 64, .05);
  transition: transform .35s ease, box-shadow .35s ease;
}
.place-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(10, 34, 64, .12); }
.place-card__media { height: 200px; background: var(--navy); overflow: hidden; }
.place-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.place-card:hover .place-card__media img { transform: scale(1.06); }
.place-card__ph {
  height: 100%; display: grid; place-items: center;
  font-family: var(--serif); font-size: 56px; color: rgba(255, 255, 255, .35);
}
.place-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.place-card__title { margin: 0; font-family: var(--display); font-weight: 500; font-size: 24px; color: var(--navy); }
.place-card__text { margin: 0; font-size: 14px; line-height: 1.55; color: var(--grey); }
.place-card .service-card__link { margin-top: 8px; }

.place-boards {
  padding: 36px var(--gutter) 20px;
  background: #EEF5FA;
}
.place-banner {
  position: relative; overflow: hidden;
  min-height: 280px; border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(10, 34, 64, .08);
}
.place-banner__media {
  position: absolute; inset: 0; pointer-events: none;
}
.place-banner__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 82% center;
}
.place-banner__fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 46%,
    rgba(255, 255, 255, .94) 62%,
    rgba(255, 255, 255, .45) 80%,
    rgba(255, 255, 255, 0) 100%
  );
}
.place-banner__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(72px, .42fr);
  gap: 28px;
  padding: 36px 40px 36px 36px;
}
.page-hero--place:not(:has(.page-hero__media)) { grid-template-columns: minmax(0, 1fr); }
.place-board__copy { min-width: 0; }
.place-board__title {
  margin: 0 0 16px; font-family: var(--display); font-weight: 600;
  font-size: 20px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy);
}
.place-board__list {
  list-style: none; margin: 0; padding: 0;
}
.place-board__list li {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 0 0 9px; font-size: 14px; line-height: 1.45; color: var(--navy);
}
.place-board__list li:not(.is-group)::before {
  content: ""; flex: none; width: 16px; height: 16px; margin-top: 2px;
  border-radius: 50%; border: 1.6px solid var(--blue);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231FA5DE' d='M6.3 11.1 3.2 8l1.1-1.1 2 2 5.4-5.4L12.8 4.6z'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.place-board__list .is-group {
  margin: 16px 0 8px; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 600; color: var(--blue);
}
.place-board__list .is-group:first-child { margin-top: 0; }
.place-cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  padding: 28px var(--gutter) 72px;
  background: #EEF5FA;
}

/* ---------- Catálogo Arequipa ---------- */
.catalog { padding: 88px var(--gutter); background: #fff; border-top: 1px solid var(--line); }
.catalog__head { max-width: 46ch; margin-bottom: 40px; display: flex; flex-direction: column; gap: 14px; }
.catalog__layout {
  display: grid; grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px); align-items: start;
}
.catalog__side {
  position: sticky; top: 110px;
  display: flex; flex-direction: column; gap: 32px;
}
.catalog__label {
  margin: 0 0 14px; font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--blue); font-weight: 500;
}
.catalog__filters { display: flex; flex-direction: column; gap: 6px; }
.catalog__btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left; padding: 11px 14px;
  border: 0; border-radius: 10px; background: transparent;
  color: var(--navy); font: inherit; font-size: 15px; font-weight: 400; cursor: pointer;
}
.catalog__btn em { font-style: normal; font-size: 12px; color: var(--grey); }
.catalog__btn:hover { background: var(--cream); }
.catalog__btn.is-active { background: var(--navy); color: #fff; }
.catalog__btn.is-active em { color: var(--sky); }
.catalog__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.catalog__empty { grid-column: 1 / -1; color: var(--grey); }

/* ---------- Colección privada ---------- */
.luxury {
  padding: 130px var(--gutter); color: #fff;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, #0E3056 0%, var(--night) 70%);
  border-top: 1px solid var(--line-light);
}
.luxury__intro { display: flex; flex-direction: column; gap: 20px; max-width: 760px; margin-bottom: 70px; }
.luxury__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 28px; align-items: stretch; }
.luxury__stack { display: grid; grid-template-rows: minmax(0, 1fr) minmax(0, 1fr); gap: 28px; min-width: 0; }
.tile {
  position: relative; margin: 0; overflow: hidden; min-height: 250px;
  border-radius: 16px; box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}
.tile--main { min-height: 540px; }
.tile__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.tile:hover .tile__img { transform: scale(1.07); }
.tile__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,22,39,0.05) 0%, rgba(6,22,39,.4) 45%, rgba(6,22,39,.95) 100%);
}
.tile__cap {
  position: absolute; inset: auto 0 0 0; padding: 32px;
  z-index: 2; pointer-events: none;
}
.tile--main .tile__cap { padding: 44px; }
.badge-luxury {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: rgba(143, 216, 242, .2); border: 1px solid rgba(143, 216, 242, .45);
  backdrop-filter: blur(8px); color: var(--sky); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 12px; width: fit-content;
}
.tile__title { margin: 8px 0 0; font-family: var(--display); font-weight: 600; font-size: 26px; line-height: 1.2; }
.tile__title--lg { font-size: 44px; line-height: 1.05; margin-top: 10px; }
.luxury__foot {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 34px; border-top: 1px solid var(--line-light);
}

/* ---------- Método ---------- */
.metodo { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; padding: 130px var(--gutter); background: #fff; }
.metodo__aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 120px; }
.metodo__photo {
  margin: 20px 0 0; overflow: hidden; border-radius: 16px;
  box-shadow: 0 16px 40px rgba(10, 34, 64, .1); position: relative;
}
.metodo__photo img {
  width: 100%; height: 460px; object-fit: cover; object-position: center 45%;
  transform: scale(1.04); transition: transform 7s ease; border-radius: 16px;
}
.metodo__photo.is-in img { transform: scale(1.12); }
.metodo__photo-cap {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  padding: 8px 16px; border-radius: 8px;
  background: rgba(6, 22, 39, .75); backdrop-filter: blur(8px);
  color: #fff; font-size: 12px; letter-spacing: .06em;
}
.metodo__steps { display: flex; flex-direction: column; gap: 14px; }
.step {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px;
  padding: 34px 30px; border-radius: 14px;
  border: 1px solid rgba(10, 34, 64, .08); background: #FAF9F6;
  border-left: 4px solid transparent;
  transition: all .35s ease;
}
.step:hover {
  background: #fff; border-left-color: var(--blue);
  box-shadow: 0 12px 36px rgba(10, 34, 64, .09);
  transform: translateX(6px);
}
.step__num-wrap { display: flex; flex-direction: column; align-items: flex-start; }
.step__n { font-family: var(--serif); font-size: 46px; line-height: .95; color: var(--blue); }
.step__body { display: flex; flex-direction: column; gap: 8px; }
.step__title { margin: 0; font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -.01em; color: var(--navy); }
.step__text { margin: 0; font-size: 16px; line-height: 1.7; color: var(--grey); max-width: 58ch; }

/* ---------- Testimonios ---------- */
.quotes { padding: 120px var(--gutter); background: var(--cream); border-top: 1px solid var(--line); }
.quotes__score {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 999px;
  background: #fff; border: 1px solid rgba(10, 34, 64, .1);
  font-size: 13px; font-weight: 400; color: var(--navy);
  box-shadow: 0 4px 14px rgba(10, 34, 64, .04);
}
.quotes__stars { color: #E5A83B; font-size: 15px; letter-spacing: 2px; }
.quotes__num { font-weight: 500; }
.quotes__count { color: var(--grey); font-size: 12px; }
.quotes__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.quote {
  margin: 0; padding: 40px 36px; background: #fff;
  border-radius: 16px; border: 1px solid rgba(10, 34, 64, .07);
  box-shadow: 0 10px 30px rgba(10, 34, 64, .04);
  display: flex; flex-direction: column; gap: 24px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.quote:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(10, 34, 64, .1);
}
.quote__header { display: flex; align-items: center; justify-content: space-between; }
.quote__stars { color: #E5A83B; letter-spacing: 2px; font-size: 15px; }
.quote__verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: #10B981; font-weight: 500;
}
.quote blockquote {
  margin: 0; font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 24px; line-height: 1.45; color: var(--navy); flex: 1;
}
.quote figcaption {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(10, 34, 64, .08);
}
.quote__avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none;
  border: 2px solid #fff; box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
}
.quote__initial {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  background: var(--navy); color: #fff; display: flex; align-items: center;
  justify-content: center; font-weight: 500; font-size: 18px;
}
.quote__author { display: flex; flex-direction: column; gap: 3px; }
.quote__author strong { font-size: 14px; font-weight: 500; color: var(--navy); letter-spacing: .02em; }
.quote__author span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-soft); }

/* ---------- Formularios ---------- */
.field { display: flex; flex-direction: column; gap: 10px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--grey); }
.field input, .field textarea, .field select {
  background: none; border: none; border-bottom: 1px solid rgba(10, 34, 64, .18);
  padding: 12px 0; color: var(--navy); font-family: var(--sans); font-size: 18px; font-weight: 300;
  outline: none; letter-spacing: 0; resize: none; transition: border-color .25s ease;
  border-radius: 0; width: 100%;
}
.field select { cursor: pointer; }
.field__err { letter-spacing: 0; text-transform: none; font-size: 13px; color: #B42318; }
.field input::placeholder, .field textarea::placeholder { color: var(--grey-soft); }
.field input:focus, .field textarea:focus { border-bottom-color: var(--blue); }
.thanks { display: flex; flex-direction: column; gap: 14px; padding: 8px 0; animation: vdRise .5s ease both; }
.thanks__title { margin: 0; font-family: var(--display); font-weight: 600; font-size: 34px; line-height: 1.15; color: var(--navy); }
.thanks .btn { align-self: flex-start; margin-top: 12px; }

/* ---------- Videos cortos ---------- */
.shorts {
  padding: 88px 0 56px;
  background:
    radial-gradient(ellipse 70% 50% at 12% 0%, rgba(31, 165, 222, .22), transparent 58%),
    var(--night);
  color: #fff;
}
.shorts .h2 { color: #fff; }
.shorts .section-head { margin-bottom: 36px; }
.shorts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 var(--gutter);
}
.short {
  display: flex; flex-direction: column; gap: 14px;
  min-width: 0;
}
.short__media {
  position: relative; aspect-ratio: 9 / 16; overflow: hidden;
  border-radius: 16px; background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .08);
}
.short__media video,
.short__media img,
.short__media iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border: 0;
}
.short__play {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  width: 58px; height: 58px; padding: 0; border: 0; cursor: pointer;
  border-radius: 999px; transform: translate(-50%, -50%);
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(6, 22, 39, .35);
  transition: background .25s ease, transform .25s ease, opacity .25s ease;
}
.short__play span {
  width: 0; height: 0; margin-left: 3px;
  border-style: solid; border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent #fff;
}
.short__play:hover { background: var(--sky); color: var(--night); }
.short__meta { display: flex; flex-direction: column; gap: 6px; }
.short__n { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--sky); }
.short__title {
  margin: 0; font-family: var(--display); font-weight: 600;
  font-size: 22px; line-height: 1.15; letter-spacing: -.02em; color: #fff;
}
.short-lb {
  position: fixed; inset: 0; z-index: 120;
  display: none; align-items: center; justify-content: center;
  padding: 28px var(--gutter);
  background: rgba(6, 22, 39, .88);
  backdrop-filter: blur(12px);
}
.short-lb.is-open { display: flex; }
body.short-lb-open { overflow: hidden; }
.short-lb__close {
  position: absolute; top: 22px; right: max(22px, var(--gutter));
  width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px; background: transparent; color: #fff; cursor: pointer;
  font-size: 22px; line-height: 1;
}
.short-lb__close:hover { background: var(--blue); border-color: var(--blue); }
.short-lb__dialog {
  width: min(920px, 100%);
  display: flex; flex-direction: column; gap: 16px;
}
.short-lb__frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: var(--navy); border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(6, 22, 39, .45);
}
.short-lb__frame video,
.short-lb__frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; background: #000; border: 0;
}
.short-lb__title {
  margin: 0; text-align: center;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(22px, 3vw, 32px); color: #fff;
}
.photo-lb {
  position: fixed; inset: 0; z-index: 130;
  display: none; align-items: center; justify-content: center;
  padding: 28px var(--gutter);
  background: rgba(6, 22, 39, .9);
  backdrop-filter: blur(14px);
}
.photo-lb.is-open { display: flex; }
body.photo-lb-open { overflow: hidden; }
.photo-lb__close,
.photo-lb__nav {
  position: absolute; padding: 0; border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px; background: transparent; color: #fff; cursor: pointer;
  display: grid; place-items: center; line-height: 1;
}
.photo-lb__close {
  top: 22px; right: max(22px, var(--gutter));
  width: 46px; height: 46px; font-size: 22px;
}
.photo-lb__nav {
  top: 50%; width: 48px; height: 48px; font-size: 32px;
  transform: translateY(-50%);
}
.photo-lb__nav--prev { left: max(16px, var(--gutter)); }
.photo-lb__nav--next { right: max(16px, var(--gutter)); }
.photo-lb__close:hover,
.photo-lb__nav:hover { background: var(--blue); border-color: var(--blue); }
.photo-lb__dialog {
  margin: 0; width: min(1040px, 100%);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.photo-lb__dialog img {
  display: block; max-width: 100%; max-height: min(78vh, 820px);
  object-fit: contain; border-radius: 16px;
  box-shadow: 0 24px 60px rgba(6, 22, 39, .45);
}
.photo-lb__cap {
  margin: 0; text-align: center; color: #fff;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 2.6vw, 30px);
}

/* ---------- Footer ---------- */
.footer { background: var(--night); color: rgba(255, 255, 255, .5); }
.agenda {
  display: flex; flex-direction: column; gap: 48px;
  padding: 100px var(--gutter);
  background: var(--cream); color: var(--navy);
  border-top: 1px solid var(--line);
}
.agenda__intro { max-width: 34em; display: flex; flex-direction: column; gap: 18px; }
.agenda__intro .h2 { font-size: clamp(36px, 4vw, 58px); }
.agenda__card {
  display: grid; grid-template-columns: minmax(280px, .85fr) minmax(0, 1.25fr);
  min-height: 580px; overflow: hidden; border-radius: 16px;
  box-shadow: 0 24px 60px rgba(6, 22, 39, .12);
}
.advisor {
  position: relative; display: flex; flex-direction: column; justify-content: center; gap: 32px;
  padding: 52px 36px; color: #fff;
  background:
    radial-gradient(ellipse 70% 55% at 88% 0%, rgba(31, 165, 222, .28), transparent 58%),
    var(--navy);
}
.advisor__badge {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; background: var(--blue);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: #fff;
}
.advisor__badge i {
  width: 7px; height: 7px; border-radius: 50%; background: #fff;
  animation: vdPulse 1.4s ease-in-out infinite;
}
@keyframes vdPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 255, 255, .55); }
  50% { opacity: .35; box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}
.advisor__who { display: flex; align-items: center; gap: 16px; }
.advisor__photo {
  width: 156px; height: 156px; flex: none;
  overflow: visible; background: transparent;
}
.advisor__photo img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
}
.advisor__name { margin: 0; font-family: var(--display); font-weight: 600; font-size: 26px; line-height: 1.15; }
.advisor__role { display: block; margin-top: 6px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .62); }
.advisor__quote { margin: 0; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 22px; line-height: 1.4; color: rgba(255, 255, 255, .86); }
.advisor__meta { margin: 0; display: flex; flex-direction: column; }
.advisor__meta div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 14px;
}
.advisor__meta dt { margin: 0; letter-spacing: .16em; text-transform: uppercase; font-size: 11px; color: rgba(255, 255, 255, .55); }
.advisor__meta dd { margin: 0; color: #fff; }
.agenda__panel { display: flex; flex-direction: column; justify-content: center; padding: 56px 52px; background: #fff; }
.agenda__panel form { display: flex; flex-direction: column; gap: 32px; }
.agenda__row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.field em { font-style: normal; letter-spacing: .08em; text-transform: none; color: var(--grey-soft); }
.agenda__submit { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.agenda__note { font-size: 13px; line-height: 1.5; color: var(--grey-soft); max-width: 22ch; }
.thanks .body { max-width: 42ch; }
.footer__bar {
  padding: 56px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  font-size: 13px; letter-spacing: .06em;
}
.footer .nav__logo { height: 56px; max-width: min(280px, 58vw); }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a { color: rgba(255, 255, 255, .5); }
.footer__links a:hover { color: var(--sky); }
.footer__social { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 999px;
  display: grid; place-items: center;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.footer__social a:hover { color: var(--navy); background: var(--sky); border-color: var(--sky); }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.footer__certs {
  padding: 20px var(--gutter) 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px 64px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer__cert {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; width: 168px;
  color: rgba(255, 255, 255, .48);
}
.footer__cert:hover { color: var(--sky); }
.footer__cert img {
  display: block;
  width: auto !important; height: 72px !important; max-width: 168px;
  object-fit: contain; object-position: center;
  opacity: .94;
}
.footer__cert span {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
}
.footer__legal {
  padding: 0 var(--gutter) 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer__legal-links {
  display: flex; gap: 22px; flex-wrap: wrap;
  padding-top: 28px;
}
.footer__legal-links a { color: rgba(255, 255, 255, .42); font-size: 12px; letter-spacing: .04em; }
.footer__legal-links a:hover { color: var(--sky); }
.footer__credit {
  padding-top: 28px;
  color: rgba(255, 255, 255, .38);
  font-size: 12px; letter-spacing: .04em;
}
.footer__credit:hover { color: var(--sky); }

.legal { padding: 128px var(--gutter) 100px; background: var(--cream); color: var(--navy); }
.legal--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .82fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.legal__inner { max-width: 820px; display: flex; flex-direction: column; gap: 18px; }
.legal--split .legal__inner { max-width: none; }
.legal__lead { max-width: 46em; }
.legal__media {
  position: sticky; top: 110px; margin: 0;
  overflow: hidden; border-radius: 20px;
  aspect-ratio: 3 / 4;
  background: var(--navy);
  box-shadow: 0 24px 60px rgba(6, 22, 39, .14);
}
.legal__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.legal__caption {
  position: absolute; left: 16px; bottom: 16px;
  margin: 0; color: #fff; font-size: 13px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(6, 22, 39, .75); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
}
.legal__body {
  margin-top: 18px; white-space: pre-wrap;
  font-size: 16px; line-height: 1.75; color: var(--grey);
}
.legal__form { max-width: 820px; margin-top: 56px; display: flex; flex-direction: column; gap: 28px; }
.book-form { display: flex; flex-direction: column; gap: 28px; }
.legal__form-title {
  margin: 18px 0 0; font-family: var(--display); font-weight: 600;
  font-size: 22px; color: var(--navy);
}
.choice { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.choice__card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease;
}
.choice__card:hover, .choice__card:has(input:checked), .choice__card.is-active {
  border-color: var(--navy); box-shadow: 0 8px 24px rgba(10, 34, 64, .08);
}
.choice__card input { accent-color: var(--navy); }
.choice__card strong { font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.choice__card span { font-size: 14px; line-height: 1.5; color: var(--grey); letter-spacing: 0; text-transform: none; }
.check {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; line-height: 1.55; color: var(--grey);
}
.check input { margin-top: 3px; accent-color: var(--navy); flex: none; }
.check a { color: var(--navy); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 12px var(--gutter) 28px;
    background: rgba(6, 22, 39, .94); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-light); white-space: normal;
  }
  .nav-open .nav__links {
    display: flex;
    max-height: calc(100dvh - 72px);
    min-height: calc(100dvh - 72px);
    overflow-y: auto;
    background: var(--night);
  }
  .nav__links { align-items: flex-start; align-self: auto; }
  .nav__links > a { display: block; }
  .nav__links a { padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .nav__item { width: 100%; display: block; }
  .nav__sub::before { display: none; }
  .nav__sub, .nav__item--wide .nav__sub {
    display: none; position: static; min-width: 0; padding: 0 0 8px 16px;
    background: transparent; border: 0; box-shadow: none; border-radius: 0;
  }
  .nav__item.is-open .nav__sub { display: flex; flex-direction: column; }
  .nav__item--wide.is-open .nav__sub { display: flex; }
  .nav__parent::after { transform: rotate(45deg); }
  .nav__item.is-open .nav__parent::after { transform: rotate(-135deg) translateY(-2px); }
  .nav__cta {
    width: 100%;
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 1080px) {
  .catalog__layout { grid-template-columns: 1fr; }
  .catalog__side { position: static; flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .catalog__filters { flex-direction: row; flex-wrap: wrap; }
  .catalog__btn { width: auto; }
  .catalog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .destinos__grid, .quotes__grid, .feat-grid, .blog-grid, .drawer-grid, .nums, .shorts__grid, .team__grid, .place-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .place-banner__grid { grid-template-columns: 1fr 1fr; padding: 28px 24px; }
  .place-banner.has-photo .place-banner__fade {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, .35) 18%,
      #fff 42%,
      #fff 100%
    );
  }
  .place-banner.has-photo .place-banner__media img { object-position: center 30%; }
  .place-banner.has-photo .place-banner__grid { padding-top: 160px; }
  .metodo { grid-template-columns: 1fr; gap: 48px; }
  .agenda__card { grid-template-columns: 1fr; min-height: 0; }
  .metodo__aside { position: static; }
  .metodo__photo img { height: 320px; }
  .hero__content { max-width: 74%; }
}

@media (max-width: 860px) {
  .nav__logo { height: 52px; }
  .manifesto, .manifesto__cols, .luxury__grid, .band__grid, .band--live { grid-template-columns: 1fr; }
  .agenda__card, .agenda__row, .choice { grid-template-columns: 1fr; }
  .agenda__panel { padding: 36px 24px 40px; }
  .manifesto__claim, .manifesto__col { border-right: none; padding: 72px var(--gutter); }
  .manifesto__col { border-top: 1px solid var(--line); }
  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
  }
  .hero__content {
    position: relative;
    inset: auto;
    z-index: 1;
    max-width: 100%;
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 22px;
    padding: 108px var(--gutter) 28px;
  }
  .hero__title { font-size: clamp(36px, 10vw, 52px); }
  .hero__lead { font-size: 16px; max-width: none; }
  .hero .eyebrow { letter-spacing: .18em; font-size: 10px; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    max-width: 100%;
  }
  .hero__actions .btn--solid {
    width: 100%;
    max-width: 100%;
    padding: 15px 18px;
    letter-spacing: .12em;
    white-space: normal;
    text-align: center;
  }
  .hero__actions .btn--underline { align-self: flex-start; }
  .hero__stats {
    position: relative;
    inset: auto;
    z-index: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 10px 18px;
    border-right: 1px solid var(--line-light);
    border-top: none;
    min-width: 0;
  }
  .stat:last-child { border-right: none; }
  .stat__num { font-size: 22px; }
  .stat__label { letter-spacing: .1em; font-size: 9px; line-height: 1.35; }
  body[data-page="inicio"] .wa { bottom: 90px; }
  .luxury, .destinos, .quotes, .agenda, .shorts { padding-top: 84px; padding-bottom: 48px; }
  .legal--split { grid-template-columns: 1fr; }
  .legal__media { position: static; aspect-ratio: 16 / 10; max-height: 420px; }
  .page-hero { grid-template-columns: 1fr; padding-top: 120px; }
  .page-hero__copy { padding: 0; }
  .page-hero__media { aspect-ratio: 16 / 9; min-height: 0; }
  .tile--main { min-height: 380px; }
}

@media (hover: none) {
  .drawer { height: auto; }
  .drawer__front, .drawer__panel { position: relative; transform: none; height: auto; }
  .drawer__panel { padding-top: 0; }
  .service-card { transform: none; min-height: 0; }
  .service-card__media {
    position: relative; height: 148px; inset: auto;
  }
  .service-card__media img { opacity: 1; transform: none; }
  .service-card::after { display: none; }
}

@media (max-width: 620px) {
  .catalog__grid, .destinos__grid, .quotes__grid, .feat-grid, .feat-grid--3, .blog-grid, .drawer-grid, .nums, .team__grid, .place-grid { grid-template-columns: 1fr; }
  .place-banner__grid { grid-template-columns: 1fr; }
  .footer__certs { gap: 24px 36px; }
  .footer__cert { width: 140px; }
  .footer__cert img { height: 58px !important; max-width: 140px; }
  .step { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- WhatsApp flotante ---------- */
.wa { position: fixed; right: 20px; bottom: 20px; z-index: 50; font-family: var(--sans); }
.wa__fab {
  position: relative; width: 58px; height: 58px; border: 0; border-radius: 50%;
  background: #25D366; color: #fff; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(18, 140, 126, .38);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, border-radius .25s ease;
}
.wa__fab:hover { transform: translateY(-3px) scale(1.04); background: #1EBE57; box-shadow: 0 14px 32px rgba(18, 140, 126, .45); }
.wa.is-open .wa__fab { background: #111; box-shadow: 0 10px 24px rgba(0, 0, 0, .22); }
.wa__icon { position: relative; z-index: 1; }
.wa.is-open .wa__icon { transform: scale(.92); }
.wa__pulse {
  position: absolute; inset: -3px; border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, .45);
  animation: wa-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
.wa.is-open .wa__pulse { display: none; }
.wa__hint {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%) translateX(8px);
  padding: 8px 14px; border-radius: 999px; background: #111; color: #fff;
  font-size: 13px; font-weight: 500; letter-spacing: .01em; white-space: nowrap;
  opacity: 0; visibility: hidden; pointer-events: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.wa:not(.is-open):hover .wa__hint { opacity: 1; visibility: visible; transform: translateY(-50%); }
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .65; }
  100% { transform: scale(1.42); opacity: 0; }
}
.wa__panel {
  position: absolute; right: 0; bottom: 74px;
  width: min(340px, calc(100vw - 32px));
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .16), 0 2px 8px rgba(0, 0, 0, .06);
  transform-origin: bottom right;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}
.wa.is-open .wa__panel { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.wa__head {
  position: relative;
  padding: 20px 46px 18px 20px;
  background: #075E54;
  color: #fff;
}
.wa__eyebrow {
  display: block; margin-bottom: 6px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: #B2DFDB; font-weight: 500;
}
.wa__title { margin: 0; font-family: var(--sans); font-weight: 600; font-size: 18px; letter-spacing: -.01em; }
.wa__lead { margin: 6px 0 0; color: rgba(255, 255, 255, .78); font-size: 13px; font-weight: 400; line-height: 1.45; }
.wa__close {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .12); color: #fff; cursor: pointer;
  display: grid; place-items: center;
}
.wa__close:hover { background: rgba(255, 255, 255, .22); }
.wa__list { display: flex; flex-direction: column; background: #fff; }
.wa__agent {
  display: grid; grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 12px; align-items: center;
  padding: 13px 16px; text-decoration: none; color: inherit;
  border-top: 1px solid #F0F0F0;
  transition: background .18s ease;
}
.wa__agent:first-child { border-top: 0; }
.wa__agent:hover { background: #F6FBF7; }
.wa__avatar {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  display: grid; place-items: center;
  background: #E8F5E9; color: #075E54;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  box-shadow: inset 0 0 0 1px rgba(7, 94, 84, .08);
}
.wa__avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa__meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.wa__meta strong { font-size: 14px; font-weight: 600; color: #1A1A1A; }
.wa__meta em { font-style: normal; font-size: 12px; color: #5C6572; }
.wa__meta small { font-size: 11px; color: #8A9199; }
.wa__status {
  font-size: 10px; letter-spacing: .06em; text-transform: uppercase;
  color: #8A9199; white-space: nowrap; font-weight: 500;
}
.wa__status.is-on { color: #128C7E; }
.wa__status.is-on::before {
  content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 6px;
  border-radius: 50%; background: #25D366;
  vertical-align: middle;
}
@media (max-width: 620px) {
  .wa { right: 14px; bottom: 14px; }
  .wa__fab { width: 54px; height: 54px; }
  .wa__hint { display: none; }
  body[data-page="inicio"] .wa { bottom: 86px; }
}
