@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --negro:        #0d0d0d;
  --dorado:       #c9922a;
  --dorado-hover: #b8841f;
  --blanco:       #ffffff;
  --gris-bg:      #f7f7f7;
  --gris-texto:   #555555;
  --gris-borde:   #e0e0e0;
  --negro-card:   #1a1a1a;
  --negro-footer: #111111;
  --sombra:       0 2px 12px rgba(0,0,0,0.08);
  --radio:        4px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #222; background: #fff; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILIDADES ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 14px;
}
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── BOTONES ────────────────────────────────────────────── */
.btn-dorado {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dorado); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px;
  padding: 12px 22px; border-radius: var(--radio); border: none; cursor: pointer;
  transition: background .2s ease;
  white-space: nowrap;
}
.btn-dorado:hover { background: var(--dorado-hover); }
.btn-dorado svg { flex-shrink: 0; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 13px;
  padding: 11px 20px; border-radius: var(--radio);
  border: 1.5px solid rgba(255,255,255,0.45); cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.07); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #222;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 13px;
  padding: 10px 18px; border-radius: var(--radio);
  border: 1.5px solid #333; cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline-dark:hover { background: #222; color: #fff; }

.btn-outline-dorado {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--dorado);
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 12px;
  padding: 9px 16px; border-radius: var(--radio);
  border: 1.5px solid var(--dorado); cursor: pointer;
  transition: background .2s, color .2s;
  width: 100%;
  justify-content: center;
}
.btn-outline-dorado:hover { background: var(--dorado); color: #fff; }

.btn-wa-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 12px;
  padding: 9px 16px; border-radius: var(--radio);
  border: 1px solid rgba(255,255,255,0.22); cursor: pointer;
  transition: background .2s;
  width: 100%;
  justify-content: center;
}
.btn-wa-dark:hover { background: rgba(255,255,255,0.08); }

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  transition: box-shadow .3s ease;
}
#navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.10); }

.nav-inner {
  display: flex; align-items: center; gap: 0;
  height: 72px;
  padding: 0;
}

.nav-logo { flex-shrink: 0; margin-right: auto; line-height: 1; display: flex; align-items: center; height: 100%; }
.logo-img {
  height: 112px;
  width: auto;
  display: block;
  margin: 0; padding: 0;
}
.logo-img--footer {
  height: 112px;
  width: auto;
  filter: invert(1);
  margin: 0; padding: 0;
}

.nav-logo .logo-name,
.nav-logo .logo-sub,
.footer-brand .logo-name,
.footer-brand .logo-sub { display: none; }

.nav-links {
  display: flex; align-items: center; gap: 30px;
  margin-right: 32px;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 14px; color: #111;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.nav-links a:hover,
.nav-links a.active { border-bottom-color: var(--dorado); color: var(--dorado); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #111; border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav open */
.nav-links.open {
  display: flex; flex-direction: column;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 999;
  align-items: center; justify-content: center;
  gap: 32px;
}
.nav-links.open a { font-size: 18px; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* SLIDER */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(10,10,10,0.72) 0%,
    rgba(10,10,10,0.55) 38%,
    rgba(10,10,10,0.10) 65%,
    transparent 100%);
  z-index: 1;
}

@media (max-width: 860px) {
  .hero-overlay {
    background: linear-gradient(to bottom,
      rgba(10,10,10,0.45) 0%,
      rgba(10,10,10,0.55) 50%,
      rgba(10,10,10,0.45) 100%);
  }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 560px;
  padding: 80px 60px;
  animation: fadeInLeft 0.9s ease 0.15s both;
}
.hero-content .eyebrow { color: var(--dorado); }
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  color: #fff;
  line-height: 1.10;
  margin-bottom: 20px;
}
.hero-content p {
  font-weight: 300; font-size: 15px;
  color: rgba(255,255,255,0.78);
  max-width: 420px; line-height: 1.65;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Botón reservar (dorado — ya existe como .btn-dorado) */

/* Botón WhatsApp verde */
.btn-hero-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25a244; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px;
  padding: 12px 18px; border-radius: var(--radio); border: none; cursor: pointer;
  text-decoration: none;
  transition: background .2s ease;
  white-space: nowrap;
}
.btn-hero-wa:hover { background: #1e8a38; }

/* Botón llamar azul */
.btn-hero-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1a6fc4; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px;
  padding: 12px 18px; border-radius: var(--radio); border: none; cursor: pointer;
  text-decoration: none;
  transition: background .2s ease;
  white-space: nowrap;
}
.btn-hero-call:hover { background: #155ba0; }

/* Dots */
.hero-dots {
  display: flex; gap: 8px; margin-top: 28px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.hero-dot.active {
  background: var(--dorado);
  transform: scale(1.3);
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-35px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── FEATURES STRIP ─────────────────────────────────────── */
.features {
  background: #fff;
  border-bottom: 1px solid var(--gris-borde);
  padding: 52px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid var(--gris-borde);
}
.feature:last-child { border-right: none; }
.feature-icon {
  width: 36px; height: 36px;
  color: var(--dorado);
  margin-bottom: 14px;
}
.feature h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 14px; color: #111;
  margin-bottom: 8px;
}
.feature p {
  font-size: 13px; color: var(--gris-texto);
  line-height: 1.55;
}

/* ── TARIFARIO ──────────────────────────────────────────── */
.tarifario {
  background: var(--negro);
  padding: 72px 0;
}
.tarifario-layout {
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 56px;
  align-items: start;
}
.tarifario-texto .eyebrow { color: var(--dorado); }
.tarifario-texto h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.tarifario-texto p {
  font-weight: 300; font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

/* Zona cards */
.zonas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.zona-card {
  background: var(--negro-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 18px 14px;
  transition: border-color .25s;
}
a.zona-card:hover { border-color: rgba(201,146,42,0.55); background: #222; }
a.tabla-wrap:hover .tabla-destinos { border-color: rgba(201,146,42,0.25); }

.zona-card-header {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 12px;
}
.zona-card-header svg {
  color: var(--dorado); flex-shrink: 0;
  width: 20px; height: 20px;
}
.zona-card-header span {
  font-weight: 600; font-size: 13.5px; color: #fff;
}
.zona-desde {
  font-size: 11px; color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.zona-precio {
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--dorado);
  line-height: 1;
  margin-bottom: 6px;
}
.zona-desc {
  font-size: 11px; color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* Tabla destinos */
.destinos-titulo {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 14px;
}
.tarifario-bottom {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  align-items: start;
}
.tabla-wrap { overflow: hidden; }
.tabla-destinos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
}
.tabla-col { display: flex; flex-direction: column; }
.tabla-col + .tabla-col { border-left: 1px solid rgba(255,255,255,0.07); }
.tabla-header {
  display: grid; grid-template-columns: 1fr auto;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tabla-header span {
  font-size: 9.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.38);
}
.tabla-row {
  display: grid; grid-template-columns: 1fr auto;
  padding: 6px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background .15s;
}
.tabla-row:last-child { border-bottom: none; }
.tabla-row:hover { background: rgba(255,255,255,0.03); }
.tabla-row .dest { font-size: 12px; color: rgba(255,255,255,0.75); }
.tabla-row .precio { font-size: 12px; font-weight: 600; color: #fff; white-space: nowrap; }

.tabla-nota {
  margin-top: 10px;
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 10.5px; font-style: italic;
  color: rgba(255,255,255,0.30);
}

/* Panel cotizar */
.panel-cotizar {
  background: var(--negro-card);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.panel-cotizar-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--dorado);
  display: flex; align-items: center; justify-content: center;
  color: var(--dorado);
  margin-bottom: 4px;
}
.panel-cotizar h4 {
  font-weight: 600; font-size: 15px; color: #fff; line-height: 1.3;
}
.panel-cotizar p {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* ── GALERÍA ────────────────────────────────────────────── */
.galeria {
  background: #fff;
  padding: 72px 0;
}
.galeria-layout {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 52px;
  align-items: center;
}
.galeria-texto h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: #111; line-height: 1.2;
}
.galeria-fotos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.gfoto { overflow: hidden; }
.gfoto img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform .38s ease;
}
.gfoto:hover img { transform: scale(1.04); }

/* ── PRE-FOOTER ─────────────────────────────────────────── */
.prefoot {
  background: var(--negro);
  padding: 52px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.prefoot-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}
.prefoot-cta {
  display: flex; align-items: center; gap: 16px;
  flex-shrink: 0;
}
.prefoot-cta-icon {
  color: var(--dorado); flex-shrink: 0;
  width: 48px; height: 48px; min-width: 48px;
}
.prefoot-cta-text h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: #fff; line-height: 1.25;
}
.prefoot-cta-text p {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.prefoot-contacto {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px 28px;
  align-items: center;
  justify-content: start;
}
.prefoot-item {
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.prefoot-item svg {
  color: var(--dorado); flex-shrink: 0;
  width: 18px; height: 18px; min-width: 18px;
}
.prefoot-item-data strong {
  display: block;
  font-weight: 600; font-size: 13px; color: #fff;
  white-space: nowrap;
}
.prefoot-item-data span {
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,0.50);
  white-space: nowrap;
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--negro-footer);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.50);
  line-height: 1.65; margin-top: 8px;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #fff; margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.60);
  transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 12px;
}
.footer-contact-item svg {
  color: var(--dorado); flex-shrink: 0; margin-top: 1px;
  width: 14px; height: 14px;
}
.footer-contact-item span {
  font-size: 12px; color: rgba(255,255,255,0.60);
  word-break: break-all; line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-icons { display: none; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: border-color .2s, color .2s;
}
.footer-col:last-child { display: none; }
/* Email no rompe en footer */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  text-align: center;
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.40); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.70); }

/* ── WA FLOTANTE ────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25d366; border-radius: 50%;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform .2s ease;
  color: #fff;
}
.wa-float:hover { transform: scale(1.10); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .zonas-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifario-bottom { grid-template-columns: 1fr; }
  .panel-cotizar { flex-direction: row; flex-wrap: wrap; max-width: 100%; }
  .galeria-fotos { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-content { padding: 60px 28px; max-width: 100%; }
  .hero-overlay {
    background: linear-gradient(to right,
      rgba(10,10,10,0.95) 0%,
      rgba(10,10,10,0.85) 55%,
      rgba(10,10,10,0.55) 100%);
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { padding: 20px; }
  .feature:nth-child(2) { border-right: none; }
  .feature:nth-child(3) { border-top: 1px solid var(--gris-borde); border-right: none; }
  .feature:nth-child(4) { border-top: 1px solid var(--gris-borde); border-right: none; }
  .feature:nth-child(3) { border-right: 1px solid var(--gris-borde); }
  .tarifario-layout { grid-template-columns: 1fr; gap: 36px; }
  .tabla-destinos { grid-template-columns: 1fr; }
  .tabla-col + .tabla-col { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .galeria-layout { grid-template-columns: 1fr; gap: 32px; }
  .galeria-fotos { grid-template-columns: repeat(2, 1fr); }
  .prefoot-inner { grid-template-columns: 1fr; gap: 32px; }
  .prefoot-contacto { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .hero { min-height: 75vh; }
  .hero-content h1 { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature { border-right: none !important; border-top: 1px solid var(--gris-borde); }
  .feature:first-child { border-top: none; }
  .zonas-grid { grid-template-columns: 1fr; }
  .galeria-fotos { grid-template-columns: repeat(2, 1fr); }
  .prefoot-contacto { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
