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

:root {
  --crema:       #f5f0ee;
  --azul:        #2E4260;
  --terracota:   #A0614A;
  --carbon:      #1C1C1A;
  --crema-60:    rgba(245, 240, 238, 0.6);
  --crema-10:    rgba(245, 240, 238, 0.1);
  --display:     'DM Sans', system-ui, sans-serif;
  --serif:       'Fraunces', Georgia, serif;
  --body:        'DM Sans', system-ui, sans-serif;
  --bar-h:       40px;
}

body.bar-gone { --bar-h: 0px; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(72px + var(--bar-h));
}

body {
  font-family: var(--body);
  color: var(--carbon);
  background: var(--crema);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }


/* ── BARRA DE ANUNCIO ─────────────────────────────────────── */
.ann-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--bar-h);
  z-index: 101;
  background: var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0 3rem;
  overflow: hidden;
  transition: height 0.35s ease, opacity 0.35s ease;
}

body.bar-gone .ann-bar {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.ann-bar-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(245,240,230,0.92);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.ann-bar-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--crema);
  border-bottom: 1px solid rgba(245,240,230,0.5);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.ann-bar-link:hover { border-color: var(--crema); }

.ann-bar-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(245,240,230,0.65);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  padding: 0.3rem 0.4rem;
  transition: color 0.2s;
}
.ann-bar-close:hover { color: var(--crema); }


/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--bar-h);
  left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s, box-shadow 0.3s, top 0.35s ease;
}

.nav.scrolled,
.nav.menu-open {
  background: var(--azul);
  box-shadow: 0 2px 28px rgba(28,28,26,0.22);
}

.nav-inner {
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--crema);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--terracota); }

.btn-nav {
  margin-left: 2.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  background: var(--terracota);
  color: var(--crema);
  padding: 0.45rem 1.15rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-nav:hover { background: #8d5240; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--crema);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── NAV LINKS DROPDOWN ────────────────────────────────────── */
.nav-has-sub {
  position: relative;
}

.nav-sub-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--crema);
  letter-spacing: 0.04em;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-sub-btn:hover { color: var(--terracota); }

.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--azul);
  border: 1px solid rgba(245,240,230,0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 260px;
  list-style: none;
  box-shadow: 0 8px 28px rgba(28,28,26,0.3);
  z-index: 200;
}

.nav-has-sub:hover .nav-submenu,
.nav-sub-btn[aria-expanded="true"] + .nav-submenu {
  display: block;
}

.nav-submenu li a {
  display: block;
  padding: 0.65rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(245,240,230,0.78) !important;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
}

.nav-submenu li a:hover {
  color: var(--crema) !important;
  background: rgba(245,240,230,0.07);
}


/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(46,66,96,0.35) 0%,
    rgba(46,66,96,0.58) 40%,
    rgba(46,66,96,0.72) 80%
  );
}

.hero-center {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem 8rem;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 3rem;
}

.hero-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.9);
  margin-bottom: 1.2rem;
  animation: heroFadeUp 0.7s ease 0.15s both;
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.4vw, 5.4rem);
  font-weight: 700;
  color: var(--crema);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 24px rgba(46,66,96,0.5);
  animation: heroFadeUp 0.85s ease 0.3s both;
}

.hero-mundo {
  font-size: 1.4em;
  display: block;
  line-height: 1;
  margin-bottom: -0.1em;
}

.hero-headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 72, 'SOFT' 100;
  font-size: 1.22em;
  letter-spacing: -0.02em;
  display: block;
}

.hero-tagline {
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  font-weight: 600;
  color: var(--crema);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  animation: heroFadeUp 0.7s ease 0.55s both;
}

.hero-cta {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crema);
  border: 1px solid rgba(245,240,230,0.45);
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}

.hero-cta:hover {
  background: rgba(245,240,230,0.12);
  border-color: var(--crema);
}

/* ── HERO SEARCH WIDGET ────────────────────────────────────── */
.hero-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 10px 40px rgba(28,28,26,0.22);
  width: min(940px, 85vw);
  gap: 0;
  animation: heroFadeUp 0.7s ease 0.7s both;
}

.hs-sep {
  flex-shrink: 0;
  width: 1px;
  height: 38px;
  background: rgba(28,28,26,0.1);
  margin: 0 0.25rem;
}

.hs-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1rem;
  min-width: 0;
}

.hs-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azul);
}

.hs-select {
  border: none;
  outline: none;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%232E4260' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 18px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--carbon);
  cursor: pointer;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.hs-select option[value=""] { color: rgba(28,28,26,0.4); }

.hs-field--pax {
  flex: 0 0 auto;
  min-width: 108px;
}

.hs-pax {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hs-pax-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--azul);
  background: transparent;
  color: var(--azul);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.hs-pax-btn:hover { background: var(--azul); color: var(--crema); }

.hs-pax-num {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--carbon);
  min-width: 1.4ch;
  text-align: center;
}

.hs-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--azul);
  color: var(--crema);
  border: none;
  border-radius: 9px;
  padding: 0.8rem 1.3rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 0.75rem;
  transition: background 0.2s, transform 0.15s;
}
.hs-btn:hover { background: var(--terracota); transform: translateY(-1px); }

@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 100%; }
}

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


/* ── EYEBROW ──────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 0.8rem;
}

.eyebrow-light { color: rgba(245,240,230,0.45); }


/* ── DESTINOS — intro ─────────────────────────────────────── */
.destinos { padding-bottom: 0; }

.destinos-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2.5rem 0;
}

.destinos-intro h2 {
  font-family: var(--display);
  font-size: clamp(3.3rem, 6.6vw, 5.5rem);
  font-weight: 700;
  color: var(--carbon);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.destinos-intro h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 72, 'SOFT' 100;
  letter-spacing: -0.02em;
}


/* ── DESTINOS — animación entrada ────────────────────────── */
.destino-row {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.destino-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── DESTINOS — rows ──────────────────────────────────────── */
.destinos-rows {
  display: flex;
  flex-direction: column;
}

.destino-row + .destino-row {
  border-top: 1px solid rgba(28,28,26,0.09);
}

.destino-row {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 4.5rem 2.5rem;
  gap: 0;
}

.destino-row.reverse {
  grid-template-columns: 50% 50%;
}

.destino-row--full {
  grid-template-columns: 58% 42%;
}

.destino-row--full.reverse {
  grid-template-columns: 42% 58%;
}

.destino-media {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.destino-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.destino-row--full .destino-media img {
  aspect-ratio: 4 / 3;
}

.destino-row--portrait .destino-media img {
  aspect-ratio: 3 / 4;
}

.destino-row:hover .destino-media img {
  transform: scale(1.07);
}

.destino-copy {
  padding: 2rem 0 2rem 3rem;
  background: var(--crema);
  position: relative;
  z-index: 2;
}

.destino-row.reverse .destino-copy {
  padding: 2rem 3rem 2rem 0;
}

.destino-num {
  font-family: var(--display);
  font-size: clamp(5rem, 8.5vw, 8rem);
  font-weight: 700;
  color: rgba(160,97,74,0.22);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 0.6rem;
}

.destino-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--azul);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 0.55rem;
}

.destino-places {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--terracota);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.destino-desc {
  font-size: 0.91rem;
  color: rgba(28,28,26,0.65);
  line-height: 1.72;
  margin-bottom: 1.4rem;
  text-wrap: pretty;
}

.destino-includes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.destino-includes li {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--azul);
  background: rgba(46,66,96,0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.5;
}

.di-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.btn-link {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--carbon);
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid var(--carbon);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-link:hover {
  color: var(--terracota);
  border-color: var(--terracota);
  transform: translateX(5px);
}


/* ── POR QUÉ ELEGIRNOS ───────────────────────────────────── */
.porque {
  background: #f5f0ee;
  padding: 8rem 2.5rem;
  border-top: 1px solid rgba(28,28,26,0.07);
}

.porque-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}

.porque-header h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--terracota);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.porque-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.porque-card {
  background: var(--crema);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  border: 2px solid var(--terracota);
  text-align: center;
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.porque-card.visible { opacity: 1; }

.porque-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(46,66,96,0.11);
}

.porque-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 1.3rem;
  color: var(--terracota);
  transition: color 0.3s ease;
}

.porque-card:hover .porque-icon { color: var(--terracota); }

.porque-icon svg { width: 3.2rem; height: 3.2rem; }

.porque-card h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--terracota);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}

.porque-card p {
  font-size: 0.86rem;
  color: var(--terracota);
  line-height: 1.68;
}


/* ── CÓMO FUNCIONA ────────────────────────────────────────── */
.como-funciona {
  background: var(--azul);
  padding: 11rem 2.5rem;
}

.cf-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
  text-align: center;
}

.cf-heading {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--crema);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.cf-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: start;
  gap: 0 3rem;
}

.cf-sep {
  width: 1px;
  height: 100%;
  background: rgba(245,240,230,0.12);
  align-self: stretch;
}

.cf-step {
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cf-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.cf-inner .cf-step:nth-child(3) { transition-delay: 0.15s; }
.cf-inner .cf-step:nth-child(5) { transition-delay: 0.3s; }

.cf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.5rem;
  color: var(--crema);
}

.cf-icon svg {
  width: 3.2rem;
  height: 3.2rem;
}

.cf-title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--crema);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.cf-desc {
  font-size: 1rem;
  color: rgba(245,240,230,0.58);
  line-height: 1.72;
  max-width: 24ch;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ── CONTACTO ─────────────────────────────────────────────── */
.contacto {
  background: var(--crema);
  padding: 8rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.contacto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('fotos/hero/hero.jpeg') center / cover no-repeat;
  opacity: 0.07;
  z-index: 0;
}

.contacto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contacto-left h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--azul);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.contacto-sub {
  font-size: 1rem;
  color: rgba(28,28,26,0.55);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--azul);
  color: var(--crema);
  padding: 0.85rem 1.8rem;
  border-radius: 5px;
  transition: background 0.2s, transform 0.15s;
}

.btn-wa:hover { background: #253652; transform: translateY(-2px); }

/* contact lines */
.contacto-right { display: flex; flex-direction: column; }

.c-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(28,28,26,0.08);
  color: var(--carbon);
}

.c-line:first-child { border-top: 1px solid rgba(28,28,26,0.08); }

a.c-line:hover .c-value { color: var(--azul); }

.c-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracota);
  white-space: nowrap;
}

.c-value {
  font-size: 0.92rem;
  color: rgba(28,28,26,0.65);
  text-align: right;
  line-height: 1.55;
  transition: color 0.2s;
}


/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--azul);
  color: rgba(245,240,230,0.55);
  padding: 5rem 2.5rem 2.5rem;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(245,240,230,0.15);
}

.footer-col--brand .footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1.2rem;
}

.footer-col--brand p {
  font-size: 0.84rem;
  color: rgba(245,240,230,0.78);
  line-height: 1.7;
  margin-bottom: 1.6rem;
  text-wrap: pretty;
}

.footer-wa {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crema);
  border: 1px solid rgba(245,240,230,0.3);
  padding: 0.65rem 1.3rem;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}

.footer-wa:hover {
  border-color: var(--crema);
  background: rgba(245,240,230,0.08);
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.88);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li,
.footer-col ul li a,
.footer-col ul li button {
  font-size: 0.84rem;
  color: rgba(245,240,230,0.78);
  transition: color 0.2s;
}

.footer-col ul li a:hover,
.footer-col ul li button:hover { color: var(--crema); }

.footer-modal-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  text-align: left;
}

.footer-legajo {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245,240,230,0.2);
}

.footer-legajo-item {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--crema);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.footer-legajo-item strong {
  color: var(--crema);
}

.footer-legal {
  font-size: 0.72rem;
  line-height: 1.78;
  color: rgba(245,240,230,0.8);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245,240,230,0.15);
}

.footer-legal p { margin-bottom: 0.3rem; }
.footer-legal strong { color: var(--crema); }

.footer-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(245,240,230,0.78);
}

.footer-bottom a {
  color: rgba(245,240,230,0.88);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--crema); }


/* ── NAV ACTIVO ────────────────────────────────────────────── */
.nav-links a {
  position: relative;
}
.nav-links a.active {
  color: var(--crema);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--terracota);
  border-radius: 1px;
}

/* ── BADGE DESTINOS ─────────────────────────────────────────── */
.destino-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
  background: rgba(46,66,96,0.1);
  color: var(--azul);
}
.destino-badge--popular {
  background: var(--terracota);
  color: var(--crema);
}

/* ── MODALES ─────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--azul);
  color: var(--crema);
  border-radius: 18px;
  padding: 2.5rem 2.8rem;
  max-width: 580px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(28,28,26,0.25);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: rgba(245,240,238,0.45);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.3rem 0.5rem;
  font-family: inherit;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--crema); }

.modal-title {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--crema);
  margin-bottom: 1.8rem;
  padding-right: 2rem;
  letter-spacing: -0.015em;
}

.modal-section {
  margin-bottom: 1.6rem;
}
.modal-section:last-child { margin-bottom: 0; }

.modal-section h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 0.6rem;
}

.modal-section p {
  font-size: 0.88rem;
  color: rgba(245,240,238,0.78);
  line-height: 1.78;
  text-wrap: pretty;
}

@media (max-width: 480px) {
  .modal-box { padding: 2rem 1.6rem; border-radius: 14px; }
}


/* ── BOTONES FLOTANTES (WhatsApp + Instagram) ───────────────── */
.fab-group {
  position: fixed;
  bottom: 4.5rem;
  right: 1.8rem;
  z-index: 9999;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.fab-group.visible {
  opacity: 1;
  pointer-events: auto;
}

.fab-wa,
.fab-ig {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s;
  will-change: transform;
}

.fab-wa {
  background: #25D366;
}

.fab-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.fab-wa:hover,
.fab-ig:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 7px 26px rgba(0,0,0,0.3);
}

.fab-wa svg,
.fab-ig svg { display: block; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .porque-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destino-row--portrait .destino-media img {
    aspect-ratio: 4 / 3;
  }

  .destino-row,
  .destino-row.reverse {
    grid-template-columns: 1fr;
    padding: 4rem 2.5rem;
  }

  .destino-media { order: 1; }
  .destino-copy  { order: 2; }

  .destino-copy,
  .destino-row.reverse .destino-copy {
    padding: 1.5rem 0 0;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

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

  .contacto-left { text-align: center; }
  .contacto-sub { text-align: center; }

  .c-line {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }
  .c-value { text-align: center; }
}

@media (max-width: 768px) {
  .fab-group {
    flex-direction: column;
    bottom: 1.5rem;
    right: 1rem;
    gap: 0.45rem;
  }
  .fab-wa,
  .fab-ig {
    width: 2.8rem;
    height: 2.8rem;
  }

  .nav-toggle { display: flex; }

  .nav-inner { padding: 0 1.25rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--azul);
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(28,28,26,0.3);
    margin-left: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    display: block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(245,240,230,0.07);
  }

  .nav-has-sub { position: static; }

  .nav-sub-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(245,240,230,0.07);
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .nav-submenu {
    position: static;
    transform: none;
    left: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.15);
    min-width: 0;
    padding: 0;
  }

  .nav-submenu li a {
    padding: 0.75rem 3rem;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(245,240,230,0.07);
  }

  .btn-nav { display: none; }

  .hero-center {
    justify-content: center;
    gap: 2rem;
    padding: 4.5rem 1.25rem 2.5rem;
  }

  .hero-copy {
    flex: 0;
    padding-top: 0;
  }

  .hero-headline { font-size: clamp(3.1rem, 8.4vw, 5.4rem); }

  .hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.4rem;
  }

  .hero-search { width: 100%; }

  .ann-bar-text { display: none; }

  .destinos-intro { padding: 3rem 1.5rem 2rem; }

  .destino-row,
  .destino-row.reverse { padding: 3.5rem 1.5rem; }

  .porque { padding: 5rem 1.5rem; }
  .porque-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-col--brand { grid-column: auto; }

  .cf-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cf-sep {
    width: 100%;
    height: 1px;
    margin: 2rem 0;
  }

  .como-funciona { padding: 5rem 1.5rem; }

  .contacto { padding: 5rem 1.5rem; }

  .footer-bottom { flex-direction: column; }
}

@media (max-width: 768px) and (max-height: 700px) {
  .hero-tagline { display: none; }
  .hero-copy { padding-top: 4rem; }
  .hero-center { padding-bottom: 1.5rem; }
}

/* ── HERO SEARCH responsive ── */
@media (max-width: 768px) {
  .hero-search {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.85rem 0.9rem;
    border-radius: 12px;
  }
  .hs-sep {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .hs-field {
    padding: 0.6rem 0.5rem;
    min-width: 0;
  }
  .hs-field--pax { min-width: 0; }
  .hs-pax-btn {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }
  .hs-btn {
    margin: 0.6rem 0 0;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-tagline { display: none; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.2em; margin-bottom: 0.8rem; }
  .hero-center { padding: 4.5rem 1.25rem 2rem; }
  .hero-copy { flex: 0; padding-top: 0; }

  .hero-search { padding: 0.75rem 0.8rem; }
  .hs-field { padding: 0.55rem 0.5rem; }

  .destinos-intro { padding: 4rem 1.25rem 2rem; }
  .destinos-intro h2 { font-size: 2.75rem; }

  .destino-row,
  .destino-row.reverse { padding: 2.5rem 1.25rem; }
  .destino-num { font-size: 4.2rem; }

  .porque { padding: 4rem 1.25rem; }
  .porque-grid { grid-template-columns: 1fr; }
  .porque-header h2 { font-size: 2.6rem; }

  .cf-heading { font-size: 2.8rem; }

  .como-funciona { padding: 4rem 1.25rem; }

  .contacto { padding: 4rem 1.25rem 5rem; }
  .contacto-left h2 { font-size: 2.8rem; }
  .btn-wa { width: 100%; justify-content: center; padding: 1rem 1.5rem; }

  .footer { padding: 3rem 1.25rem 2rem; }
  .footer-cols { gap: 2rem; }
}
