/* ================================================================
   SIN BRÚJULA VIAJES — style.css
   Aesthetic: Warm editorial travel agency. Navy + Cream + Gold.
   Fonts: Marcellus (display) + Manrope (body)
   ================================================================ */

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
address { font-style: normal; }

:focus-visible {
  outline: 3px solid rgba(169,124,66,0.48);
  outline-offset: 4px;
}

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --cream:        #F6F0E7;
  --cream-2:      #EDE4D8;
  --cream-3:      #DED1C1;
  --white:        #FFFCF7;
  --navy:         #173756;
  --navy-deep:    #0E2439;
  --navy-mid:     #2A5576;
  --gold:         #A97C42;
  --gold-light:   #D2A66B;
  --gold-pale:    rgba(184,148,90,0.12);
  --ink:          #2C2520;
  --muted:        #7A7068;
  --muted-2:      #A09488;
  --border:       rgba(42,36,30,0.1);
  --border-navy:  rgba(255,255,255,0.12);
  --surface-line: rgba(23,55,86,0.11);
  --shadow-soft:  0 22px 70px rgba(23,55,86,0.12);
  --shadow-card:  0 14px 42px rgba(23,55,86,0.09);

  /* Type */
  --font-display: 'Marcellus', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  /* Motion */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:  cubic-bezier(0.77, 0, 0.175, 1);
  --motion-fast:  160ms;
  --motion-med:   220ms;

  /* Spacing */
  --section-pad:  96px;
  --mobile-nav-offset: clamp(160px, 22vh, 220px);
}

/* ── BASE ───────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(169,124,66,0.09), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(23,55,86,0.07), transparent 30rem),
    var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.028;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(44,37,32,0.7) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 10%, rgba(44,37,32,0.7) 0 1px, transparent 1px);
  background-size: 28px 28px, 34px 34px;
  mix-blend-mode: multiply;
}

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-pad) 0;
}

#inicio,
#destinos,
#presupuesto,
#nosotras,
#resenas,
#contacto {
  scroll-margin-top: 104px;
}

.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--navy   { background: var(--navy-deep); }

/* ── TYPOGRAPHY SYSTEM ──────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label--light { color: var(--gold-light); }
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 20px;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title--light { color: var(--white); }

.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-header--center .section-label {
  justify-content: center;
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}
.section-header--center .section-label::before { display: none; }
.section--compact { padding: 72px 0; }
.section-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 54ch;
  margin: 0 auto;
  font-weight: 300;
}
.section-intro--left { margin-left: 0; margin-right: 0; }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 10px 28px rgba(23,55,86,0.14);
  transition: background var(--motion-med) var(--ease-out), transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-med) var(--ease-out);
  position: relative;
}
.btn-primary:active { transform: scale(0.97); }

.btn-primary.btn-lg {
  padding: 15px 28px;
  font-size: 0.95rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--navy);
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--navy);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--motion-med) var(--ease-out), color var(--motion-med) var(--ease-out), transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-med) var(--ease-out);
}
.btn-outline:active { transform: scale(0.97); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px 0;
  transition: color var(--motion-fast) ease;
}
.btn-ghost svg { transition: transform var(--motion-fast) var(--ease-out); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: gap var(--motion-fast) ease;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

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

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 16px 38px rgba(23,55,86,0.22);
  }
  .btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(23,55,86,0.15);
  }
  .btn-ghost:hover { color: var(--ink); }
  .btn-ghost:hover svg { transform: translateX(4px); }
  .btn-text:hover { gap: 9px; }
  .nav__links a:hover { color: var(--navy); }
  .nav__links a:hover::after { width: 100%; }
  .nav__mobile a:hover { color: var(--navy); }
}

@media (hover: none), (pointer: coarse) {
  .hero__img-frame:hover img,
  .destino--featured:hover .destino__visual img,
  .destino--card:hover .destino__visual--card img,
  .specialty-card:hover::before {
    transform: none;
  }
  .destino--card:hover,
  .benefit-card:hover,
  .resena:hover,
  .team-card:hover {
    transform: none;
  }
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 18px; left: 0; right: 0;
  z-index: 100;
  pointer-events: none;
  transition: top 0.4s var(--ease);
}
.nav.scrolled {
  top: 12px;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px 11px 18px;
  max-width: 1180px;
  pointer-events: auto;
  background: rgba(255,252,247,0.78);
  border: 1px solid rgba(23,55,86,0.09);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(23,55,86,0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.nav.scrolled .nav__inner {
  background: rgba(255,252,247,0.93);
  border-color: rgba(23,55,86,0.12);
  box-shadow: 0 16px 42px rgba(23,55,86,0.13);
}
.nav__logo {
  height: 46px;
  width: auto;
  max-width: 172px;
  object-fit: contain;
}
.nav__logo-fallback {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav__logo-fallback em { color: var(--gold); font-style: italic; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--muted);
  transition: color var(--motion-fast) ease;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--motion-med) var(--ease-out);
}

.nav__cta {
  font-size: 0.82rem !important;
  padding: 10px 18px !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(23,55,86,0.06);
  transition: background var(--motion-fast) ease, transform var(--motion-fast) var(--ease-out);
}
.nav__hamburger:active { transform: scale(0.96); }
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--motion-med) var(--ease-out), opacity var(--motion-fast) ease;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  width: min(calc(100% - 40px), 520px);
  margin: 10px auto 0;
  background: rgba(255,252,247,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--surface-line);
  border-radius: 24px;
  padding: 8px 22px 18px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top center;
  transition: opacity var(--motion-med) var(--ease-out), transform var(--motion-med) var(--ease-out), visibility 0s linear var(--motion-med);
}
.nav__mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}
.nav__mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--motion-fast) ease, transform var(--motion-fast) var(--ease-out);
}
.nav__mobile a:last-child { border: none; }
.nav__mobile a:active { transform: scale(0.985); }
.nav__mobile-wa { color: #1A6E35 !important; font-weight: 600 !important; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background:
    radial-gradient(circle at 7% 22%, rgba(169,124,66,0.12), transparent 18rem),
    linear-gradient(105deg, rgba(255,252,247,0.99) 0%, rgba(255,252,247,0.92) 46%, rgba(246,240,231,0.96) 100%),
    var(--white);
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

/* Subtle paper texture overlay */
.hero__texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 78% 42%, rgba(169,124,66,0.13) 0%, transparent 64%),
    radial-gradient(ellipse 38% 42% at 12% 78%, rgba(23,55,86,0.07) 0%, transparent 60%),
    linear-gradient(90deg, rgba(23,55,86,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23,55,86,0.03) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  pointer-events: none;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.08fr);
  align-items: center;
  min-height: 100dvh;
  gap: 72px;
  padding-top: 96px;
  padding-bottom: 70px;
}

.hero__content { max-width: 650px; }

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 20px;
}
.kicker-line {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 4.55vw, 4.35rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: #5D534B;
  line-height: 1.76;
  max-width: 50ch;
  margin-bottom: 32px;
  font-weight: 400;
}

/* Proof bar */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  margin-top: 28px;
  margin-bottom: 0;
  padding: 12px 16px;
  border: 1px solid rgba(23,55,86,0.1);
  border-radius: 999px;
  background: rgba(255,252,247,0.66);
  box-shadow: 0 12px 40px rgba(23,55,86,0.07);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 14px;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
}
.proof-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}
.proof-stars svg {
  width: 13px; height: 13px;
  color: #D4A340;
}
.proof-divider {
  width: 1px; height: 32px;
  background: var(--border);
  align-self: center;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero visual — right column */
.hero__visual {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  padding: 32px 0 40px;
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 38px -10px 76px 42px;
  border-radius: 34px;
  background: rgba(237,228,216,0.64);
  border: 1px solid rgba(23,55,86,0.08);
  transform: rotate(1.2deg);
}

.hero__img-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  line-height: 0;
  border: 1px solid rgba(255,255,255,0.78);
  background: var(--cream-2);
}
.hero__img-frame--main {
  aspect-ratio: 4/3;
  box-shadow: 0 30px 76px rgba(23,55,86,0.16);
  min-height: 480px;
  z-index: 1;
}
.hero__img-frame picture,
.hero__img-frame img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__img-frame img {
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.hero__img-frame:hover img { transform: scale(1.03); }

.hero__img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(14,36,57,0.78) 0%, rgba(14,36,57,0.08) 100%);
  padding: 72px 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.78rem;
  color: rgba(255,252,247,0.85);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}
.hero__img-caption span:first-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
}
.hero__img-caption--mobile { display: none; }

.hero__img-secondary {
  display: grid;
  grid-template-columns: 190px auto;
  align-items: center;
  gap: 14px;
  position: absolute;
  z-index: 2;
  left: -30px;
  bottom: 72px;
  margin-left: 0;
}
.hero__img-frame--sm {
  aspect-ratio: 16/9;
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(23,55,86,0.18);
}

.hero__floating-tag {
  background: rgba(255,252,247,0.92);
  border: 1px solid rgba(23,55,86,0.11);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 16px 42px rgba(23,55,86,0.14);
}
.hero__floating-tag svg { color: var(--gold); }

/* Decorative rule below hero */
.hero__rule {
  display: flex;
  align-items: center;
  gap: 0;
  padding-bottom: 0;
  margin-top: 0;
}
.hero__rule span:not(.hero__rule-diamond) {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.hero__rule-diamond {
  padding: 0 14px;
  font-size: 0.55rem;
  color: var(--gold);
  letter-spacing: 0;
}

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee-band {
  background: var(--navy-deep);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  padding: 0 4px;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.marquee-sep {
  color: var(--gold);
  font-size: 0.45rem;
  padding: 0 20px;
  opacity: 0.7;
}

/* ================================================================
   DESTINOS
   ================================================================ */

/* Featured destination — horizontal split */
.destino--featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(23,55,86,0.08);
}

.destino__visual {
  position: relative;
  line-height: 0;
}
.destino__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
  transition: transform 0.7s var(--ease), filter 0.4s ease;
  filter: brightness(0.95);
}
.destino--featured:hover .destino__visual img {
  transform: scale(1.03);
  filter: brightness(1.0);
}

.destino__badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: none;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(14,36,57,0.16);
}

.destino__body {
  background: var(--white);
  padding: 56px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destino__region {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 10px;
}
.destino__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.destino__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 42ch;
  margin-bottom: 24px;
  font-weight: 300;
}
.destino__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.destino__features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}
.destino__features svg { color: var(--gold); flex-shrink: 0; }

/* Pair grid */
.destinos-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.destino--card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(23,55,86,0.07);
  border: 1px solid rgba(23,55,86,0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.destino--card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(23,55,86,0.12);
  border-color: rgba(169,124,66,0.22);
}

.destino__visual--card {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.destino__visual--card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: auto;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.95);
}
.destino--card:hover .destino__visual--card img { transform: scale(1.05); }

.destino__body--card {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.destino__body--card .destino__desc { flex: 1; }

/* ================================================================
   TRUST + PROCESS + SPECIALTIES
   ================================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.benefit-card {
  background: linear-gradient(145deg, rgba(255,252,247,0.84), rgba(237,228,216,0.54));
  border: 1px solid rgba(23,55,86,0.09);
  border-radius: 24px;
  padding: 32px 28px;
  min-height: 250px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
}
.benefit-card:first-child {
  background:
    radial-gradient(circle at 100% 0%, rgba(169,124,66,0.16), transparent 14rem),
    linear-gradient(145deg, rgba(255,252,247,0.92), rgba(237,228,216,0.58));
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--cream-3);
}
.benefit-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: rgba(184,148,90,0.35);
  line-height: 1;
  margin-bottom: 26px;
}
.benefit-card h3,
.specialty-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 12px;
}
.benefit-card p,
.specialty-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
}

.budget-tool .section-label,
.faq-copy .section-label {
  display: none;
}
.faq-copy .section-title {
  margin-top: 0;
}

.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.specialty-card {
  position: relative;
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep);
  box-shadow: 0 24px 64px rgba(23,55,86,0.16);
}
.specialty-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.72) saturate(0.95);
  transition: transform 0.7s var(--ease), filter 0.4s ease;
}
.specialty-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,37,56,0.1) 0%, rgba(18,37,56,0.82) 100%);
}
.specialty-card:hover::before {
  transform: scale(1.04);
  filter: brightness(0.82) saturate(1);
}
.specialty-card--caribe::before { background-image: url('fotos/puntacana2.webp'); }
.specialty-card--europa::before { background-image: url('fotos/europa.webp'); }
.specialty-card__content {
  position: relative;
  z-index: 1;
  padding: 40px;
  max-width: 560px;
}
.specialty-card .destino__region { color: var(--gold-light); }
.specialty-card h3 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.25rem); }
.specialty-card p { color: rgba(255,255,255,0.72); margin-bottom: 24px; }
.specialty-card .btn-primary { background: var(--gold); }
.specialty-card .btn-primary:hover { background: var(--gold-light); }

/* ================================================================
   ONLINE BUDGET TOOL
   ================================================================ */
.budget-tool {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(18,37,56,0.96) 0%, rgba(26,53,80,0.94) 56%, rgba(184,148,90,0.88) 100%),
    url('fotos/europa.webp') center/cover;
  color: var(--white);
  padding: 46px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 40px;
  box-shadow: 0 28px 78px rgba(23,55,86,0.2);
}
.budget-tool::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  pointer-events: none;
}
.budget-tool__copy,
.budget-tool__actions {
  position: relative;
  z-index: 1;
}
.budget-tool .section-label { margin-bottom: 14px; }
.budget-tool__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 18px;
}
.budget-tool__title em {
  color: var(--gold-light);
  font-style: italic;
}
.budget-tool__copy p {
  max-width: 62ch;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 18px;
}
.budget-tool__note {
  display: inline-flex;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.budget-tool__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 270px;
}
.budget-tool__actions .btn-primary {
  background: var(--gold);
  color: var(--white);
  white-space: nowrap;
}
.budget-tool__actions .btn-primary:hover { background: var(--gold-light); }
.btn-budget-ghost {
  color: rgba(255,255,255,0.78);
  font-size: 0.86rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-budget-ghost:hover {
  color: var(--white);
  border-color: var(--gold-light);
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(23,55,86,0.09);
  border-radius: 18px;
  padding: 0 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 300;
  padding-bottom: 20px;
}

/* ================================================================
   NOSOTRAS
   ================================================================ */
.nosotras__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: center;
}

.nosotras__img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  line-height: 0;
}
.nosotras__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
  filter: brightness(0.88) saturate(0.85);
}
.nosotras__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18,37,56,0.15) 0%,
    rgba(18,37,56,0.0) 40%,
    rgba(18,37,56,0.55) 100%
  );
}

/* Credential floating card */
.nosotras__cred {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(26,53,80,0.25);
  min-width: 200px;
}
.nosotras__cred div { display: flex; flex-direction: column; gap: 2px; }
.nosotras__cred strong { font-size: 0.85rem; font-weight: 700; }
.nosotras__cred span  { font-size: 0.72rem; opacity: 0.85; }

.nosotras__visual { position: relative; }

.nosotras__lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 32px;
}

/* Team cards */
.team-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.team-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-navy);
  border-radius: 18px;
  padding: 16px 20px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.team-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(184,148,90,0.35);
}
.team-card__avatar {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  flex-shrink: 0;
}
.team-card__avatar--r { background: var(--gold); }
.team-card__avatar--j { background: var(--navy-mid); }
.team-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.team-card__role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  font-weight: 300;
}

/* Values list */
.nosotras__values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.6;
}
.value-row strong { color: var(--white); font-weight: 600; }
.value-icon {
  width: 30px; height: 30px;
  background: rgba(184,148,90,0.15);
  border: 1px solid rgba(184,148,90,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-light);
}

/* ================================================================
   RESEÑAS
   ================================================================ */
.resenas__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 52px;
}
.resenas__header-text .section-title { margin-bottom: 0; }

.resenas__score-block {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.score-big {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.score-meta { display: flex; flex-direction: column; gap: 6px; }
.score-stars {
  display: flex;
  gap: 3px;
}
.score-stars svg {
  width: 15px; height: 15px;
  color: #D4A340;
}
.score-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}
.score-link:hover { opacity: 1; }

/* Review cards */
.resenas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resena {
  background: var(--white);
  border: 1px solid rgba(23,55,86,0.09);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease), border-color 0.25s ease;
}
.resena:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
  border-color: var(--cream-3);
}
.resena__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.resena__avatar {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: var(--av-bg, var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,252,247,0.88);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.resena__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.resena__when {
  font-size: 0.72rem;
  color: var(--muted-2);
  margin-top: 2px;
}
.resena__google { margin-left: auto; flex-shrink: 0; }
.resena__stars  { display: flex; gap: 2px; }
.resena__stars svg { width: 13px; height: 13px; color: #D4A340; }
.resena__text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
  flex: 1;
}

/* ================================================================
   CONTACTO
   ================================================================ */
.contacto__lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 48ch;
  margin: 0 auto;
  font-weight: 300;
}

.contacto__cards {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 52px;
}

.contacto-card {
  border-radius: 26px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacto-card--primary {
  background:
    radial-gradient(circle at 92% 8%, rgba(210,166,107,0.22), transparent 18rem),
    var(--navy-deep);
  box-shadow: 0 26px 72px rgba(23,55,86,0.22);
}
.contacto-card--secondary {
  background: var(--cream-2);
  border: 1px solid rgba(23,55,86,0.09);
}

.contacto-card__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.contacto-card__icon--wa {
  background: rgba(37,211,102,0.12);
  color: #25D366;
}
.contacto-card__icon--phone {
  background: var(--gold-pale);
  color: var(--gold);
}

.contacto-card__channel {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: none;
}
.contacto-card--primary .contacto-card__channel { color: rgba(255,255,255,0.45); }
.contacto-card--secondary .contacto-card__channel { color: var(--gold); }

.contacto-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
}
.contacto-card--primary .contacto-card__title { color: var(--white); }
.contacto-card--secondary .contacto-card__title { color: var(--navy); }

.contacto-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
  flex: 1;
}
.contacto-card--primary .contacto-card__desc { color: rgba(255,255,255,0.55); }
.contacto-card--primary .contacto-card__desc strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.contacto-card--secondary .contacto-card__desc { color: var(--muted); }

.contacto-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #25D366;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.badge-pulse {
  width: 7px; height: 7px;
  background: #25D366;
  border-radius: 50%;
  animation: badge-pulse 2s ease infinite;
  flex-shrink: 0;
}

.contacto-card--primary .contacto-card__cta {
  background: var(--gold);
  color: var(--white);
  border-radius: 999px;
  align-self: flex-start;
}
.contacto-card--primary .contacto-card__cta:hover { background: var(--gold-light); }

.contacto-card--secondary .btn-outline { align-self: flex-start; }

/* Instagram banner */
.insta-banner {
  margin-top: 28px;
  background: var(--cream-2);
  border: 1px solid rgba(23,55,86,0.09);
  border-radius: 20px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 400;
}
.insta-banner svg { color: var(--gold); flex-shrink: 0; }
.insta-banner span { flex: 1; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo { height: 40px; filter: brightness(0) invert(1) opacity(0.85); }
.footer__logo-fallback {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.footer__tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-weight: 300;
  margin-top: 14px;
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social-link {
  width: 34px; height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer__social-link:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.2);
}

.footer__info-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer__address {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__address p, .footer__address a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer__address a:hover { color: rgba(255,255,255,0.8); }

/* Legajo — critical credibility element */
.footer__legajo {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(184,148,90,0.08);
  border: 1px solid rgba(184,148,90,0.25);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.footer__legajo svg { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.footer__legajo strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.footer__legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__legal-links a:hover { color: rgba(255,255,255,0.7); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__copy, .footer__made {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}

/* ================================================================
   WHATSAPP FLOATING
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-bubble {
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 12px 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  max-width: 190px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: opacity var(--motion-med) var(--ease-out), transform var(--motion-med) var(--ease-out);
  pointer-events: none;
  box-shadow: 0 12px 32px rgba(14,36,57,0.28);
}
.wa-bubble.visible { opacity: 1; transform: translateY(0) scale(1); }
.wa-bubble strong { color: var(--white); display: block; margin-bottom: 2px; font-size: 0.82rem; }

.wa-btn {
  position: relative;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.32);
  transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-med) ease;
}
.wa-btn:active { transform: scale(0.96); }
.wa-btn__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse-ring 2.5s ease-out infinite;
}

@media (hover: hover) and (pointer: fine) {
  .wa-btn:hover {
    transform: scale(1.07) translateY(-2px);
    box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero__layout { gap: 40px; }
  .destino--featured { grid-template-columns: 1fr; }
  .destino__body { padding: 36px 32px; }
  .benefits-grid, .specialty-grid { grid-template-columns: 1fr; }
  .benefit-card:first-child { grid-row: auto; min-height: 250px; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .budget-tool { grid-template-columns: 1fr; gap: 28px; }
  .budget-tool__actions { min-width: 0; }
  .nosotras__grid { grid-template-columns: 1fr; gap: 48px; }
  .nosotras__img-wrap img { min-height: 360px; }
  .nosotras__cred { right: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }

  .nav {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    left: auto;
    right: 14px;
    width: auto;
    pointer-events: auto;
  }
  .nav.scrolled { top: max(12px, env(safe-area-inset-top)); }
  .nav__inner {
    width: auto;
    padding: 10px;
    border-radius: 999px;
  }
  .nav__logo-link { display: none; }
  .nav__mobile {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(calc(100vw - 28px), 320px);
    margin: 0;
  }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(32px, 6vh, 56px);
    padding-bottom: 48px;
  }

  #inicio,
  #destinos,
  #presupuesto,
  #nosotras,
  #resenas,
  #contacto {
    scroll-margin-top: 96px;
  }
  .hero__visual {
    display: block;
    padding: 0;
    max-height: 320px;
    overflow: hidden;
  }
  .hero__visual::before { display: none; }
  .hero__img-secondary {
    display: block;
    left: 16px;
    bottom: 18px;
  }
  .hero__img-secondary .hero__img-frame--sm { display: none; }
  .hero__floating-tag {
    display: flex;
    width: max-content;
    box-shadow: 0 12px 30px rgba(23,55,86,0.14);
  }
  .hero__img-frame--main { aspect-ratio: 16/10; min-height: 0; }
  .hero__img-caption--desktop { display: none; }
  .hero__subtitle { max-width: 100%; }
  .hero__proof { width: 100%; border-radius: 22px; justify-content: space-between; }
  .proof-item { padding: 0 8px; }

  .destinos-pair { grid-template-columns: 1fr; }
  .resenas__grid { grid-template-columns: 1fr; }
  .contacto__cards { grid-template-columns: 1fr; }
  .resenas__top { flex-direction: column; gap: 20px; }
  .budget-tool { padding: 36px 28px; }
  .budget-tool::before { inset: 12px; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero__proof { gap: 16px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__title { font-size: 2.85rem; }
  .hero__proof { align-items: flex-start; }
  .proof-divider { display: none; }
  .benefit-card, .specialty-card__content { padding: 26px 22px; }
  .budget-tool { padding: 32px 22px; }
  .budget-tool__actions .btn-primary { white-space: normal; }
  .specialty-card { min-height: 500px; }
  .destino__body { padding: 28px 20px; }
  .contacto-card { padding: 28px 24px; }
}
