/* =====================================================
   EG TRAVELS — CSS DEFINITIVO COMPLETO
   Pega TODO esto en: Appearance → Customize → Additional CSS
   Borra todo lo anterior primero, luego pega esto.
   ===================================================== */

/* VARIABLES Y RESET */
:root {
  --ink: #0c1117;
  --gold: #b8923a;
  --gold-light: #d4a851;
  --cream: #f7f2eb;
  --fog: #e8e2d9;
  --ocean: #0d2233;
  --white: #ffffff;
  --text-muted: #4a4540;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* =====================================================
   ELIMINAR TODO LO DE WORDPRESS QUE SOBRA
   ===================================================== */
.site-header, #masthead, header[role="banner"],
#header, .wp-block-template-part[class*="header"] {
  display: none !important;
  height: 0 !important;
}

.site-footer, #colophon, footer[role="contentinfo"],
.wp-block-template-part[class*="footer"] {
  display: none !important;
  height: 0 !important;
}

h1.entry-title, .entry-title, .page-title,
.wp-block-post-title {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.entry-header, .page-header, .post-header {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body, html,
.wp-site-blocks,
#page, #content, #primary, #main,
main, main.site-main,
.site-content, .site-main,
.entry-content, .post-content,
.wp-block-post-content,
.wp-block-group,
.is-layout-flow {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.entry-content > *:first-child,
.wp-block-post-content > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =====================================================
   CURSOR PERSONALIZADO DORADO
   ===================================================== */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

/* =====================================================
   NAVEGACIÓN
   ===================================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5%;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(12,17,23,0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(184,146,58,0.2);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.65rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.04em; text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.10em;
  text-transform: uppercase; transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--ink) !important;
  padding: 0.55rem 1.4rem; border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex; align-items: flex-end;
  overflow: hidden;
  margin: 0 !important; padding: 0 !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=90') center/cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(12,17,23,0.35) 0%,
    rgba(12,17,23,0.1) 35%,
    rgba(12,17,23,0.6) 70%,
    rgba(12,17,23,0.92) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 8% 7%; max-width: 820px;
}
.hero-eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 1.5rem; opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 28px; height: 1px;
  background: var(--gold); margin-right: 10px; vertical-align: middle;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 300; color: var(--white); line-height: 1.06;
  margin-bottom: 1.8rem; opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.2rem; color: rgba(255,255,255,0.85); font-weight: 300;
  max-width: 500px; line-height: 1.7; margin-bottom: 2.8rem;
  opacity: 0; animation: fadeUp 0.9s 0.8s ease forwards;
}
.hero-actions {
  display: flex; gap: 1.2rem; align-items: center;
  opacity: 0; animation: fadeUp 0.9s 1.0s ease forwards;
}
.hero-stats {
  position: absolute; right: 6%; bottom: 7%; z-index: 2;
  display: flex; flex-direction: column; gap: 1.5rem;
  opacity: 0; animation: fadeLeft 0.9s 1.2s ease forwards;
}
.stat-item { text-align: right; }
.stat-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--white); line-height: 1; }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 1s 1.5s ease forwards;
}
.scroll-hint span { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 2s infinite; }

/* =====================================================
   BOTONES
   ===================================================== */
.btn-primary {
  background: var(--gold); color: var(--ink);
  padding: 1rem 2.2rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: none; border-radius: 2px; cursor: pointer;
  transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(184,146,58,0.4);
}
.btn-ghost {
  color: var(--white); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

/* =====================================================
   ANIMACIONES
   ===================================================== */
@keyframes fadeUp    { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft  { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 8px 45px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); }
}

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(.16,1,.3,1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =====================================================
   MARQUEE (FRANJA DORADA)
   ===================================================== */
.marquee-strip {
  background: var(--gold); padding: 0.9rem 0;
  overflow: hidden; white-space: nowrap;
  width: 100vw; margin-left: calc(-50vw + 50%);
}
.marquee-track { display: inline-flex; animation: marquee 22s linear infinite; }
.marquee-track span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); padding: 0 2.5rem; }
.marquee-track span::after { content: '✦'; margin-left: 2.5rem; opacity: 0.4; }

/* =====================================================
   SECCIONES
   ===================================================== */
section { padding: 8rem 8%; }
.section-label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before { content: ''; display: block; width: 22px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 300; line-height: 1.12; color: var(--ink); }
.section-title em { font-style: italic; color: var(--gold); }

/* =====================================================
   DESTINOS
   ===================================================== */
.destinations { background: var(--cream); }
.dest-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
.dest-header p { max-width: 380px; color: #3a3530; font-size: 1.05rem; line-height: 1.75; font-weight: 400; }
.dest-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: auto auto; gap: 1.2rem; }
.dest-card { position: relative; overflow: hidden; border-radius: 3px; cursor: pointer; }
.dest-card:first-child { grid-row: span 2; min-height: 600px; }
.dest-card:not(:first-child) { min-height: 285px; }
.dest-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.16,1,.3,1); display: block; position: absolute; inset: 0; }
.dest-card:hover .dest-img { transform: scale(1.07); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,17,23,0.85) 0%, rgba(12,17,23,0.1) 50%, transparent 100%); transition: opacity 0.4s; }
.dest-card:hover .dest-overlay { opacity: 0.85; }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.8rem; }
.dest-tag { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.5rem; font-weight: 600; }
.dest-name { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 0.4rem; }
.dest-card:first-child .dest-name { font-size: 2.4rem; }
.dest-price { font-size: 0.95rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 0.4rem; }
.dest-price strong { color: var(--gold-light); font-size: 1rem; font-weight: 500; }
.dest-arrow { position: absolute; top: 1.5rem; right: 1.5rem; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; opacity: 0; transform: translateY(8px); transition: all 0.35s ease; }
.dest-card:hover .dest-arrow { opacity: 1; transform: translateY(0); border-color: var(--gold); color: var(--gold); }

/* =====================================================
   BENEFICIOS
   ===================================================== */
.experience-strip {
  background: var(--fog); padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  width: 100vw; margin-left: calc(-50vw + 50%);
}
.exp-item { padding: 3.5rem 2.5rem; border-right: 1px solid rgba(0,0,0,0.08); display: flex; flex-direction: column; gap: 1rem; transition: background 0.3s; }
.exp-item:last-child { border-right: none; }
.exp-item:hover { background: var(--cream); }
.exp-icon { font-size: 1.8rem; line-height: 1; }
.exp-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.exp-text { font-size: 1rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* =====================================================
   CRUCEROS
   ===================================================== */
.cruises-section {
  background: var(--ocean); position: relative; overflow: hidden;
  width: 100vw; margin-left: calc(-50vw + 50%); padding: 8rem 8%;
}
.cruises-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(184,146,58,0.12) 0%, transparent 70%); border-radius: 50%; }
.cruises-section .section-title { color: var(--white); }
.cruises-section .section-label { color: var(--gold-light); }
.cruises-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 4rem; }
.cruises-text p { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.8; font-weight: 300; margin-top: 1.5rem; }
.cruises-feat-img { position: relative; }
.cruises-feat-img img { width: 100%; border-radius: 3px; aspect-ratio: 4/3; object-fit: cover; }
.cruises-feat-img::before { content: ''; position: absolute; inset: -12px -12px 12px 12px; border: 1px solid rgba(184,146,58,0.3); border-radius: 3px; z-index: -1; }
.cruise-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cruise-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; transition: all 0.4s ease; cursor: pointer; }
.cruise-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(184,146,58,0.4); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.cruise-img { height: 200px; overflow: hidden; position: relative; }
.cruise-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cruise-card:hover .cruise-img img { transform: scale(1.06); }
.cruise-body { padding: 1.6rem; }
.cruise-brand { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.cruise-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--white); line-height: 1.25; margin-bottom: 0.7rem; }
.cruise-desc { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; font-weight: 300; margin-bottom: 1.4rem; }
.cruise-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.07); }
.cruise-price-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.15em; }
.cruise-price-val { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--gold-light); line-height: 1; }
.cruise-btn { background: transparent; border: 1px solid rgba(184,146,58,0.5); color: var(--gold-light); padding: 0.5rem 1.2rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: all 0.3s; }
.cruise-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* Cards dinámicas */
.cruise-img-placeholder { height: 200px; background: url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=600') center/cover no-repeat; }
.cruise-dynamic-badge { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--ink); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 2px; }

/* =====================================================
   TESTIMONIOS
   ===================================================== */
.testimonials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0;
  width: 100vw; margin-left: calc(-50vw + 50%);
}
.test-left { background: var(--ocean); padding: 7rem 8%; position: relative; overflow: hidden; }
.test-left::after { content: '"'; font-family: var(--serif); font-size: 25rem; line-height: 1; color: rgba(255,255,255,0.03); position: absolute; top: -4rem; left: -2rem; pointer-events: none; }
.test-left .section-label { margin-bottom: 2.5rem; }
.test-quote { font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 300; color: var(--white); line-height: 1.55; font-style: italic; margin-bottom: 2rem; }
.test-author { display: flex; align-items: center; gap: 1rem; }
.test-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; color: var(--ink); font-weight: 600; }
.test-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.test-role { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 0.15rem; }
.test-stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.9rem; margin-bottom: 1.2rem; }
.test-right { padding: 7rem 8%; background: var(--cream); display: flex; flex-direction: column; justify-content: center; }
.test-right .section-title { margin-bottom: 1.5rem; }
.test-right p { color: #3a3530; font-size: 1.05rem; line-height: 1.75; font-weight: 300; margin-bottom: 2.5rem; }
.trust-items { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.trust-item { padding: 1.2rem 1.4rem; border: 1px solid rgba(0,0,0,0.08); border-radius: 2px; }
.trust-num { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--ink); line-height: 1; }
.trust-num span { color: var(--gold); }
.trust-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.12em; }

/* =====================================================
   CTA
   ===================================================== */
.cta-section {
  position: relative; overflow: hidden; padding: 0; height: 520px;
  display: flex; align-items: center;
  width: 100vw; margin-left: calc(-50vw + 50%);
}
.cta-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1600&q=85') center/cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(12,17,23,0.9) 0%, rgba(12,17,23,0.65) 55%, rgba(12,17,23,0.3) 100%); }
.cta-content { position: relative; z-index: 2; padding: 0 8%; max-width: 680px; }
.cta-content .section-title { color: var(--white); margin-bottom: 1.2rem; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.7; font-weight: 300; margin-bottom: 2.5rem; }
.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =====================================================
   CONTACTO
   ===================================================== */
.contact-strip {
  background: var(--ink); padding: 3.5rem 8%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
  width: 100vw; margin-left: calc(-50vw + 50%);
}
.contact-strip-left .label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.6rem; }
.contact-strip-left h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; color: var(--white); }
.contact-items { display: flex; gap: 3rem; flex-wrap: wrap; }
.contact-item a { display: flex; align-items: center; gap: 0.7rem; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 1.05rem; transition: color 0.25s; }
.contact-item a:hover { color: var(--gold-light); }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #080c10; padding: 4rem 8% 2.5rem;
  width: 100vw; margin-left: calc(-50vw + 50%);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { font-family: var(--serif); font-size: 1.6rem; color: var(--white); font-weight: 600; margin-bottom: 1rem; display: block; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 1rem; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 280px; font-weight: 300; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 1rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-col ul a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.8rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.9rem; color: rgba(255,255,255,0.25); }

/* =====================================================
   WHATSAPP FLOTANTE
   ===================================================== */
.whatsapp-float { position: fixed; bottom: 2.2rem; right: 2.2rem; z-index: 9000; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s ease; animation: waPulse 3s ease infinite; }
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float svg { width: 28px !important; height: 28px !important; fill: white !important; display: block !important; }
.wa-label { position: absolute; right: 70px; background: var(--ink); color: white; padding: 0.4rem 0.9rem; font-size: 0.72rem; font-weight: 500; white-space: nowrap; border-radius: 2px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.whatsapp-float:hover .wa-label { opacity: 1; }

/* =====================================================
   RESPONSIVE MÓVIL
   ===================================================== */
@media (max-width: 900px) {
  nav .nav-links { display: none; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card:first-child { grid-column: span 2; grid-row: span 1; min-height: 360px; }
  .cruise-cards { grid-template-columns: 1fr; }
  .cruises-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .experience-strip { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-items { flex-direction: column; gap: 1rem; }
  section { padding: 5rem 6%; }
  .hero-stats { display: none; }
  .trust-items { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: 1; }
  .experience-strip { grid-template-columns: 1fr; }
  .trust-items { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cruises-intro { gap: 2rem; }
}

/* =====================================================
   FIXES WORDPRESS
   ===================================================== */
.entry-header, .entry-header *, h1.entry-title, .wp-block-post-title, .page-title, .post-title { display: none !important; height: 0 !important; min-height: 0 !important; margin: 0 !important; padding: 0 !important; line-height: 0 !important; }
article.page, article.post { padding-top: 0 !important; margin-top: 0 !important; }
.entry-content { padding-top: 0 !important; margin-top: 0 !important; }
body.logged-in .hero, body .hero { margin-top: 0 !important; top: 0 !important; }
header.entry-header, .entry-header.responsive-max-width, .responsive-max-width { display: none !important; height: 0 !important; padding: 0 !important; margin: 0 !important; }
.entry-content > p:empty, .entry-content > p:blank, .post-content > p:empty { display: none !important; height: 0 !important; margin: 0 !important; padding: 0 !important; }
.site-content .entry-content, .content-area .entry-content { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }

/* =====================================================
   EG AGENT — TOGGLE Y CHAT
   ===================================================== */
body { cursor: auto !important; }

#eg-toggle {
  position: fixed !important;
  bottom: 9rem !important;
  right: 2.2rem !important;
  left: auto !important;
  z-index: 999999 !important;
  width: 64px; height: 64px;
  background: #0d2233;
  border: 2px solid #b8923a;
  border-radius: 50%;
  cursor: pointer !important;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2px;
  box-shadow: 0 8px 30px rgba(13,34,51,0.6);
  transition: all 0.3s ease;
  animation: egAgentPulse 3s ease infinite;
  pointer-events: all !important;
}
#eg-toggle:hover { transform: scale(1.08); border-color: #d4a851; }
#eg-toggle .eg-toggle-icon { font-size: 1.5rem; line-height: 1; }
#eg-toggle .eg-toggle-label { font-size: 0.38rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #b8923a; }
#eg-toggle .eg-badge { position: absolute; top: -4px; right: -4px; width: 20px; height: 20px; background: #e74c3c; border-radius: 50%; border: 2px solid #0a0f15; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; color: white; }
@keyframes egAgentPulse { 0%,100% { box-shadow: 0 8px 30px rgba(13,34,51,0.5); } 50% { box-shadow: 0 8px 40px rgba(184,146,58,0.45), 0 0 0 8px rgba(184,146,58,0.08); } }

#eg-chat {
  position: fixed !important;
  bottom: 2.2rem !important;
  right: 2.2rem !important;
  left: auto !important;
  z-index: 999998 !important;
  width: 390px;
  max-height: calc(100vh - 6rem) !important;
  top: auto !important;
  background: #0d2233;
  border: 1px solid rgba(184,146,58,0.3);
  border-radius: 14px;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.65);
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(.16,1,.3,1);
  transform-origin: bottom right;
}
#eg-chat.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }

.eg-chat-header { background: linear-gradient(135deg, #08111a 0%, #0d2233 100%); padding: 0.9rem 1.2rem; border-bottom: 1px solid rgba(184,146,58,0.2); display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.eg-agent-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, #b8923a, #d4a851); display: flex; align-items: center; justify-content: center; font-family: Georgia, serif; font-size: 1.1rem; color: #0c1117; font-weight: 600; position: relative; }
.eg-agent-avatar::after { content: ''; position: absolute; bottom: 1px; right: 1px; width: 11px; height: 11px; background: #2ecc71; border-radius: 50%; border: 2px solid #08111a; }
.eg-agent-info { flex: 1; }
.eg-agent-name { font-family: Georgia, serif; font-size: 1.05rem; font-weight: 600; color: #ffffff; }
.eg-agent-status { font-size: 0.62rem; color: #2ecc71; letter-spacing: 0.08em; font-weight: 500; }
.eg-chat-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.35); font-size: 1.1rem; transition: color 0.2s; padding: 0.2rem; }
.eg-chat-close:hover { color: #b8923a; }

.eg-lang-bar { display: flex; gap: 0; flex-shrink: 0; border-bottom: 1px solid rgba(184,146,58,0.15); }
.eg-lang-btn { flex: 1; padding: 0.5rem; background: transparent; border: none; cursor: pointer; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); transition: all 0.2s; font-family: 'Outfit', sans-serif; }
.eg-lang-btn.active { background: rgba(184,146,58,0.15); color: #d4a851; border-bottom: 2px solid #b8923a; }
.eg-lang-btn:hover:not(.active) { color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.03); }

.eg-score-bar { display: none !important; }

.eg-chat-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.7rem; scroll-behavior: smooth; min-height: 0; }
.eg-chat-messages::-webkit-scrollbar { width: 3px; }
.eg-chat-messages::-webkit-scrollbar-thumb { background: rgba(184,146,58,0.25); border-radius: 2px; }
.eg-msg { display: flex; gap: 0.5rem; align-items: flex-end; animation: egMsgIn 0.3s ease; }
.eg-msg.agent { flex-direction: row; }
.eg-msg.user { flex-direction: row-reverse; }
@keyframes egMsgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.eg-msg-avatar { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, #b8923a, #d4a851); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; color: #0c1117; font-family: Georgia, serif; }
.eg-msg-bubble { max-width: 80%; padding: 0.65rem 0.95rem; border-radius: 12px; font-size: 0.82rem; line-height: 1.6; }
.eg-msg.agent .eg-msg-bubble { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.08); border-bottom-left-radius: 3px; }
.eg-msg.user .eg-msg-bubble { background: linear-gradient(135deg, #b8923a, #d4a851); color: #0c1117; border-bottom-right-radius: 3px; font-weight: 500; }

.eg-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 0.5rem 1rem; flex-shrink: 0; }
.eg-service-btn { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 0.65rem 0.5rem; cursor: pointer; transition: all 0.25s; text-align: center; font-family: 'Outfit', sans-serif; }
.eg-service-btn:hover { background: rgba(184,146,58,0.12); border-color: rgba(184,146,58,0.4); }
.eg-service-btn .eg-svc-icon { font-size: 1.3rem; display: block; margin-bottom: 0.25rem; }
.eg-service-btn .eg-svc-label { font-size: 0.68rem; font-weight: 500; color: rgba(255,255,255,0.75); line-height: 1.3; }

.eg-feedback-form { padding: 0.75rem 1rem; flex-shrink: 0; border-top: 1px solid rgba(184,146,58,0.15); }
.eg-feedback-form textarea { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 0.6rem 0.9rem; color: white; font-size: 0.8rem; font-family: 'Outfit', sans-serif; resize: none; outline: none; line-height: 1.5; min-height: 80px; transition: border 0.2s; }
.eg-feedback-form textarea:focus { border-color: rgba(184,146,58,0.5); }
.eg-feedback-form textarea::placeholder { color: rgba(255,255,255,0.25); }
.eg-feedback-submit { width: 100%; margin-top: 0.5rem; background: linear-gradient(135deg, #b8923a, #d4a851); border: none; border-radius: 8px; padding: 0.65rem; color: #0c1117; font-size: 0.78rem; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif; letter-spacing: 0.05em; }
.eg-feedback-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,146,58,0.4); }

.eg-typing-indicator { display: flex; gap: 4px; align-items: center; padding: 0.65rem 0.9rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; border-bottom-left-radius: 3px; width: fit-content; }
.eg-typing-dot { width: 6px; height: 6px; border-radius: 50%; background: #d4a851; animation: egTypingBounce 1.2s ease infinite; }
.eg-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.eg-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes egTypingBounce { 0%,60%,100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-5px); opacity: 1; } }

.eg-quick-replies { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1rem 0.5rem; flex-shrink: 0; }
.eg-quick-btn { background: transparent; border: 1px solid rgba(184,146,58,0.4); color: #d4a851; padding: 0.35rem 0.8rem; border-radius: 20px; font-size: 0.72rem; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif; }
.eg-quick-btn:hover { background: #b8923a; color: #0c1117; border-color: #b8923a; }
.eg-quick-btn.urgent { border-color: rgba(231,76,60,0.5); color: #ff8a80; }
.eg-quick-btn.urgent:hover { background: #e74c3c; color: white; border-color: #e74c3c; }

.eg-whatsapp-cta { margin: 0 1rem 0.6rem; background: linear-gradient(135deg, #1a7a3e, #25D366); border: none; border-radius: 8px; padding: 0.75rem 1rem; color: white; font-size: 0.8rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 0.6rem; text-decoration: none; transition: all 0.3s; font-family: 'Outfit', sans-serif; justify-content: center; letter-spacing: 0.04em; flex-shrink: 0; }
.eg-whatsapp-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.eg-whatsapp-cta svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }

.eg-chat-input-area { padding: 0.75rem 1rem; border-top: 1px solid rgba(184,146,58,0.12); display: flex; gap: 0.5rem; align-items: center; background: rgba(0,0,0,0.2); flex-shrink: 0; }
.eg-chat-input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); border-radius: 8px; padding: 0.6rem 0.9rem; color: white; font-size: 0.82rem; font-family: 'Outfit', sans-serif; outline: none; transition: border 0.2s; resize: none; line-height: 1.4; max-height: 100px; }
.eg-chat-input::placeholder { color: rgba(255,255,255,0.25); }
.eg-chat-input:focus { border-color: rgba(184,146,58,0.5); }
.eg-send-btn { width: 38px; height: 38px; flex-shrink: 0; background: #b8923a; border: none; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: #0c1117; }
.eg-send-btn:hover { background: #d4a851; transform: scale(1.05); }
.eg-send-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.eg-send-btn svg { width: 16px; height: 16px; }
.eg-chat-brand { padding: 0.35rem; text-align: center; font-size: 0.52rem; color: rgba(255,255,255,0.18); letter-spacing: 0.15em; text-transform: uppercase; flex-shrink: 0; }

.eg-summary-card { margin: 0 1rem 0.6rem; background: rgba(184,146,58,0.08); border: 1px solid rgba(184,146,58,0.3); border-radius: 10px; padding: 0.9rem 1rem; flex-shrink: 0; }
.eg-summary-title { font-size: 0.8rem; font-weight: 700; color: #d4a851; margin-bottom: 0.6rem; letter-spacing: 0.05em; }
.eg-summary-body { font-size: 0.75rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 0.8rem; }
.eg-summary-actions { display: flex; gap: 0.5rem; }
.eg-summary-confirm { flex: 1; background: linear-gradient(135deg, #b8923a, #d4a851); border: none; border-radius: 6px; padding: 0.55rem; color: #0c1117; font-size: 0.72rem; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif; }
.eg-summary-confirm:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(184,146,58,0.4); }
.eg-summary-edit { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 0.55rem 0.8rem; color: rgba(255,255,255,0.6); font-size: 0.72rem; cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif; }
.eg-summary-edit:hover { background: rgba(255,255,255,0.1); color: white; }
.eg-email-sent { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; margin: 0 1rem 0.5rem; background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.3); border-radius: 6px; font-size: 0.72rem; color: #2ecc71; font-weight: 500; flex-shrink: 0; }

@media (max-width: 480px) {
  #eg-chat { width: 100vw !important; right: 0 !important; left: 0 !important; bottom: 0 !important; max-height: 92vh !important; border-radius: 14px 14px 0 0 !important; }
  #eg-toggle { bottom: 6rem !important; right: 1rem !important; }
  .eg-service-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   SECCIÓN PROMOCIONES
   ===================================================== */ 
.promos-section { background: var(--ocean); width: 100vw; margin-left: calc(-50vw + 50%); padding: 7rem 8%; }
.promos-section .section-label { color: var(--gold-light); }
.promos-section .section-title { color: var(--white); margin-bottom: 0.8rem; }
.promos-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 3rem; }
.promos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.promo-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; transition: all 0.35s ease; cursor: pointer; }
.promo-card:hover { border-color: rgba(184,146,58,0.5); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.promo-img { height: 180px; background: url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=600') center/cover no-repeat; }
.promo-body { padding: 1.2rem 1.4rem; }
.promo-top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; flex-wrap: wrap; }
.promo-linea { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.promo-badge { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 2px; background: var(--gold); color: var(--ink); }
.promo-descuento { font-size: 0.6rem; font-weight: 700; padding: 0.15rem 0.5rem; background: rgba(231,76,60,0.2); color: #ff6b6b; border: 1px solid rgba(231,76,60,0.3); border-radius: 2px; }
.promo-barco { font-family: var(--serif); font-size: 1.25rem; color: var(--white); font-weight: 400; margin-bottom: 0.25rem; }
.promo-ruta { font-size: 0.95rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.promo-highlight { font-size: 0.92rem; color: rgba(255,255,255,0.4); line-height: 1.5; margin-bottom: 0.8rem; font-style: italic; }
.promo-meta { display: flex; justify-content: space-between; margin-bottom: 1rem; padding-top: 0.8rem; border-top: 1px solid rgba(255,255,255,0.07); }
.promo-salida { font-size: 0.88rem; color: rgba(255,255,255,0.45); }
.promo-noches { font-size: 0.88rem; color: var(--gold); font-weight: 600; }
.promo-footer { display: flex; align-items: flex-end; justify-content: space-between; }
.promo-precio { display: flex; flex-direction: column; }
.promo-desde { font-size: 0.6rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; }
.promo-amount { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-light); font-weight: 400; line-height: 1.1; }
.promo-mxn { font-size: 0.62rem; color: rgba(255,255,255,0.3); }
.promo-cta { background: transparent; border: 1px solid rgba(184,146,58,0.5); color: var(--gold-light); padding: 0.5rem 1.1rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-decoration: none; border-radius: 2px; transition: all 0.25s; }
.promo-cta:hover { background: var(--gold); color: var(--ink); }
.promo-loading { color: rgba(255,255,255,0.3); text-align: center; padding: 3rem; font-size: 0.85rem; }
.promos-visa-note { background: rgba(184,146,58,0.1); border: 1px solid rgba(184,146,58,0.3); border-radius: 4px; padding: 0.8rem 1.2rem; font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.promos-visa-note strong { color: var(--gold-light); }
@media (max-width: 900px) { .promos-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .promos-grid { grid-template-columns: 1fr; } }


/* =====================================================
   TESTIMONIOS
   ===================================================== */
.testimonials-section {
  background: var(--cream);
  padding: 7rem 5% 5rem;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  margin: 0.6rem 0 1rem;
  line-height: 1.1;
}
.testimonials-title em { font-style: italic; color: var(--gold); }
.testimonials-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 3rem;
}
.testi-card {
  background: var(--white, #fff);
  border: 1px solid rgba(184,146,58,0.15);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(12,17,23,0.1);
}
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testi-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
  quotes: "\201C""\201D";
}
.testi-quote::before { content: open-quote; margin-right: 2px; color: var(--gold); }
.testi-quote::after  { content: close-quote; margin-left: 2px; color: var(--gold); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184,146,58,0.12);
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.testi-trip {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.testi-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.testi-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.testi-trust-item svg { color: var(--gold); }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-trust-row { gap: 1.5rem; }
}

/* =====================================================
   HAMBURGER MENU (MOBILE ≤ 850px)
   ===================================================== */

/* Botón hamburguesa — oculto en desktop */
#hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}
#hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white, #fff);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
/* Animación X al abrir */
#hamburger.ham-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#hamburger.ham-open span:nth-child(2) { transform: scaleX(0); opacity: 0; }
#hamburger.ham-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Overlay oscuro detrás del menú */
#navOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12,17,23,0.6);
  z-index: 900;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#navOverlay.nav-open {
  opacity: 1;
}

@media (max-width: 850px) {
  /* Mostrar hamburguesa */
  #hamburger { display: flex; }
  #navOverlay { display: block; }

  /* Ocultar el CTA del nav en móvil (se duplica en el menú) */
  nav .nav-cta { display: none; }

  /* Menú deslizable desde la derecha */
  #navLinks {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100%;
    background: var(--ink, #0c1117);
    border-left: 1px solid rgba(184,146,58,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2.5rem;
    gap: 0;
    list-style: none;
    z-index: 1000;
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  }
  #navLinks.nav-open {
    transform: translateX(0);
  }
  #navLinks li { width: 100%; }
  #navLinks a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.8) !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
  }
  #navLinks a:hover { color: var(--gold-light, #d4a851) !important; }
  /* CTA dentro del menú abierto */
  #navLinks .nav-cta {
    display: block !important;
    margin-top: 1.5rem;
    text-align: center;
    background: var(--gold, #b8923a);
    color: var(--ink, #0c1117) !important;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border: none;
    border-bottom: none;
  }
}

/* =====================================================
   LEAD CAPTURE FORM (antes del CTA de WhatsApp)
   ===================================================== */
.lead-section {
  background: var(--ocean, #0d2233);
  padding: 5rem 5%;
}
.lead-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.lead-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.lead-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white, #fff);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.lead-title em { font-style: italic; color: var(--gold); }
.lead-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
  margin-bottom: 1.2rem;
}
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,146,58,0.3);
  border-radius: 3px;
  color: var(--white, #fff);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
}
.lead-form input:focus,
.lead-form select:focus { border-color: var(--gold); }
.lead-form input::placeholder { color: rgba(255,255,255,0.35); }
.lead-form select option { background: var(--ink, #0c1117); }
.lead-form-full { grid-column: 1 / -1; }
.lead-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--ink, #0c1117);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  grid-column: 1 / -1;
}
.lead-submit:hover { background: var(--gold-light, #d4a851); transform: translateY(-2px); }
.lead-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.8rem;
}
@media (max-width: 600px) {
  .lead-form { grid-template-columns: 1fr; }
}