/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
  background: #faf7f2;
  color: #1c1812;
  font-family: 'Inter', -apple-system, sans-serif;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; }

/* ===== CURSOR ===== */
.cur, .cur-ring { display: none; }

@media (hover: hover) and (pointer: fine) {
  .cur {
    display: block;
    position: fixed; width: 10px; height: 10px;
    border-radius: 50%; background: #fff;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }
  .cur-ring {
    display: block;
    position: fixed; width: 36px; height: 36px;
    border-radius: 50%; border: 2px solid #fff;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }
}

/* ===== TOKENS ===== */
:root {
  --gold: #c9a45a;
  --gold-light: #e8c87a;
  --dark: #1c1812;
  --cream: #faf7f2;
  --muted: #332e26;
  --border: rgba(28,24,18,0.1);
  --r: 14px;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 1.4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(20,17,14,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.2rem; color: #fff;
}
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  color: #fff; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
}
.nav-wa {
  color: #fff; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.45rem 1.1rem; border-radius: 100px;
  transition: border-color 0.2s;
}
.nav-wa:hover { border-color: rgba(255,255,255,0.9); }

/* ===== HERO ===== */
.hero {
  height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0 3rem 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('img/hero.jpg');
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.55) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.16em; font-weight: 600;
  text-transform: uppercase; color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  margin-bottom: 1.5rem; overflow: hidden; display: block;
}
.eyebrow span { display: block; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.88; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 2rem;
}
.hero h1 .ln { overflow: hidden; display: block; }
.hero h1 .ln span { display: block; }
.italic { font-style: italic; color: var(--gold-light) !important; }
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #fff;
  max-width: 460px; line-height: 1.75;
  font-weight: 400; margin-bottom: 2.5rem; overflow: hidden;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7), 0 2px 12px rgba(0,0,0,0.5);
}
.hero-sub span { display: block; }
.hero-btns { overflow: hidden; }
.hero-btns span { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white {
  display: inline-block; background: #fff; color: var(--dark);
  padding: 0.9rem 2rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; cursor: none;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.btn-white:hover { transform: scale(1.04); }
.btn-outline-w {
  display: inline-block; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 0.9rem 2rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; cursor: none;
  transition: border-color 0.2s;
}
.btn-outline-w:hover { border-color: rgba(255,255,255,0.9); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 3rem; z-index: 2;
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-bar { width: 40px; height: 1px; background: rgba(255,255,255,0.35); }

/* ===== NAVIERAS ===== */
.navieras-section {
  padding: 2rem 3rem;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navieras-label {
  font-size: 0.62rem; letter-spacing: 0.16em; font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-align: center; margin-bottom: 1rem;
}
.navieras-grid {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; max-width: 800px; margin: 0 auto;
}
.naviera-pill {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.9rem; border-radius: 100px;
}
.naviera-pill.featured {
  border-color: rgba(201,164,90,0.4);
  color: #c9a45a;
}

/* ===== INTRO ===== */
.intro-section { padding: 7rem 3rem; }
.intro-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.label {
  display: block; font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.5rem;
}
.label-light { color: rgba(255,255,255,0.85); }
.display {
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: 1.05; letter-spacing: -0.03em;
  overflow: visible;
}
.display .w { overflow: visible; display: inline-block; margin-right: 0.08em; }
.display .w span { display: block; }
.intro-right p {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.8; font-weight: 300; margin-bottom: 2.5rem;
}
.intro-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.istat { display: flex; flex-direction: column; gap: 4px; }
.istat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; color: var(--dark); line-height: 1;
}
.istat-l { font-size: 0.75rem; color: var(--muted); }

/* ===== COTIZADOR BANNER — elegante oscuro ===== */
.cotizador-banner {
  background: #1c1812;
  border-top: 1px solid rgba(201,164,90,0.2);
  border-bottom: 1px solid rgba(201,164,90,0.2);
  padding: 2rem 3rem;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.cot-banner-txt h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; font-style: italic;
  color: #fff; margin-bottom: 0.2rem;
}
.cot-banner-txt p {
  font-size: 0.8rem; color: rgba(255,255,255,0.75);
}
.btn-cot-banner {
  display: inline-block; background: var(--gold); color: #1c1812;
  padding: 0.85rem 1.75rem; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap; border-radius: 100px;
  transition: opacity 0.2s;
}
.btn-cot-banner:hover { opacity: 0.85; }

/* ===== DESTINOS ===== */
.destinos-section { padding: 5rem 3rem 6rem; max-width: 1200px; margin: 0 auto; }
.destinos-header { margin-bottom: 2.5rem; }
.destinos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 12px;
}
.destino {
  position: relative; border-radius: var(--r);
  overflow: hidden; cursor: none;
}
.destino-tall { grid-row: span 2; }
.destino-inner {
  position: absolute; inset: 0;
  background-image: var(--img);
  background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.destino:hover .destino-inner { transform: scale(1.06); }
.destino::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  z-index: 1;
}
.destino-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem; z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
}
.destino-region {
  font-size: 0.68rem; letter-spacing: 0.1em; font-weight: 600;
  text-transform: uppercase; color: #fff;
}
.destino-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem); color: #fff; line-height: 1;
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden; padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2rem 0;
}
.marquee-track { display: flex; gap: 2rem; white-space: nowrap; will-change: transform; }
.mq {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700; font-style: italic;
  letter-spacing: -0.01em; opacity: 0.55; flex-shrink: 0;
  color: var(--dark);
}
.mq-sep { font-size: 1rem; opacity: 1; color: var(--gold); flex-shrink: 0; align-self: center; }

/* ===== DISNEY / ESPECIALIDAD ===== */
.disney-section { padding: 7rem 3rem; background: var(--dark); color: #fff; }
.disney-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.disney-text .label { color: var(--gold); }
.disney-text .display { color: #fff; margin-bottom: 1.5rem; }
.disney-text p { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
.disney-list { list-style: none; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.disney-list li { font-size: 0.9rem; color: rgba(255,255,255,0.92); display: flex; align-items: center; gap: 0.75rem; }
.disney-list li span { color: var(--gold); }
.disney-visual { position: relative; }
.disney-img {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--r);
  background-image: url('img/disney-cruise.jpeg');
  background-size: cover; background-position: center;
}
.disney-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--gold); border-radius: 12px; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 8px 30px rgba(201,164,90,0.35);
}
.badge-icon { font-size: 1.5rem; }
.badge-text { font-size: 0.8rem; font-weight: 600; color: #fff; line-height: 1.3; }
.btn-dark {
  display: inline-block; background: #fff; color: var(--dark);
  padding: 0.9rem 2rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; cursor: none;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.btn-dark:hover { transform: scale(1.04); }

/* ===== TIPOS ===== */
.tipos-section { padding: 7rem 3rem; }
.tipos-inner { max-width: 1200px; margin: 0 auto; }
.tipos-inner .display { margin-bottom: 3rem; }
.tipos-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border); overflow: hidden;
  border-radius: var(--r);
}
.tipo { background: var(--cream); padding: 2.5rem 2rem; transition: background 0.25s; }
.tipo:hover { background: #fff; }
.tipo-ico { font-size: 1.8rem; margin-bottom: 1rem; }
.tipo h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; font-style: italic; margin-bottom: 0.6rem;
}
.tipo p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ===== RONY ===== */
.rony-section { padding: 7rem 3rem; }
.rony-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.rony-img-wrap { position: relative; }
.rony-img {
  width: 100%; aspect-ratio: 1/1; border-radius: 50%;
  overflow: hidden; background: #e8e2d9;
}
.rony-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top; display: block;
}
.rony-float {
  position: absolute; bottom: 2.5rem; left: -2rem;
  background: #fff; border-radius: 12px; padding: 1rem 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.float-n {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.float-l { font-size: 0.72rem; color: var(--muted); margin-top: 4px; display: block; }
.rony-text .display { margin-bottom: 1.5rem; }
.rony-text > p { font-size: 1rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
.rony-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-outline {
  display: inline-block; background: transparent; color: var(--dark);
  border: 1.5px solid var(--border); padding: 0.9rem 2rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; cursor: none;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: rgba(28,24,18,0.4); }

/* ===== TESTIMONIOS ===== */
.testi-section { padding: 6rem 3rem; background: var(--dark); }
.testi-inner { max-width: 1200px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-cta { text-align: center; margin-top: 3rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.testi {
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r);
  padding: 2rem; transition: border-color 0.3s;
}
.testi:hover { border-color: rgba(201,164,90,0.35); }
.testi-stars { color: var(--gold); letter-spacing: 0.05em; margin-bottom: 1rem; }
.testi-text { font-size: 0.9rem; color: rgba(255,255,255,0.92); line-height: 1.75; font-style: italic; font-weight: 300; margin-bottom: 1.25rem; }
.testi-author { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ===== CTA FINAL ===== */
.cta-section {
  min-height: 80vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=2000&q=85&auto=format');
  background-size: cover; background-position: center;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.65));
}
.cta-content { position: relative; z-index: 2; padding: 4rem 2rem; }
.eyebrow-light { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.9; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 2.5rem;
}
.cta-title .w { overflow: hidden; display: inline-block; margin: 0 0.06em; }
.cta-title .w span { display: block; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white-lg {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #fff; color: var(--dark);
  padding: 1.1rem 2.5rem; border-radius: 100px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; cursor: none;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.btn-white-lg:hover { transform: scale(1.05); }
.btn-outline-w-lg {
  display: inline-block; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 1.1rem 2.5rem; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em; cursor: none;
  transition: border-color 0.2s;
}
.btn-outline-w-lg:hover { border-color: #fff; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 2.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.1rem; color: rgba(255,255,255,0.95);
}
footer p { font-size: 0.75rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 2rem; }
.footer-links a {
  color: rgba(255,255,255,0.75); font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 0 1.5rem 4rem; }
  .intro-section, .tipos-section, .rony-section { padding: 4rem 1.5rem; }
  .intro-inner, .disney-inner, .rony-inner { grid-template-columns: 1fr; gap: 3rem; }
  .destinos-section { padding: 4rem 1.5rem 4rem; }
  .destinos-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; gap: 10px; }
  .destino { height: 220px; }
  .destino-tall { grid-row: span 1; height: 220px; }
  .tipos-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .disney-section, .testi-section { padding: 4rem 1.5rem; }
  .rony-float { left: 1rem; }
  .navieras-section { padding: 1.5rem; }
  .cotizador-banner { padding: 1.5rem; flex-direction: column; text-align: center; }
  .btn-cot-banner { width: 100%; text-align: center; padding: 1rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .destinos-grid { grid-template-columns: 1fr; }
  .destino, .destino-tall { height: 260px; grid-row: span 1; }
  .tipos-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
}