:root {
  --bg: #f5f1ea;
  --paper: #ffffff;
  --ink: #2f302b;
  --olive: #3a3d31;
  --olive-soft: #565847;
  --muted: #716d63;
  --gold: #b8ab98;
  --gold-dark: #8a7b65;
  --cream: #f8f5ef;
  --line: rgba(47,48,43,.14);
  --shadow: 0 28px 90px rgba(25, 25, 18, .14);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1180px, calc(100% - 30px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 26px;
  background: rgba(248,245,239,.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(47,48,43,.10);
  border-radius: 999px;
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
}

.brand {
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: 0;
}

.brand img {
  width: 205px;
  height: auto;
  max-height: 86px;
  object-fit: contain;
  display:block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--olive);
}

.site-nav a { transition: .25s ease; }
.site-nav a:hover { color: var(--gold-dark); transform: translateY(-1px); }

.nav-cta {
  background: var(--olive);
  color: #fff !important;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(47,48,43,.26);
}


/* Language selector */
.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 18px;
  padding: 4px;
  border: 1px solid rgba(47,48,43,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.language-option {
  min-width: 38px;
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(47,48,43,.58);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.language-option:hover { color: var(--olive); }
.language-option.is-active {
  background: var(--olive);
  color: #fff;
  box-shadow: 0 7px 18px rgba(47,48,43,.20);
}
.language-option:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--olive);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 20px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 170px 0 90px;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22,26,20,.44) 0%, rgba(22,26,20,.18) 44%, rgba(22,26,20,0) 100%),
    url("../img/hero-main.jpg") center/cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 18s ease-in-out infinite alternate;
  filter: brightness(1.12) saturate(1.08) contrast(1.03);
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  pointer-events: none;
}
.shape-one { width: 260px; height: 260px; right: 8%; top: 24%; animation: floatSlow 8s ease-in-out infinite; }
.shape-two { width: 140px; height: 140px; right: 20%; bottom: 16%; animation: floatSlow 10s ease-in-out infinite reverse; }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
}
.hero .eyebrow { color: #e4c48d; }

h1, h2, h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -.035em;
}
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; }
h1 { font-size: clamp(56px, 7.7vw, 112px); }
h2 { font-size: clamp(38px, 5vw, 76px); }
h3 { font-size: 24px; }

.hero-text {
  margin: 28px 0 36px;
  max-width: 650px;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 500;
  color: rgba(255,255,255,.96);
  text-shadow: 0 8px 28px rgba(0,0,0,.72);
  display: inline-block;
  padding: 16px 20px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(16,24,20,.40) 0%, rgba(16,24,20,.22) 68%, rgba(16,24,20,0) 100%);
  backdrop-filter: blur(3px);
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: .25s ease;
}
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 16px 38px rgba(184,148,93,.32); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-3px); }
.btn-secondary { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.36); backdrop-filter: blur(8px); }
.btn-secondary:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--ink); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-proof span {
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.82);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 80px;
  width: 292px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(19, 31, 35, .44);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}
.hero-panel div + div { border-top: 1px solid rgba(255,255,255,.18); margin-top: 16px; padding-top: 16px; }
.hero-panel strong { display: block; font-family: "Playfair Display"; font-size: 31px; line-height: 1.04; color: #e4c48d; }
.hero-panel span { color: rgba(255,255,255,.90); }

.value-strip {
  background: var(--cream);
  padding: 34px 0;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-grid div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  transition: .3s ease;
}
.value-grid div:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.value-grid span, .service-item span, .mini-card span, .destination-copy span { color: var(--gold-dark); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.value-grid h3 { margin: 8px 0 8px; }
.value-grid p { margin: 0; color: var(--muted); }

.section { padding: 112px 0; }
.split-layout {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 76px;
  align-items: center;
}
.intro p:not(.eyebrow), .section-heading p, .service-item p, .experience-card p, .trust-points p, .contact p, .process-steps p {
  color: var(--muted);
  font-size: 16px;
}
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-dark);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.image-stack { position: relative; min-height: 570px; }
.image-main {
  width: 82%;
  height: 520px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.image-floating {
  position: absolute;
  width: 48%;
  right: 0;
  bottom: 0;
  height: 260px;
  object-fit: cover;
  border-radius: 28px;
  border: 10px solid var(--bg);
  box-shadow: var(--shadow);
  animation: floatSlow 7s ease-in-out infinite;
}

.section-heading { max-width: 820px; margin: 0 0 48px; }
.destinations { background: #fff; }
.destination-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
}
.destination-feature, .mini-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 18px 60px rgba(25,25,18,.12);
}
.destination-feature { min-height: 680px; }
.destination-feature img, .mini-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.destination-feature:hover img, .mini-card:hover img { transform: scale(1.08); }
.destination-patagonia { object-position: center center; }
.destination-north { object-position: center center; }
.destination-feature::after, .mini-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.05));
}
.destination-copy, .mini-card div {
  position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 34px; color: white;
}
.destination-copy span, .mini-card span { color: #e4c48d; }
.destination-copy h3 { font-family: "Playfair Display"; font-size: clamp(38px, 4vw, 60px); max-width: 620px; }
.destination-copy p { max-width: 520px; color: rgba(255,255,255,.82); }
.destination-side { display: grid; gap: 28px; }
.mini-card { min-height: 208px; }
.mini-card h3 { font-family: "Playfair Display"; font-size: 31px; margin-top: 6px; }

.services { background: linear-gradient(rgba(36, 45, 31, .52), rgba(36, 45, 31, .52)), url("../img/services-bg.jpg") center 66% / cover no-repeat; color: white; }
.services .section-heading p, .services .eyebrow { color: #e4c48d; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-item {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  padding: 36px;
  background: rgba(255,255,255,.05);
  transition: .3s ease;
}
.service-item:hover { transform: translateY(-8px); background: rgba(255,255,255,.09); }
.service-item span { color: #e4c48d; }
.service-item h3 { margin: 40px 0 16px; color: white; }
.service-item p { color: rgba(255,255,255,.72); }

.experiences { background: var(--cream); }
.experience-slider {
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 24px;
}
.experience-stage {
  position: relative;
  min-height: 590px;
  border-radius: 28px;
  overflow: hidden;
}
.experience-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.experience-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.experience-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.experience-overlay {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  max-width: 660px;
  color: white;
  padding: 30px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15,22,19,.18), rgba(15,22,19,.72));
  backdrop-filter: blur(10px);
}
.experience-overlay .eyebrow { color: #e4c48d; margin-bottom: 10px; }
.experience-overlay h3 { font-family: "Playfair Display"; font-size: clamp(34px, 4vw, 50px); margin-bottom: 14px; color: white; }
.experience-overlay p:last-child { margin-bottom: 0; color: rgba(255,255,255,.90); max-width: 540px; }
.experience-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 8px 4px;
}
.experience-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--olive);
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}
.experience-arrow:hover { transform: translateY(-1px); border-color: rgba(47,48,43,.2); }
.experience-dots { display: flex; align-items: center; gap: 10px; }
.experience-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(47,48,43,.18);
  transition: .25s ease;
}
.experience-dot.is-active { width: 36px; background: var(--olive); }

.process { background: #fff; }
.process-box {
  border-radius: 42px;
  background: var(--bg);
  padding: 58px;
  box-shadow: var(--shadow);
}
.process-title { max-width: 680px; margin-bottom: 44px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-steps div {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  transition: .3s ease;
}
.process-steps div:hover { transform: translateY(-8px); }
.process-steps span {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: grid; place-items: center; font-weight: 900;
  margin-bottom: 22px;
}

.trust { background: var(--olive); color: white; }
.trust-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.trust .eyebrow { color: #e4c48d; }
.trust-points { display: grid; gap: 18px; }
.trust-points p {
  margin: 0;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.72);
}
.trust-points strong { color: white; }

.contact {
  background:
    linear-gradient(90deg, rgba(22,26,20,.92), rgba(22,26,20,.72)),
    url("../img/cta.jpg") center/cover no-repeat;
  color: white;
}
.contact .eyebrow { color: #e4c48d; }
.contact-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.contact p { color: rgba(255,255,255,.78); }
.contact-actions { margin-top: 26px; }
.contact-form {
  background: rgba(251,247,239,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  padding: 34px;
  border-radius: 34px;
  display: grid;
  gap: 16px;
}
.contact-form label { display: grid; gap: 8px; color: rgba(255,255,255,.86); font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10); color: white;
  border-radius: 18px; padding: 15px 16px; font: inherit;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.58); }

.site-footer { background: var(--cream); padding: 42px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); }
.footer-inner img { width: 150px; }

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0,0,0,.26);
  animation: pulse 2.4s infinite;
}

.wa-icon {
  width: 21px;
  height: 21px;
  margin-right: 9px;
  flex: 0 0 auto;
  display: block;
}

.floating-whatsapp .wa-icon {
  width: 30px;
  height: 30px;
  margin-right: 0;
}


.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.10); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.42), 0 18px 50px rgba(0,0,0,.26); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0), 0 18px 50px rgba(0,0,0,.26); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 18px 50px rgba(0,0,0,.26); }
}

@media (max-width: 980px) {
  .site-header { border-radius: 28px; align-items: flex-start; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 22px;
    background: rgba(251,247,239,.98);
    border-radius: 28px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .hero-panel { display: none; }
  .value-grid, .split-layout, .destination-layout, .service-grid, .trust-box, .contact-box, .process-steps { grid-template-columns: 1fr; }
  .experience-stage { min-height: 520px; }
  .image-stack { min-height: auto; }
  .image-main { width: 100%; height: 420px; }
  .image-floating { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { top: 10px; width: calc(100% - 20px); padding: 10px; }
  .brand img {
  width: 205px;
  height: auto;
  max-height: 86px;
  object-fit: contain;
  display:block;
}
  .hero { padding-top: 150px; }
  h1 { font-size: 50px; }
  h2 { font-size: 40px; }
  .section { padding: 78px 0; }
  .destination-feature { min-height: 520px; }
  .mini-card { min-height: 230px; }
  .process-box { padding: 28px; border-radius: 30px; }
  .footer-inner { flex-direction: column; text-align: center; }
}


/* Ajustes v4: logo integrado + movimiento elegante */
.site-header.scrolled {
  top: 10px;
  background: rgba(248,245,239,.98);
  box-shadow: 0 18px 55px rgba(0,0,0,.14);
}
.brand img {
  width: 205px;
  height: auto;
  max-height: 86px;
  object-fit: contain;
  display:block;
}
.brand:hover img { transform: translateY(-1px) scale(1.02); }
.hero-bg { transition: opacity .65s ease; }
.hero-bg.is-changing { opacity: .72; }
.destination-feature img, .mini-card img, .experience-card img, .image-main, .image-floating { transition: transform .65s ease, filter .65s ease; }
.destination-feature:hover img, .mini-card:hover img, .experience-card:hover img, .image-stack:hover .image-main { transform: scale(1.045); filter: contrast(1.04) saturate(1.03); }
@media (max-width: 760px) {
  .brand img {
  width: 205px;
  height: auto;
  max-height: 86px;
  object-fit: contain;
  display:block;
}
  .site-header { padding: 10px 14px; }
}

/* Ajuste pedido: sin círculos decorativos sobre la foto principal */
.hero-shape{display:none!important;}

.hero-content h1,.hero .eyebrow,.hero-proof{ text-shadow: 0 4px 24px rgba(0,0,0,.44); }

.floating-whatsapp span { display: none !important; }


@media (max-width: 640px) {
  .experience-slider { padding: 14px; }
  .experience-stage { min-height: 450px; }
  .experience-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px 18px;
  }
  .experience-nav { padding-top: 16px; }
  .experience-arrow { width: 42px; height: 42px; }
}



@media (max-width: 980px) {
  .language-switch { margin-left: auto; margin-right: 10px; }
}
@media (max-width: 430px) {
  .language-switch { padding: 3px; margin-right: 7px; }
  .language-option { min-width: 34px; height: 32px; padding: 0 8px; }
}
