/* ============================================================
   ELITE SEA CLUB — style.css (VERSIÓN LIMPIA Y DEFINITIVA)
   Paleta: Blanco + Gris claro + Navy + Bronce/Dorado
   ============================================================ */

/* --- TOKENS --- */
:root {
  --navy:    #0a2540;
  --navy2:   #0d2d4e;
  --white:   #ffffff;
  --gray-50: #f8f9fa;
  --gray-100:#f0f2f4;
  --gray-700:#4a5568;
  --gold:    #b8944a;
  --gold2:   #c9a55a;
  --text:    #1a2e42;
  --muted:   #6b7a8d;
  --border:  rgba(10,37,64,0.10);

  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --t200:    200ms var(--ease);
  --t400:    400ms var(--ease);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-size: 17px;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(10,37,64,1);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,148,74,0.2);
  transition: background var(--t400), box-shadow var(--t400);
}
nav.scrolled {
  background: rgba(10,37,64,1);
  box-shadow: 0 2px 24px rgba(10,37,64,0.25);
  border-bottom-color: rgba(184,148,74,0.3);
}
.nav-logo img {
  width: auto;
  height: 90px;
  max-width: none !important;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  margin-left: -1rem;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-right: 0.9rem;
}
.nav-brand-name {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav-brand-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  transition: color var(--t200);
}
.nav-links a:hover { color: var(--gold); }
.nav-brand-mobile {
  display: none;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand-mobile .nav-brand-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav-brand-mobile .nav-brand-sub {
  font-size: 0.55rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .nav-brand-mobile { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.65) 0%, rgba(10,37,64,0.45) 45%, rgba(10,37,64,0.80) 100%);
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.5s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.8s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1s forwards;
}
.btn-primary {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  transition: background var(--t200), transform var(--t200);
  display: inline-block;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-secondary {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: border-color var(--t200), background var(--t200);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-navy {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  transition: background var(--t200), transform var(--t200);
}
.btn-navy:hover { background: var(--navy2); transform: translateY(-1px); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.5s forwards;
  text-decoration: none;
  text-align: center;
  width: 160px;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(8px); opacity: 1; }
}
.hero-scroll-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(184,148,74,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}
.hero-scroll:hover .hero-scroll-circle {
  border-color: var(--gold);
  background: rgba(184,148,74,0.15);
  box-shadow: 0 0 20px rgba(184,148,74,0.3);
}
.hero-scroll-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  text-align: center;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.bg-white   { background: var(--white); }
.bg-light   { background: var(--gray-50); }
.bg-navy    { background: var(--navy); }

.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.divider-center { margin: 1rem auto 1.5rem; }

.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  max-width: 680px;
}
.section-subtitle.white { color: rgba(255,255,255,0.8); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .divider { margin: 1rem auto 1.5rem; }

/* ============================================================
   NUMBERS STRIP
   ============================================================ */
.numbers-strip {
  background: #f8f5f0;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.number-item {
  text-align: center;
  padding: 1rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.number-item + .number-item::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(10,37,64,0.15);
}
.number-value {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.number-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 300;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(10,37,64,0.15);
}
.about-visual-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.about-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,37,64,0.8) 100%);
}
.about-visual-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: var(--navy);
  color: var(--white);
}
.about-visual-caption p {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}
.about-visual-caption span { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; }
.about-quote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
}
.about-pillars { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.pillar-text { font-size: 0.88rem; color: var(--gray-700); line-height: 1.6; }
.pillar-text strong { display: block; color: var(--navy); font-weight: 500; margin-bottom: 0.2rem; font-size: 0.92rem; }

/* ============================================================
   Sección Por qué ESC — tarjetas unificadas con estilo Impact
   ============================================================ */
.why-esc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
#why-esc .why-esc-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(10,37,64,0.06);
}
#why-esc .why-esc-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,37,64,0.12);
}
#why-esc .why-esc-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
#why-esc .why-esc-item h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
#why-esc .why-esc-item p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
}
@media (max-width: 700px) {
  .why-esc-grid { grid-template-columns: 1fr; }
}

/* Para que la sección tenga altura completa y centrado vertical */
#why-esc {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================================
   EXPERIENCES (TARJETAS TRANSPARENTES)
   ============================================================ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1100px;
  padding: 0;
}
.exp-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 148, 74, 0.2);
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  overflow: hidden;
}
.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: rgba(184, 148, 74, 0.5);
}
.exp-card .exp-card-content {
  padding: 2rem;
  text-align: center;
}
.exp-card .exp-tag {
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.exp-card .exp-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin: 0.5rem 0;
  line-height: 1.2;
}
.exp-card .exp-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 1rem 0;
}
.exp-card .exp-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0;
}
.exp-card .exp-meta-pills span {
  font-size: 0.7rem;
  background: rgba(0,0,0,0.3);
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.exp-card .exp-cta {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 0.5rem;
  transition: letter-spacing 0.2s;
  display: inline-block;
}
.exp-card:hover .exp-cta {
  letter-spacing: 0.2em;
}
@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest-list { margin-top: 2.5rem; display: flex; flex-direction: column; }
.dest-item {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--t200);
  position: relative;
}
.dest-item:first-child { border-top: 1px solid var(--border); }
.dest-item::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.dest-item:hover::after { transform: scaleX(1); }
.dest-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--gold); opacity: 0.4; transition: opacity var(--t200); }
.dest-item:hover .dest-num { opacity: 1; }
.dest-info h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 0.25rem; transition: color var(--t200); }
.dest-item:hover .dest-info h3 { color: var(--gold); }
.dest-info p { font-size: 0.82rem; color: var(--muted); }
.dest-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: flex-end; }
.dest-tag { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); border-radius: 4px; padding: 0.25rem 0.7rem; }
.dest-arrow { color: var(--gold); opacity: 0; transform: translateX(-8px); transition: opacity var(--t200), transform var(--t200); }
.dest-item:hover .dest-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   MEMBERSHIP
   ============================================================ */
.membership-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.mem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: box-shadow var(--t400), transform var(--t400);
  box-shadow: 0 4px 16px rgba(10,37,64,0.06);
  text-decoration: none;
  display: block;
}
.mem-card:hover { box-shadow: 0 12px 40px rgba(10,37,64,0.12); transform: translateY(-4px); }
.mem-card.featured { border: 2px solid var(--gold); }
.mem-card.featured::before {
  content: 'Más solicitado';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.3rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  font-weight: 500;
}
.mem-tier { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; font-weight: 500; }
.mem-name { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.mem-desc { font-size: 0.88rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 1.5rem; }
.mem-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.mem-benefits { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.mem-benefits li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.85rem; color: var(--gray-700); line-height: 1.5; }
.mem-benefits li::before {
  content: '';
  width: 18px; height: 18px;
  min-width: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23b8944a' opacity='.15'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='%23b8944a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}
.mem-cta { display: block; text-align: center; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.85rem 1.5rem; border-radius: 4px; font-weight: 500; transition: all var(--t200); }
.mem-cta-ghost { color: var(--navy); border: 1px solid var(--border); background: var(--gray-50); }
.mem-cta-ghost:hover { border-color: var(--gold); color: var(--gold); }
.mem-cta-solid { color: var(--navy); background: var(--gold); }
.mem-cta-solid:hover { background: var(--gold2); transform: translateY(-1px); }
.mem-note { text-align: center; margin-top: 2rem; font-size: 0.8rem; color: var(--muted); font-style: italic; }

/* ============================================================
   COMMUNITY / TESTIMONIALS (TARJETAS TRANSPARENTES)
   ============================================================ */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.member-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 148, 74, 0.2);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: rgba(184, 148, 74, 0.5);
}
.member-quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: -1rem;
}
.member-quote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.member-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
}
.member-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  flex-shrink: 0;
}
.member-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.member-role strong {
  display: block;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.85rem;
}

/* ============================================================
   IMPACT — FONDO BLANCO, TEXTOS OSCUROS, NÚMEROS DORADOS
   (con los selectores correctos: .impact-item)
   ============================================================ */
#impact {
  background: var(--white);
}
#impact .section-title {
  color: var(--navy);
}
#impact .section-title em {
  color: var(--gold);
}
#impact .section-subtitle {
  color: var(--gray-700);
}
#impact .section-label {
  color: var(--gold);
}
#impact .divider {
  background: var(--gold);
}

/* Grid y tarjetas */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.impact-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(10,37,64,0.06);
}
.impact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,37,64,0.12);
}
.impact-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
  opacity: 1; /* dorado fuerte */
}
.impact-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);  /* azul marino oscuro */
  margin-bottom: 0.75rem;
}
.impact-item p {
  font-size: 0.85rem;
  color: var(--gray-700); /* gris oscuro legible */
  line-height: 1.7;
}
/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1.25rem 0; background: none; border: none; cursor: pointer; text-align: left; gap: 1rem; }
.faq-question { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--navy); }
.faq-icon { color: var(--gold); font-size: 1.4rem; line-height: 1; flex-shrink: 0; transition: transform var(--t200); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding var(--t200); }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.25rem; }
.faq-answer p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.8; }
.faq-section-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 2rem 0 0.75rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold);
}
.faq-section-title:first-of-type { margin-top: 0; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { position: relative; padding: 7rem 2rem; overflow: hidden; }
.cta-final-bg { position: absolute; inset: 0; background: url('images/hero-bg.jpg') center/cover no-repeat; z-index: 0; }
.cta-final-overlay { position: absolute; inset: 0; background: rgba(10,37,64,0.82); z-index: 1; }
.cta-final-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-final-content h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; color: var(--white); margin-bottom: 1rem; }
.cta-final-content .divider { margin: 1rem auto 1.5rem; background: var(--gold); }
.cta-final-content p { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 2rem; }

/* ============================================================
   APPLY FORM
   ============================================================ */
.apply-inner { max-width: 680px; margin: 0 auto; }
.apply-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.1; }
.apply-subtitle { font-size: 0.92rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 2.5rem; }
.apply-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.form-input, .form-select, .form-textarea {
  background: var(--white);
  border: 1px solid rgba(10,37,64,0.2);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--t200);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: 0.7; }
.form-select option { background: var(--white); color: var(--navy); }
.form-textarea { resize: none; height: 110px; }
.form-divider { height: 1px; background: var(--border); margin: 0.25rem 0; }
.form-submit { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 1rem 2rem; border-radius: 4px; border: none; cursor: pointer; font-weight: 500; transition: all var(--t200); width: 100%; margin-top: 0.5rem; }
.form-submit:hover { background: var(--gold2); transform: translateY(-1px); }
.form-note { text-align: center; font-size: 0.78rem; color: var(--muted); font-style: italic; }

/* ============================================================
   LOGBOOK
   ============================================================ */
#logbook { background: var(--navy); }
#logbook .section-label { color: var(--gold); }
#logbook .section-title { color: var(--white) !important; }
#logbook .section-title em { color: var(--gold); }
#logbook .divider { background: var(--gold); }
#logbook .section-subtitle { color: rgba(255,255,255,0.8); }
#logbook .log-entry { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); border-left-color: var(--gold); }
#logbook .log-entry:hover { background: rgba(255,255,255,0.1); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
#logbook .log-date { color: rgba(255,255,255,0.5); }
#logbook .log-title { color: var(--white); }
#logbook .log-desc { color: rgba(255,255,255,0.7); }

/* ============================================================
   FLEET
   ============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
  max-width: 100%;
  padding: 0 1rem;
}
.section-intro {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 1rem;
}
.fleet-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  margin-top: 2rem;
}
.fleet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  border-top: 3px solid var(--gold);
  transition: box-shadow var(--t400), transform var(--t400);
  box-shadow: 0 4px 16px rgba(10,37,64,0.06);
  display: flex;
  flex-direction: column;
}
.fleet-card:hover { box-shadow: 0 12px 40px rgba(10,37,64,0.12); transform: translateY(-4px); }
.fleet-img-container { width: 100%; height: 260px; overflow: hidden; border-radius: 6px; margin-bottom: 1rem; background: linear-gradient(135deg, var(--navy), #1a4a7a); }
.fleet-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform var(--t400); }
.fleet-card:hover .fleet-img { transform: scale(1.05); }
.fleet-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; line-height: 1.2; }
.fleet-type { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; font-weight: 500; }
.fleet-desc { font-size: 0.78rem; color: var(--gray-700); line-height: 1.55; margin-bottom: 0.6rem; flex-grow: 1; }
.fleet-dest { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border-top: 1px solid var(--border); padding-top: 0.6rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navy); padding: 5rem 2rem 2.5rem; color: #ffffff; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 2rem; }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--white); margin-bottom: 1rem; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; max-width: 280px; margin-bottom: 1.5rem; }
.footer-col { display: flex; flex-direction: column; }
.footer-col h5 { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; font-weight: 500; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--t200); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.4); transition: color var(--t200); }
.footer-legal a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: border-color var(--t200), color var(--t200); }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop { position: fixed; bottom: 2rem; right: 2rem; z-index: 99; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s, background 0.2s; box-shadow: 0 4px 20px rgba(184,148,74,0.35); }
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--gold2); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) and (min-width: 601px) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
  .reveal.visible { 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; }
  .reveal-delay-5 { transition-delay: 0.5s; }
}

/* ============================================================
   HERO UPDATES
   ============================================================ */
.navy-eyebrow { color: var(--white) !important; font-weight: 600; font-size: 0.75rem !important; }
.navy-eyebrow::before, .navy-eyebrow::after { background: var(--white) !important; }
.hero h1 { color: var(--white) !important; font-weight: 700; }
.hero-sub-bold { font-size: 1.1rem !important; font-weight: 500 !important; color: rgba(255,255,255,0.90) !important; letter-spacing: 0.01em; }

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a { cursor: pointer; }
.dropdown {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(10,37,64,0.12);
  min-width: 220px;
  list-style: none;
  padding: 0.5rem 0;
  z-index: 200;
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  width: 10px; height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}
.nav-item-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 0.5rem; background: transparent; }
.dropdown li a { display: block; padding: 0.6rem 1.25rem; font-size: 0.78rem !important; color: var(--navy) !important; opacity: 1 !important; letter-spacing: 0.06em; text-transform: none !important; transition: background var(--t200), color var(--t200); font-weight: 400 !important; }
.dropdown li a:hover { background: var(--gray-50); color: var(--gold) !important; }
.nav-item-dropdown:hover .dropdown { visibility: visible; opacity: 1; pointer-events: auto; }

/* ============================================================
   DESTINATIONS — NAVY BACKGROUND
   ============================================================ */
#destinations .section-label { color: var(--gold); }
#destinations .section-title { color: var(--white); font-size: clamp(2rem, 4vw, 3.5rem); }
#destinations .section-title em { color: var(--gold); }
#destinations .section-subtitle { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
#destinations .divider { background: var(--gold); }
#destinations .dest-item { border-bottom-color: rgba(255,255,255,0.12); }
#destinations .dest-item:first-child { border-top-color: rgba(255,255,255,0.12); }
#destinations .dest-item::after { background: var(--gold); }
#destinations .dest-num { color: var(--gold); opacity: 0.5; }
#destinations .dest-item:hover .dest-num { opacity: 1; }
#destinations .dest-info h3 { color: var(--white); font-size: 1.65rem; }
#destinations .dest-item:hover .dest-info h3 { color: var(--gold); }
#destinations .dest-info p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
#destinations .dest-tag { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.2); font-size: 0.65rem; }

/* ============================================================
   MEMBERSHIP — NAVY CARDS
   ============================================================ */
#membership { background: var(--gray-50); }
#membership .section-title, #membership .section-subtitle { color: var(--navy); }
#membership .section-label { color: var(--muted); }
#membership .divider { background: var(--gold); }
#membership .mem-note { color: var(--muted); }
#membership .mem-card { background: var(--navy); border-color: rgba(184,148,74,0.2); box-shadow: 0 4px 20px rgba(10,37,64,0.12); }
#membership .mem-card:hover { background: var(--navy); border-color: var(--gold); box-shadow: 0 12px 40px rgba(10,37,64,0.25); transform: translateY(-4px); }
#membership .mem-card.featured { background: var(--navy); border-color: var(--gold); border-width: 2px; }
#membership .mem-name { color: var(--gold); }
#membership .mem-tier { color: rgba(255,255,255,0.6); }
#membership .mem-desc { color: rgba(255,255,255,0.75); }
#membership .mem-divider { background: rgba(255,255,255,0.12); }
#membership .mem-benefits li { color: rgba(255,255,255,0.8); }
#membership .mem-cta-ghost { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); background: transparent; }
#membership .mem-cta-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   COMMUNITY — TARJETAS TRANSPARENTES (como process-step)
   ============================================================ */
#community { background: var(--white); }
#community .section-title, #community .section-subtitle { color: var(--navy); }
#community .section-label { color: var(--muted); }
#community .divider { background: var(--gold); }
#community .member-card {
  background: rgba(255, 255, 255, 0.06); /* transparente, igual que process-step */
  border-color: rgba(184,148,74,0.2);
  box-shadow: 0 4px 20px rgba(10,37,64,0.12);
}
#community .member-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(10,37,64,0.25);
  transform: translateY(-4px);
}
#community .member-quote-mark { color: var(--gold); opacity: 0.5; }
#community .member-quote { color: rgba(255,255,255,0.9); }
#community .member-info { border-top-color: rgba(255,255,255,0.15); }
#community .member-role { color: rgba(255,255,255,0.7); }
#community .member-role strong { color: var(--gold); }

/* ============================================================
   FAQ — NAVY BACKGROUND
   ============================================================ */
#faq .section-label { color: var(--gold); }
#faq .section-title { color: var(--white); }
#faq .section-title em { color: var(--gold); }
#faq .section-subtitle { color: rgba(255,255,255,0.75); }
#faq .divider { background: var(--gold); }
#faq .faq-item { border-bottom-color: rgba(255,255,255,0.12); }
#faq .faq-item:first-child { border-top-color: rgba(255,255,255,0.12); }
#faq .faq-question { color: var(--white); }
#faq .faq-answer p { color: rgba(255,255,255,0.75); }

/* ============================================================
   APPLY FORM — NAVY
   ============================================================ */
.apply-form-navy { background: var(--navy); border-radius: 8px; padding: 2.5rem; box-shadow: 0 8px 40px rgba(10,37,64,0.15); }
.apply-form-navy .form-label { color: var(--gold); }
.apply-form-navy .form-input, .apply-form-navy .form-select, .apply-form-navy .form-textarea { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--white); }
.apply-form-navy .form-input:focus, .apply-form-navy .form-select:focus, .apply-form-navy .form-textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.apply-form-navy .form-input::placeholder, .apply-form-navy .form-textarea::placeholder { color: rgba(255,255,255,0.35); }
.apply-form-navy .form-select option { background: var(--navy); color: var(--white); }
.apply-form-navy .form-divider { background: rgba(255,255,255,0.12); }
.apply-form-navy .form-note { color: rgba(255,255,255,0.5); }

/* ============================================================
   NAV MÓVIL — HAMBURGUESA
   ============================================================ */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; cursor: pointer; z-index: 110; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   PLATFORMS GRID
   ============================================================ */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1200px;
}
.platform-card {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 1.75rem 1.5rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(10,37,64,0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}
.platform-card:hover { box-shadow: 0 12px 40px rgba(10,37,64,0.12); transform: translateY(-4px); }
.platform-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.platform-subtitle { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; font-weight: 500; }
.platform-divider { height: 1px; background: var(--border); margin-bottom: 1rem; }
.platform-desc { font-size: 0.88rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 1.25rem; }
.platform-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.82rem; color: var(--muted); flex-grow: 1; }
.platform-features li { padding: 0.3rem 0; border-bottom: 1px solid var(--border); }
.platform-features li:last-child { border-bottom: none; }
.platform-features li::before { content: '→ '; color: var(--gold); font-weight: bold; }

/* ============================================================
   STEPS GRID
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.step-card { text-align: center; padding: 2rem 1.5rem; background: var(--gray-50); border-radius: 8px; border: 1px solid var(--border); }
.step-num { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 1rem; opacity: 0.6; }
.step-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--navy); margin-bottom: 0.75rem; }
.step-card p { font-size: 0.90rem; color: var(--gray-700); line-height: 1.7; }

/* ============================================================
   LOGBOOK GRID
   ============================================================ */
.logbook-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.log-entry { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; border-left: 3px solid var(--gold); transition: box-shadow var(--t400), transform var(--t400); box-shadow: 0 4px 16px rgba(10,37,64,0.06); }
.log-entry:hover { box-shadow: 0 12px 40px rgba(10,37,64,0.10); transform: translateY(-3px); }
.log-date { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.log-status { display: inline-block; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 4px; margin-bottom: 1rem; font-weight: 500; }
.log-status.completed { color: #2e7d52; background: rgba(46,125,82,0.1); border: 1px solid rgba(46,125,82,0.25); }
.log-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.3; }
.log-desc { font-size: 0.85rem; color: var(--gray-700); line-height: 1.7; }

/* ============================================================
   COMPARISON GRID
   ============================================================ */
.comparison-grid { max-width: 900px; margin: 2.5rem auto 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.comp-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.comp-row:last-child { border-bottom: none; }
.comp-row.header { background: var(--navy); }
.comp-row.header .comp-cell { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }
.comp-cell { padding: 1rem 1.25rem; font-size: 0.85rem; color: var(--gray-700); border-right: 1px solid var(--border); display: flex; align-items: center; }
.comp-cell:last-child { border-right: none; }
.comp-cell.label { color: var(--navy); font-weight: 500; }
.comp-row:nth-child(even) { background: var(--gray-50); }

/* ============================================================
   EXP DETAIL GRID
   ============================================================ */
.exp-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; }
.exp-detail-grid h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--navy); margin-bottom: 0.75rem; }
.exp-detail-grid p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.8; }
.exp-detail-grid p strong { color: var(--navy); }

/* ============================================================
   DROPDOWN MOBILE — FIX MENÚ HAMBURGUESA
   ============================================================ */
@media (max-width: 768px) {
  .dropdown {
    display: none !important;
    position: static !important;
    background: rgba(255,255,255,0.05) !important;
    padding: 0.5rem 0 !important;
    border: none !important;
    box-shadow: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .nav-item-dropdown.active .dropdown {
    display: block !important;
  }
  .dropdown::before { display: none; }
  .dropdown li { width: 100%; }
  .dropdown li a { color: rgba(255,255,255,0.7) !important; font-size: 0.78rem !important; padding: 0.5rem 1.5rem !important; }
  .dropdown li a:hover { color: var(--gold) !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); max-width: 90%; }
}
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .section { padding: 4rem 1.25rem; }
  .numbers-strip { grid-template-columns: repeat(2, 1fr); padding: 2.5rem 1.25rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { aspect-ratio: 3/2; max-height: 320px; }
  .about-visual-caption p { font-size: 0.88rem; }
  .about-visual-caption span { font-size: 0.68rem; }
  .membership-cards { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .community-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .dest-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .dest-tags { display: none; }
  .dest-arrow { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .logbook-grid { grid-template-columns: 1fr; }
  .exp-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-hamburger { display: flex; }
  .nav-brand { display: none; }
  .nav-right { justify-content: flex-end; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--navy);
    padding: 5rem 2rem 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 105;
    margin-left: 0;
    box-shadow: 0 8px 40px rgba(10,37,64,0.2);
    overflow-y: auto;
    max-height: 100vh;
  }
  .nav-links.open { display: flex; }
  .nav-links.open a { color: rgba(255,255,255,0.85) !important; opacity: 1 !important; font-size: 0.85rem !important; padding: 1rem 0; display: block; width: 100%; }
  .nav-links.open a:hover { color: var(--gold) !important; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta { display: none; }
  .comp-row { grid-template-columns: 1fr; }
  .comp-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .comparison-grid { display: none; }
}
@media (max-width: 768px) {
  nav { height: 80px; padding: 0 1rem; }
  .nav-logo img { height: 80px !important; }
  .nav-brand-name { font-size: 1.1rem; }
  footer { padding: 2.5rem 1rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding-top: 1rem; }
  .footer-legal { gap: 1rem; }
}
@media (max-width: 600px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-img-container { height: 200px; }
  .numbers-strip { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem auto; }
}

/* ============================================================
   PROCESO 7 PASOS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.process-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 148, 74, 0.2);
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: rgba(184, 148, 74, 0.5);
}
.step-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}
.step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PÚBLICO OBJETIVO
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.audience-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.audience-item:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(184, 148, 74, 0.15);
  border-left-color: var(--gold);
  box-shadow: 0 8px 32px rgba(184, 148, 74, 0.2);
  color: #fff;
}
@media (max-width: 600px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BACKGROUND DOSSIER (overlays y centrado vertical)
   ============================================================ */
.bg-dossier {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 3rem 0;
  box-sizing: border-box;
}
.bg-dossier::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 37, 64, 0.80);
  z-index: 0;
}
.bg-dossier .container,
.bg-dossier .section-inner,
.bg-dossier .faq-category,
.bg-dossier .faq-list,
.bg-dossier > .text-center,
.bg-dossier > div {
  position: relative;
  z-index: 2;
}
.bg-dossier .section-title { color: #fff !important; }
.bg-dossier .section-title em { color: var(--gold) !important; }
.bg-dossier .section-subtitle { color: rgba(255,255,255,0.8) !important; }
.bg-dossier .section-label { color: var(--gold) !important; }
.bg-dossier .divider { background: var(--gold) !important; }
.bg-dossier p { color: rgba(255,255,255,0.75); }
.bg-dossier h3 { color: #fff; }

/* Overlays personalizables */
.bg-dossier.overlay-light::before { background: rgba(10, 37, 64, 0.60); }
.bg-dossier.overlay-medium::before { background: rgba(10, 37, 64, 0.75); }
.bg-dossier.overlay-dark::before { background: rgba(10, 37, 64, 0.90); }
.bg-dossier.overlay-15::before { background: rgba(10, 37, 64, 0.15); }
.bg-dossier.overlay-85::before { background: rgba(10, 37, 64, 0.85); }

/* Responsive para bg-dossier */
@media (max-width: 768px) {
  .bg-dossier {
    padding: 2rem 0;
  }
}
.bg-dossier {
  display: flex;
  flex-direction: column;
  justify-content: center;
}