/*
  Calderona Eventos — Stylesheet compartido
  Todas las páginas del sitio usan este archivo.
*/

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

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --dark: #080808;
  --dark2: #0f0f0f;
  --dark3: #161616;
  --w100: rgba(255,255,255,1);
  --w70: rgba(255,255,255,0.7);
  --w45: rgba(255,255,255,0.45);
  --w20: rgba(255,255,255,0.2);
  --w08: rgba(255,255,255,0.08);
  --w04: rgba(255,255,255,0.04);
}

html { scroll-behavior: smooth; }
body { font-family: 'Cormorant Garamond', serif; background: var(--dark); color: var(--w100); overflow-x: hidden; }
img { display: block; }
a { text-decoration: none; color: inherit; }

/* ─── UTILIDADES ─── */
.mono { font-family: 'Montserrat', sans-serif; font-weight: 300; }
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold);
}
.btn-gold {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  padding: 0.9rem 2.5rem;
  transition: background 0.25s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); border: 0.5px solid var(--gold);
  padding: 0.9rem 2.5rem;
  transition: color 0.25s, background 0.25s;
}
.btn-outline:hover { color: var(--dark); background: var(--gold); }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 4rem;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--w08);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(8,8,8,0.97); }
.nav-logo a { display: flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; }
.nav-menu { display: flex; gap: 0; align-items: center; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a,
.nav-menu > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--w45); transition: color 0.25s;
  padding: 0 1.25rem;
}
.nav-item > a:hover, .nav-menu > a:hover,
.nav-item > a.active, .nav-menu > a.active { color: var(--gold); }
.nav-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.5; }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(8,8,8,0.97);
  border: 0.5px solid var(--w08);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0; min-width: 210px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  margin-top: 1rem;
}
/* Puente transparente que cierra el gap entre el trigger y el dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute; top: -1rem; left: 0; right: 0; height: 1rem;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Trigger de Servicios — no es un enlace, solo abre el dropdown */
.nav-srv-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--w45); transition: color 0.25s;
  padding: 0 1.25rem; cursor: default; user-select: none;
}
.nav-item:hover .nav-srv-label { color: var(--gold); }

/* Etiqueta Servicios en el drawer móvil */
.nav-drawer-srv {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--w70); padding: 1rem 0; display: block;
  cursor: default; user-select: none;
}
.nav-dropdown a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--w45); padding: 0.65rem 1.5rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  border-bottom: 0.5px solid var(--w04);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--gold); background: var(--w04); }

/* Botón Portal en la nav */
.nav-portal-btn,
.nav-menu > a.nav-portal-btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #000 !important; background: var(--gold);
  padding: 0.6rem 1.5rem;
  margin-left: 1.25rem;
  border-radius: 5px;
  border: 1.5px solid var(--gold);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.nav-portal-btn:hover,
.nav-menu > a.nav-portal-btn:hover {
  background: var(--dark3);
  color: var(--gold) !important;
  border-color: var(--gold);
}
.nav-drawer-portal {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  padding: 0.7rem 2rem; margin-top: 1.5rem;
  transition: background 0.25s;
}
.nav-drawer-portal:hover { background: var(--gold-light); }

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; cursor: pointer;
  background: none; border: none; padding: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 0.5px;
  background: var(--w70); transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ─── DRAWER (móvil) ─── */
.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(8,8,8,0.97);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0; padding: 2rem;
  opacity: 0; transition: opacity 0.3s;
}
.nav-drawer.open { opacity: 1; }
.nav-drawer-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  font-size: 24px; color: var(--w45); line-height: 1;
}
.nav-drawer > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--w70); padding: 1rem 0; display: block;
}
.nav-drawer > a:hover { color: var(--gold); }
.nav-drawer-item { width: 100%; text-align: center; }
.nav-drawer-item > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--w70); padding: 1rem 0; display: block;
}
.nav-drawer-item > a:hover { color: var(--gold); }
.nav-drawer-sub {
  display: flex; flex-direction: column; align-items: center;
  border-top: 0.5px solid var(--w08); padding: 0.5rem 0 1rem;
}
.nav-drawer-sub a {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--w20); padding: 0.45rem 0;
  transition: color 0.25s; display: block;
}
.nav-drawer-sub a:hover { color: var(--gold); }

/* ─── HERO (inicio) ─── */
.hero {
  height: 100vh; min-height: 680px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,8,8,0.15) 0%, rgba(8,8,8,0.1) 35%,
    rgba(8,8,8,0.65) 72%, rgba(8,8,8,1) 100%);
}
.hero-body {
  position: relative; z-index: 1; text-align: center;
  padding: 0 2rem 6rem;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.hero-logo-img { width: 260px; margin-bottom: 2rem; }
.hero-divider { width: 0.5px; height: 44px; background: var(--gold); opacity: 0.45; margin-bottom: 2rem; }
.hero-h1 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300; font-style: italic;
  color: var(--gold-light); letter-spacing: 0.06em; margin-bottom: 1.2rem;
}
.hero-tags {
  display: flex; gap: 0; align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--w45);
}
.hero-tags span { padding: 0 1rem; }
.hero-tags span + span { border-left: 0.5px solid rgba(255,255,255,0.15); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--w20);
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-scroll-line { width: 0.5px; height: 36px; background: var(--gold); opacity: 0.35; }
@keyframes pulse { 0%,100%{opacity:0.5} 50%{opacity:1} }

/* ─── PAGE HERO (páginas interiores con imagen) ─── */
.page-hero {
  height: 68vh; min-height: 480px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.page-hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,8,8,0.45) 0%, rgba(8,8,8,0.25) 40%,
    rgba(8,8,8,0.78) 80%, rgba(8,8,8,1) 100%);
}
.page-hero-body {
  position: relative; z-index: 1; text-align: center;
  padding: 4rem 2rem 0;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.page-hero-body h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300; line-height: 1.05;
}
.page-hero-body h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-divider { width: 0.5px; height: 36px; background: var(--gold); opacity: 0.45; }
.page-hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--w45);
}

/* PAGE HEADER (páginas sin imagen, solo color oscuro) */
.page-header {
  background: var(--dark2);
  padding: 10rem 4rem 5rem; text-align: center;
  border-bottom: 0.5px solid var(--w08);
}
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.1; margin: 1rem 0 0.75rem;
}
.page-header h1 em { font-style: italic; color: var(--gold-light); }
.page-header .sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--w20); margin-top: 1.25rem;
}

/* ─── INTRO ─── */
.intro {
  background: var(--dark);
  padding: 8rem 4rem 7rem;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 5rem; align-items: center;
  border-bottom: 0.5px solid var(--w08);
}
.intro-left { display: flex; flex-direction: column; gap: 1.5rem; }
.intro-left h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.1;
}
.intro-left h2 em { font-style: italic; color: var(--gold-light); }
.intro-right { display: flex; flex-direction: column; gap: 1.5rem; }
.intro-right p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 300;
  color: var(--w45); line-height: 2; letter-spacing: 0.03em;
}
.intro-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 0.5px solid var(--w08);
  padding-top: 2.5rem; margin-top: 1rem;
}
.ist { text-align: center; }
.ist + .ist { border-left: 0.5px solid var(--w08); }
.ist-n { font-size: 2.4rem; font-weight: 300; color: var(--gold); }
.ist-l {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--w20); margin-top: 4px;
}

/* ─── FULL-IMG PANORÁMICA ─── */
.full-img { position: relative; height: 520px; overflow: hidden; }
.full-img img { width: 100%; height: 100%; object-fit: cover; }
.full-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.2) 55%, rgba(8,8,8,0.55) 100%);
}
.full-img-text { position: absolute; bottom: 3.5rem; left: 5rem; }
.full-img-text h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15; margin-top: 0.75rem;
}
.full-img-text h2 em { font-style: italic; color: var(--gold-light); }
.full-img-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 300;
  color: var(--w45); letter-spacing: 0.1em;
  margin-top: 0.75rem; max-width: 380px; line-height: 1.8;
}

/* ─── SERVICIOS GRID (inicio) ─── */
.servicios-header {
  background: var(--dark2); padding: 5rem 4rem 3rem;
  border-top: 0.5px solid var(--w08);
}
.servicios-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; margin-top: 1rem;
}
.servicios-header h2 em { font-style: italic; color: var(--gold-light); }
.srv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--w08);
}
.srv-card { position: relative; overflow: hidden; cursor: default; }
.srv-card img { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
.srv-card:hover img { transform: scale(1.02); }
.srv-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.3) 40%, rgba(8,8,8,0) 70%);
  transition: background 0.4s;
}
.srv-card:hover .srv-card-overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.5) 50%, rgba(8,8,8,0.05) 75%);
}
.srv-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.75rem; }
.srv-card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.3em; color: var(--gold); margin-bottom: 0.6rem;
}
.srv-card-title { font-size: 1.5rem; font-weight: 400; color: var(--w100); line-height: 1.1; margin-bottom: 0.6rem; }
.srv-card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 300; color: var(--w45); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s; opacity: 0;
}
.srv-card:hover .srv-card-desc { max-height: 80px; opacity: 1; }

/* ─── VIAJES BLOCK ─── */
.viajes-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.viajes-img { position: relative; overflow: hidden; }
.viajes-img img { width: 100%; height: 100%; object-fit: cover; }
.viajes-img-overlay { position: absolute; inset: 0; background: rgba(8,8,8,0.18); }
.viajes-text {
  background: var(--dark3); padding: 5rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 0.5px solid var(--w08);
}
.viajes-text h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300; line-height: 1.15; margin: 1rem 0 1.5rem;
}
.viajes-text h2 em { font-style: italic; color: var(--gold-light); }
.viajes-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 300;
  color: var(--w45); line-height: 1.95; letter-spacing: 0.03em; margin-bottom: 1rem;
}
.viajes-list { display: flex; flex-direction: column; margin-top: 1.5rem; border-top: 0.5px solid var(--w08); }
.vl-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 0; border-bottom: 0.5px solid var(--w08);
}
.vl-num { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 0.2em; color: var(--gold); opacity: 0.7; min-width: 24px; }
.vl-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--w45);
}

/* ─── QUOTE ─── */
.quote {
  background: var(--dark2); padding: 7rem 4rem; text-align: center;
  border-top: 0.5px solid var(--w08); border-bottom: 0.5px solid var(--w08);
}
.quote-mark { font-size: 6rem; font-weight: 300; color: var(--gold); opacity: 0.25; line-height: 0.4; margin-bottom: 2.5rem; }
.quote-text {
  font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 300; font-style: italic;
  color: var(--w70); max-width: 700px; margin: 0 auto; line-height: 1.35;
}
.quote-attr {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); opacity: 0.55; margin-top: 2.5rem;
}

/* ─── SECCIÓN CONTACTO ─── */
.contact { background: var(--dark); padding: 8rem 4rem; text-align: center; }
.contact h2 {
  font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 300; line-height: 1.1; margin: 1rem 0 0.5rem;
}
.contact h2 em { font-style: italic; color: rgba(255,255,255,0.3); }
.contact-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--w20); margin-bottom: 5rem;
}
.contact-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  max-width: 860px; margin: 0 auto;
  border: 0.5px solid var(--w08);
}
.ci { padding: 2.5rem 1.5rem; }
.ci + .ci { border-left: 0.5px solid var(--w08); }
.ci-l {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); opacity: 0.6; margin-bottom: 10px;
}
.ci-v { font-size: 14px; font-weight: 300; color: var(--w70); }

/* ─── FORMULARIO DE CONTACTO ─── */
.contact-form-section {
  background: var(--dark2);
  padding: 6rem 4rem;
  border-bottom: 0.5px solid var(--w08);
}
.contact-form-inner { max-width: 780px; margin: 0 auto; }
.contact-form-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; line-height: 1.1; margin: 0.75rem 0 0.5rem;
}
.contact-form-inner h2 em { font-style: italic; color: var(--gold-light); }
.contact-form-inner .sub-txt {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 300;
  color: var(--w20); letter-spacing: 0.15em; margin-top: 0.5rem;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--w08); margin-top: 3rem;
}
.form-field { background: var(--dark2); }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
  padding: 1.4rem 1.5rem 0.4rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%; background: none; border: none; outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 300;
  color: var(--w70); padding: 0 1.5rem 1.4rem;
  letter-spacing: 0.03em; resize: none;
}
.form-field select {
  cursor: pointer; padding-bottom: 1.4rem;
  -webkit-appearance: none; appearance: none;
}
.form-field select option { background: var(--dark3); color: var(--w70); }
.form-field textarea { min-height: 130px; padding-top: 0.4rem; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--w20); }
.form-row-btn { margin-top: 2rem; display: flex; justify-content: flex-end; }
.btn-submit {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  border: none; padding: 1rem 3rem; cursor: pointer;
  transition: background 0.25s;
}
.btn-submit:hover { background: var(--gold-light); }
.btn-submit:disabled { background: #5a7a5a; cursor: default; color: rgba(255,255,255,0.5); }

/* ─── GALERÍA ─── */
.gallery-filters {
  display: flex; align-items: center; gap: 0;
  padding: 2rem 4rem; background: var(--dark2);
  border-bottom: 0.5px solid var(--w08);
  overflow-x: auto; scrollbar-width: none;
}
.gallery-filters::-webkit-scrollbar { display: none; }
.gf-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--w45); background: none; border: none;
  padding: 0.5rem 1.5rem; cursor: pointer;
  border-right: 0.5px solid var(--w08);
  white-space: nowrap; transition: color 0.25s;
}
.gf-btn:first-child { padding-left: 0; }
.gf-btn:last-child { border-right: none; }
.gf-btn:hover, .gf-btn.active { color: var(--gold); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--w08);
}
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-caption {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0); transition: background 0.4s;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-item:hover .gallery-item-caption { background: rgba(8,8,8,0.5); }
.gallery-item-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(8,8,8,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 88vw; max-height: 84vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: var(--w45);
  font-size: 28px; cursor: pointer; line-height: 1; transition: color 0.2s;
}
.lightbox-close:hover { color: var(--w100); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--w20);
  font-size: 2rem; cursor: pointer; padding: 1rem; transition: color 0.2s;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

/* ─── NOSOTROS — valores y equipo ─── */
.nosotros-story {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 540px; border-bottom: 0.5px solid var(--w08);
}
.story-img { position: relative; overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-overlay { position: absolute; inset: 0; background: rgba(8,8,8,0.25); }
.story-text {
  background: var(--dark3); padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 0.5px solid var(--w08);
}
.story-text h2 {
  font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 300; line-height: 1.15;
  margin: 1rem 0 1.5rem;
}
.story-text h2 em { font-style: italic; color: var(--gold-light); }
.story-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 300;
  color: var(--w45); line-height: 2; letter-spacing: 0.03em; margin-bottom: 1rem;
}
.values-section {
  background: var(--dark2); padding: 7rem 4rem;
  border-bottom: 0.5px solid var(--w08);
}
.values-section-header { text-align: center; margin-bottom: 4rem; }
.values-section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; margin: 1rem 0;
}
.values-section-header h2 em { font-style: italic; color: var(--gold-light); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid var(--w08);
}
.value-card { padding: 3rem 2rem; }
.value-card + .value-card { border-left: 0.5px solid var(--w08); }
.value-num { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 0.3em; color: var(--gold); opacity: 0.6; margin-bottom: 1rem; }
.value-title { font-size: 1.45rem; font-weight: 300; color: var(--w100); margin-bottom: 0.75rem; }
.value-desc { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 300; color: var(--w45); line-height: 1.8; }

/* ─── PÁGINA SERVICIOS — tarjetas grandes ─── */
.srv-page-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--w08);
}
.srv-page-card {
  position: relative; overflow: hidden; height: 440px;
  cursor: pointer; display: block;
}
.srv-page-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.srv-page-card:hover img { transform: scale(1.03); }
.srv-page-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.25) 55%, rgba(8,8,8,0.05) 100%);
  transition: background 0.4s;
}
.srv-page-card:hover .srv-page-overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.55) 65%, rgba(8,8,8,0.15) 100%);
}
.srv-page-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 2rem; }
.srv-page-num { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 400; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 0.6rem; }
.srv-page-title { font-size: 1.9rem; font-weight: 300; color: var(--w100); line-height: 1.1; margin-bottom: 0.7rem; }
.srv-page-desc { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 300; color: var(--w45); line-height: 1.75; margin-bottom: 1.25rem; }
.srv-page-link { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); opacity: 0; transition: opacity 0.4s; }
.srv-page-card:hover .srv-page-link { opacity: 1; }

/* ─── SUBPÁGINAS DE SERVICIOS — contenido ─── */
.content-section {
  padding: 7rem 4rem; border-bottom: 0.5px solid var(--w08);
}
.content-section.bg-dark  { background: var(--dark); }
.content-section.bg-dark2 { background: var(--dark2); }
.content-section.bg-dark3 { background: var(--dark3); }
.content-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.content-two-col.reverse .col-img { order: -1; }
.col-text h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.1; margin: 1rem 0 1.5rem; }
.col-text h2 em { font-style: italic; color: var(--gold-light); }
.col-text p { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 300; color: var(--w45); line-height: 2; letter-spacing: 0.03em; margin-bottom: 1rem; }
.col-text .cta-row { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.col-img { position: relative; overflow: hidden; }
.col-img img { width: 100%; height: 420px; object-fit: cover; }
.content-center { max-width: 760px; margin: 0 auto; text-align: center; }
.content-center h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.1; margin: 1rem 0 1.5rem; }
.content-center h2 em { font-style: italic; color: var(--gold-light); }
.content-center p { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 300; color: var(--w45); line-height: 2; letter-spacing: 0.03em; }

/* Tarjetas 4-columnas (features) */
.cards-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--w08); margin-top: 4rem;
}
.card-4 { background: var(--dark3); padding: 2.5rem 2rem; }
.card-4 + .card-4 { }
.card-4-num { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 0.3em; color: var(--gold); opacity: 0.7; margin-bottom: 1rem; }
.card-4-title { font-size: 1.35rem; font-weight: 300; color: var(--w100); margin-bottom: 0.75rem; line-height: 1.2; }
.card-4-desc { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 300; color: var(--w45); line-height: 1.8; }

/* ─── CTA FINAL ─── */
.cta-section {
  background: var(--dark3); padding: 7rem 4rem; text-align: center;
  border-top: 0.5px solid var(--w08);
}
.cta-section h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.1; margin: 1rem 0 1.5rem; }
.cta-section h2 em { font-style: italic; color: var(--gold-light); }
.cta-section p { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 300; color: var(--w45); line-height: 2; max-width: 500px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark); padding: 2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 0.5px solid var(--w08); flex-wrap: wrap; gap: 1rem;
}
.ft-logo img { height: 22px; opacity: 0.35; }
.ft-copy { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 0.2em; color: var(--w20); }
.ft-links { display: flex; gap: 2rem; }
.ft-links a { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--w20); }

/* ─── CURSOR PERSONALIZADO ─── */
@media (pointer: fine) {
  body, a, button, input, label, select, textarea, [role="button"] { cursor: none !important; }

  .cur-dot {
    position: fixed; z-index: 9999; pointer-events: none;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: width 0.18s ease, height 0.18s ease, background 0.18s ease, opacity 0.18s;
    will-change: left, top;
  }
  .cur-ring {
    position: fixed; z-index: 9998; pointer-events: none;
    width: 30px; height: 30px; border-radius: 50%;
    border: 0.5px solid rgba(201,169,110,0.4);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 6px rgba(201,169,110,0.08);
    transition: width 0.35s ease, height 0.35s ease,
                border-color 0.35s, box-shadow 0.35s, opacity 0.35s;
    will-change: left, top;
  }
  .cur-dot.is-hover {
    width: 3px; height: 3px;
    background: var(--w100);
  }
  .cur-ring.is-hover {
    width: 46px; height: 46px;
    border-color: rgba(201,169,110,0.65);
    box-shadow: 0 0 18px rgba(201,169,110,0.18), 0 0 4px rgba(201,169,110,0.1);
  }
  .cur-dot.is-hidden, .cur-ring.is-hidden { opacity: 0; }
}

/* ─── FADE-IN ─── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── WHATSAPP ─── */
.wa-section {
  padding: 5rem 4rem;
  background: var(--dark2);
  text-align: center;
}
.wa-section .eyebrow { margin-bottom: 1rem; }
.wa-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300;
  margin-bottom: 1rem; line-height: 1.15;
}
.wa-section h2 em { font-style: italic; color: var(--gold); }
.wa-section > p {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 300;
  letter-spacing: 0.08em; color: var(--w45);
  max-width: 420px; margin: 0 auto 2.5rem;
}
.wa-box {
  display: flex; align-items: stretch;
  max-width: 700px; margin: 0 auto;
  border: 0.5px solid rgba(201,169,110,0.3);
}
.wa-box-left {
  flex: 1; padding: 2.5rem 3rem;
  border-right: 0.5px solid rgba(201,169,110,0.15);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.25rem;
}
.wa-icon {
  width: 56px; height: 56px;
  border: 0.5px solid rgba(201,169,110,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,169,110,0.06);
}
.wa-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.wa-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--w100); letter-spacing: 0.05em;
}
.wa-number-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--w20);
}
.wa-box-right {
  flex: 1; padding: 2.5rem 3rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
}
.wa-box-right p {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.06em; color: var(--w45);
  text-align: center; margin: 0;
}
.wa-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  padding: 1rem 2.5rem;
  transition: background 0.25s;
}
.wa-btn:hover { background: var(--gold-light); }
.wa-btn svg { width: 16px; height: 16px; fill: var(--dark); flex-shrink: 0; }

/* Botón flotante WhatsApp */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--dark2);
  border: 0.5px solid rgba(201,169,110,0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.wa-float:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.08); }
.wa-float:hover svg { fill: var(--dark); }
.wa-float svg { width: 26px; height: 26px; fill: var(--gold); transition: fill 0.25s; }
.wa-float::before {
  content: '';
  position: absolute; inset: -7px; border-radius: 50%;
  border: 0.5px solid rgba(201,169,110,0.25);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ─── TABLET ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }

  .hero-logo-img { width: 200px; }
  .hero-h1 { font-size: 1.2rem; }

  .page-hero { height: 55vh; min-height: 360px; }
  .page-hero-body h1 { font-size: 2.4rem; }
  .page-header { padding: 8rem 2rem 4rem; }
  .page-header h1 { font-size: 2.4rem; }

  .intro { grid-template-columns: 1fr; gap: 2.5rem; padding: 5rem 2rem 4rem; }
  .intro-stats { grid-template-columns: repeat(2,1fr); row-gap: 2rem; }
  .ist:nth-child(2) { border-left: 0.5px solid var(--w08); }
  .ist:nth-child(3) { border-left: none; border-top: 0.5px solid var(--w08); padding-top: 1.5rem; }
  .ist:nth-child(4) { border-left: 0.5px solid var(--w08); border-top: 0.5px solid var(--w08); padding-top: 1.5rem; }

  .full-img { height: 420px; }
  .full-img-text { left: 2rem; bottom: 2rem; right: 2rem; }

  .servicios-header { padding: 3.5rem 2rem 2rem; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .srv-card-desc { max-height: 80px; opacity: 1; }

  .viajes-block { grid-template-columns: 1fr; }
  .viajes-img { min-height: 300px; max-height: 380px; }
  .viajes-img img { width: 100%; height: 100%; object-fit: cover; }
  .viajes-text { padding: 3rem 2rem; }

  .quote { padding: 5rem 2rem; }

  .contact { padding: 5rem 2rem; }
  .contact-grid { grid-template-columns: repeat(2,1fr); }
  .ci:nth-child(3) { border-left: none; border-top: 0.5px solid var(--w08); }
  .ci:nth-child(4) { border-top: 0.5px solid var(--w08); }

  .contact-form-section { padding: 5rem 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }

  .gallery-filters { padding: 1.5rem 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .nosotros-story { grid-template-columns: 1fr; }
  .story-img { min-height: 280px; max-height: 360px; }
  .story-img img { width: 100%; height: 100%; object-fit: cover; }
  .story-text { padding: 3.5rem 2rem; border-left: none; border-top: 0.5px solid var(--w08); }

  .values-section { padding: 5rem 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-card:nth-child(3) { border-left: none; border-top: 0.5px solid var(--w08); }
  .value-card:nth-child(4) { border-top: 0.5px solid var(--w08); }

  .srv-page-grid { grid-template-columns: 1fr 1fr; }
  .srv-page-card { height: 360px; }

  .content-section { padding: 5rem 2rem; }
  .content-two-col { grid-template-columns: 1fr; gap: 3rem; }
  .content-two-col.reverse .col-img { order: 0; }
  .col-img img { height: 300px; }
  .cards-4 { grid-template-columns: 1fr 1fr; }

  .cta-section { padding: 5rem 2rem; }

  footer { padding: 1.5rem 2rem; flex-direction: column; text-align: center; gap: 1rem; }
  .ft-links { justify-content: center; }
}

/* ─── MÓVIL ─── */
@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .hero-logo-img { width: 160px; margin-bottom: 1.5rem; }
  .hero-divider { height: 32px; margin-bottom: 1.5rem; }
  .hero-h1 { font-size: 1.05rem; letter-spacing: 0.03em; }
  .hero-tags { flex-wrap: wrap; justify-content: center; gap: 0.4rem 0; }
  .hero-tags span { font-size: 8px; padding: 0 0.6rem; }
  .hero-body { padding: 0 1.5rem 5rem; }

  .page-hero { height: 50vh; min-height: 300px; }
  .page-hero-body h1 { font-size: 1.9rem; }
  .page-header { padding: 7rem 1.5rem 3rem; }
  .page-header h1 { font-size: 1.9rem; }

  .intro { padding: 4rem 1.5rem 3.5rem; }
  .intro-left h2 { font-size: 2rem; }
  .intro-right p { font-size: 12px; }
  .ist-n { font-size: 1.9rem; }

  .full-img { height: 340px; }
  .full-img-text { left: 1.5rem; bottom: 1.5rem; right: 1.5rem; }
  .full-img-text h2 { font-size: 1.7rem; }
  .full-img-text p { display: none; }
  .full-img-overlay { background: linear-gradient(180deg, rgba(8,8,8,0.1) 0%, rgba(8,8,8,0.7) 60%, rgba(8,8,8,0.92) 100%); }

  .servicios-header { padding: 3rem 1.5rem 1.5rem; }
  .servicios-header h2 { font-size: 1.8rem; }
  .srv-grid { grid-template-columns: 1fr; }
  .srv-card-desc { max-height: none; opacity: 1; }
  .srv-card-title { font-size: 1.4rem; }

  .viajes-text { padding: 2.5rem 1.5rem; }
  .viajes-text h2 { font-size: 1.9rem; }
  .vl-label { font-size: 10px; }

  .quote { padding: 4rem 1.5rem; }
  .quote-text { font-size: 1.4rem; }

  .contact { padding: 4rem 1.5rem; }
  .contact h2 { font-size: 2rem; }
  .contact-grid { grid-template-columns: 1fr; max-width: 320px; }
  .ci + .ci { border-left: none; border-top: 0.5px solid var(--w08); }
  .ci-v { font-size: 13px; }

  .contact-form-section { padding: 4rem 1.5rem; }

  .gallery-filters { padding: 1.25rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }

  .story-text { padding: 2.5rem 1.5rem; }
  .values-section { padding: 4rem 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card + .value-card { border-left: none; border-top: 0.5px solid var(--w08); }

  .srv-page-grid { grid-template-columns: 1fr; }
  .srv-page-card { height: 320px; }

  .content-section { padding: 4rem 1.5rem; }
  .cards-4 { grid-template-columns: 1fr; }

  .cta-section { padding: 4rem 1.5rem; }

  footer { padding: 1.5rem; }
  .ft-logo img { height: 18px; }

  .wa-section { padding: 4rem 1.5rem; }
  .wa-section h2 { font-size: 2rem; }
  .wa-box { flex-direction: column; gap: 2.5rem; padding: 2.5rem 1.5rem; }
  .wa-box-left { border-right: none; border-bottom: 0.5px solid rgba(201,169,110,0.15); padding-bottom: 2rem; }
  .wa-float { bottom: 1.5rem; right: 1.5rem; width: 52px; height: 52px; }
  .wa-float svg { width: 24px; height: 24px; }
}
