/* ══════════════════════════════════════════════════════════════
   EXCLIVIA — LANDING PAGE CSS
   Paleta: Obsidian #05040a | Gold #c9a84c | Cream #f2e4c8
══════════════════════════════════════════════════════════════ */

/* ══ CUSTOM CURSOR ══ */
body.landing-page { cursor: none; }
.exc-cursor {
  width: 8px; height: 8px;
  background: var(--brand-gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: screen;
  transition: transform .14s;
}
.exc-cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: left .28s, top .28s, border-color .3s, transform .3s;
}

/* ══ NAV ══ */
.landing-page nav,
.landing-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  background: rgba(5, 4, 10, 0.45);
  backdrop-filter: blur(28px) saturate(180%) brightness(0.9);
  -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(0.9);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow:
    0 1px 0 rgba(201, 168, 76, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
/* ── LOGO ── */
.exc-logo {
  font-family: var(--font-family-serif, 'Cormorant Garamond', serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  line-height: 1;
  display: inline-block;
}
.exc-logo .l-gold { color: var(--brand-gold, #c9a84c); font-style: italic; }
.exc-logo .l-white { color: #ffffff; font-weight: 300; font-style: normal; }

/* Tamaño footer */
.landing-footer .exc-logo { font-size: 22px; }

/* Tamaño login branding */
.login-brand-name.exc-logo { font-size: 26px; }

/* Compatibilidad con clases antiguas */
.landing-logo { text-decoration: none; }
.landing-nav-r { display: flex; gap: 10px; }
.landing-nav-link {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(242,228,200,.55); padding: 9px 20px;
  text-decoration: none; transition: color .3s;
}
.landing-nav-link:hover { color: var(--brand-gold); }
.landing-nav-cta {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brand-black); background: var(--brand-gold);
  padding: 9px 22px; text-decoration: none;
  font-weight: 500; transition: all .3s;
}
.landing-nav-cta:hover {
  background: var(--brand-gold-2);
  box-shadow: 0 0 24px rgba(201,168,76,.3);
  color: var(--brand-black);
}

/* ══ SECTION BASE ══ */
.landing-page section {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

/* ══ ANIMATIONS ══ */
@keyframes exc-fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes exc-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes exc-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .45; }
}
@keyframes exc-rP {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .6; }
  50%      { transform: translate(-50%,-50%) scale(1.08); opacity: 1; }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left panel */
.hero-l {
  position: relative; overflow: hidden;
  background: var(--brand-black);
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 60px 80px;
  z-index: 2;
}
.hero-l::after {
  content: ''; position: absolute;
  top: 0; right: -60px; bottom: 0; width: 120px;
  background: linear-gradient(90deg, var(--brand-black), transparent);
  pointer-events: none; z-index: 10;
}

.h-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 32px;
  font-size: 8px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--brand-gold);
  background: var(--brand-gold-4); border: 1px solid var(--brand-gold-3);
  backdrop-filter: blur(8px); padding: 9px 18px; width: fit-content;
}
.h-eyebrow::before { content: '✦'; font-size: 7px; }

.hero-l h1 {
  font-family: var(--font-family-serif);
  font-size: clamp(58px,6.5vw,90px);
  font-weight: 400; line-height: .9;
  color: #fff; letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero-l h1 i { font-style: italic; color: var(--brand-gold); display: block; }

.h-sub {
  font-size: 14px; line-height: 1.95;
  color: rgba(242,228,200,.45);
  max-width: 360px; margin-bottom: 40px; font-weight: 300;
}

/* CTA row */
.h-cta { display: flex; gap: 12px; align-items: center; margin-bottom: 44px; }

.btn-pr {
  background: var(--brand-gold); color: var(--brand-black);
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  padding: 15px 36px; border: none; cursor: pointer; font-weight: 500;
  text-decoration: none; display: inline-block;
  transition: all .3s; position: relative; overflow: hidden;
}
.btn-pr::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-110%); transition: transform .55s;
}
.btn-pr:hover::after { transform: translateX(110%); }
.btn-pr:hover {
  background: var(--brand-gold-2);
  box-shadow: 0 0 40px rgba(201,168,76,.28);
  color: var(--brand-black);
}

.btn-sc {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(242,228,200,.55);
  border: 1px solid rgba(242,228,200,.14);
  padding: 14px 26px; text-decoration: none;
  transition: all .3s; backdrop-filter: blur(6px);
}
.btn-sc:hover { color: var(--brand-gold); border-color: var(--brand-gold); background: rgba(201,168,76,.04); }

/* stat strip */
.h-strip {
  display: flex;
  background: var(--brand-glass); backdrop-filter: blur(14px);
  border: 1px solid var(--brand-gold-3); width: fit-content;
}
.hs { padding: 13px 22px; border-right: 1px solid var(--brand-gold-3); text-align: center; }
.hs:last-child { border: none; }
.hs-n { font-family: var(--font-family-serif); font-size: 26px; font-weight: 400; color: var(--brand-gold); line-height: 1; }
.hs-l { font-size: 7px; letter-spacing: 4px; text-transform: uppercase; color: var(--brand-muted); margin-top: 2px; }

/* Entry animations */
.hero-l .h-eyebrow { animation: exc-fadeUp .9s ease .1s both; }
.hero-l h1         { animation: exc-fadeUp .9s ease .18s both; }
.hero-l .h-sub     { animation: exc-fadeUp .9s ease .25s both; }
.hero-l .h-cta     { animation: exc-fadeUp .9s ease .3s both; }
.hero-l .h-strip   { animation: exc-fadeUp .9s ease .4s both; }
.hero-r            { animation: exc-fadeIn 1.2s ease .3s both; }

/* Right panel – mosaic */
.hero-r {
  position: relative; overflow: hidden;
  background: var(--brand-dark);
}
.hero-r::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 80px;
  background: linear-gradient(90deg, var(--brand-black), transparent);
  z-index: 10; pointer-events: none;
}
.mosaic {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(3,1fr);
  gap: 3px; height: 100vh;
  padding-top: 72px;
}
.mc { position: relative; overflow: hidden; cursor: pointer; }
.mc img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.58) saturate(.7);
  transition: filter .6s, transform .6s;
}
.mc:hover img { filter: brightness(.4) saturate(.5); transform: scale(1.05); }
.mc-grad { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,4,10,.92) 0%, transparent 45%); }
.mc-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: rgba(5,4,10,.6); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,.1);
  display: flex; justify-content: space-between; align-items: center;
  transform: translateY(100%); transition: transform .35s;
}
.mc:hover .mc-info { transform: translateY(0); }
.mc-name { font-family: var(--font-family-serif); font-size: 15px; color: #fff; font-weight: 400; }
.mc-tag {
  font-size: 7px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--brand-gold);
  background: rgba(201,168,76,.1); border: 1px solid var(--brand-gold-3); padding: 3px 8px;
}
.mc-big { grid-column: span 2; grid-row: span 2; }

/* live badge */
.live-badge {
  position: absolute; bottom: 28px; right: 28px; z-index: 20;
  background: rgba(5,4,10,.88); backdrop-filter: blur(14px);
  border: 1px solid var(--brand-gold-3); padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--brand-cream);
}
.ldot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,.7);
  animation: exc-pulse 2s infinite; flex-shrink: 0;
}

/* ══════════════════════════════
   ESCUDO DE PRIVACIDAD
══════════════════════════════ */
#escudo {
  background: var(--brand-dark);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
#escudo::before {
  content: ''; position: absolute;
  top: 0; left: 60px; right: 60px; height: 1px;
  background: var(--brand-line);
}
.esc-glow {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,.07), transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.esc-l {
  padding: 120px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.exc-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  font-size: 8px; letter-spacing: 5px; text-transform: uppercase; color: var(--brand-gold);
  background: linear-gradient(135deg, rgba(201,168,76,.14), rgba(201,168,76,.04));
  border: 1px solid var(--brand-gold-3); backdrop-filter: blur(10px);
  padding: 10px 18px; width: fit-content;
}
.slbl {
  font-size: 8px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--brand-gold); display: flex; align-items: center; gap: 9px; margin-bottom: 14px;
}
.slbl::before { content: ''; width: 16px; height: 1px; background: var(--brand-gold); }
.sttl {
  font-family: var(--font-family-serif);
  font-size: clamp(38px,4.5vw,60px); font-weight: 400;
  color: #fff; line-height: .95; margin-bottom: 20px; letter-spacing: -.5px;
}
.sttl i { font-style: italic; color: var(--brand-gold); }
.sdesc { font-size: 14px; line-height: 1.95; color: rgba(242,228,200,.45); max-width: 400px; margin-bottom: 32px; }
.esc-rows { display: flex; flex-direction: column; gap: 2px; margin-bottom: 36px; }
.esc-row {
  display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px;
  background: var(--brand-glass); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.05); transition: border-color .3s;
}
.esc-row:hover { border-color: var(--brand-gold-3); }
.esc-ico {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--brand-gold-4); border: 1px solid var(--brand-gold-3);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.esc-row h5 { font-family: var(--font-family-serif); font-size: 16px; font-weight: 400; color: #fff; margin-bottom: 2px; }
.esc-row p  { font-size: 11px; line-height: 1.7; color: var(--brand-muted); }

/* Map UI */
.esc-r {
  padding: 80px 60px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.map-card {
  width: 100%; max-width: 440px;
  background: rgba(5,4,10,.88); backdrop-filter: blur(24px) saturate(2);
  border: 1px solid var(--brand-gold-3);
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.04) inset;
  position: relative;
}
.mc-hd {
  padding: 16px 20px; border-bottom: 1px solid var(--brand-gold-3);
  background: rgba(201,168,76,.04);
  display: flex; align-items: center; justify-content: space-between;
}
.mc-hd-t { display: flex; align-items: center; gap: 8px; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #fff; }
.mc-hd-t svg { color: var(--brand-gold); }
.mc-on { display: flex; align-items: center; gap: 5px; font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: #4ade80; }
.adot { width: 5px; height: 5px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 7px rgba(74,222,128,.7); animation: exc-pulse 2s infinite; }

.mapv { position: relative; height: 240px; overflow: hidden; background: #08070f; }
.mapv-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 40% at 42% 52%, rgba(201,168,76,.07), transparent 70%); }
.mapv-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 28px 28px;
}
.pin { position: absolute; transform: translate(-50%,-100%); display: flex; flex-direction: column; align-items: center; z-index: 4; }
.pn-lbl {
  background: rgba(5,4,10,.92); border: 1px solid var(--brand-gold-3);
  backdrop-filter: blur(8px); padding: 4px 9px;
  font-size: 7px; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-gold); white-space: nowrap;
}
.pn-line { width: 1px; height: 12px; opacity: .5; }
.pn-dot { width: 8px; height: 8px; border-radius: 50%; border: 2px solid rgba(201,168,76,.35); }
.mring {
  position: absolute; border-radius: 50%; transform: translate(-50%,-50%);
  border: 1px dashed rgba(201,168,76,.22); animation: exc-rP 3s ease-in-out infinite;
}
.mring2 { animation-delay: 1s; border-color: rgba(201,168,76,.12); }
.mring3 { animation-delay: 2s; border-color: rgba(201,168,76,.06); }
.map-leg {
  position: absolute; top: 10px; right: 10px;
  background: rgba(5,4,10,.88); backdrop-filter: blur(12px);
  border: 1px solid var(--brand-gold-3); padding: 9px 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.ml { display: flex; align-items: center; gap: 6px; font-size: 7px; letter-spacing: 1px; color: var(--brand-cream); }
.mld { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

.map-ctrl { padding: 16px 20px; border-top: 1px solid var(--brand-gold-3); }
.clbl { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--brand-muted); margin-bottom: 10px; }
.clevels { display: flex; gap: 6px; margin-bottom: 14px; }
.clvl {
  flex: 1; padding: 10px 5px; text-align: center;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05);
  cursor: pointer; transition: all .3s; position: relative; overflow: hidden;
}
.clvl.on { background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.32); }
.clvl.on::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--brand-gold); }
.ci { font-size: 15px; display: block; margin-bottom: 4px; }
.cn { font-size: 7px; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-muted); transition: color .3s; }
.clvl.on .cn { color: var(--brand-gold); }
.ctags { display: flex; flex-wrap: wrap; gap: 6px; }
.ct { display: flex; align-items: center; gap: 6px; background: rgba(201,168,76,.07); border: 1px solid rgba(201,168,76,.16); padding: 5px 10px; font-size: 9px; color: var(--brand-cream); }
.ctd { width: 5px; height: 5px; border-radius: 50%; background: var(--brand-gold); flex-shrink: 0; }
.ctx { color: var(--brand-muted); cursor: pointer; font-size: 10px; margin-left: 2px; transition: color .3s; }
.ctx:hover { color: var(--brand-gold); }

.proof {
  position: absolute; bottom: -16px; right: -14px;
  background: rgba(5,4,10,.94); backdrop-filter: blur(16px);
  border: 1px solid var(--brand-gold-3); padding: 14px 18px;
  box-shadow: 0 16px 36px rgba(0,0,0,.5);
}
.pn { font-family: var(--font-family-serif); font-size: 30px; color: var(--brand-gold); line-height: 1; }
.pt { font-size: 9px; color: var(--brand-muted); margin-top: 3px; line-height: 1.5; max-width: 150px; }

/* ══ SCROLL REVEAL ══ */
.rev { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.rev.on { opacity: 1; transform: translateY(0); }

/* ══ FOOTER ══ */
.landing-footer {
  background: var(--brand-black);
  border-top: 1px solid var(--brand-line);
  padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.f-logo {
  font-family: var(--font-family-serif);
  font-size: 22px; font-weight: 500; letter-spacing: 2px; color: var(--brand-gold);
}
.f-logo b { color: #fff; font-weight: 300; }
.f-t { font-size: 10px; color: var(--brand-muted); letter-spacing: 1px; }
.f-lks { display: flex; gap: 20px; }
.f-lks a { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-muted); text-decoration: none; transition: color .3s; }
.f-lks a:hover { color: var(--brand-gold); }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-r { display: none; }
  .hero-l { padding: 120px 30px 60px; }
  #escudo { grid-template-columns: 1fr; }
  .esc-r  { display: none; }
  .esc-l  { padding: 80px 30px; }
  .landing-page nav { padding: 20px 24px; }
  .landing-footer { padding: 30px 24px; flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════
   NAVBAR OVERRIDE — Exclivia style sobre el componente base
════════════════════════════════════════════════════════════ */
.landing-page .navbar {
  position: fixed !important;
  top: 0; left: 0; right: 0; z-index: 400;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px !important;
  background: rgba(5,4,10,.92) !important;
  backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid var(--brand-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: box-shadow .3s;
}
.landing-page .navbar.scrolled {
  box-shadow: 0 8px 32px rgba(0,0,0,.55) !important;
}
.landing-page .navbar-container {
  display: contents; /* let items flow directly */
}

/* Logo */
.landing-page .navbar-brand {
  font-family: var(--font-family-serif) !important;
  font-size: 24px !important; font-weight: 500 !important;
  letter-spacing: 2px !important;
  color: var(--brand-gold) !important;
  text-decoration: none !important;
  display: flex !important; align-items: center !important;
  gap: 0 !important; background: none !important;
  padding: 0 !important; border: none !important;
}
.landing-page .brand-icon { display: none !important; } /* ocultar cubo */
.landing-page .brand-text { color: var(--brand-gold); letter-spacing: 2px; }
.landing-page .brand-text span { color: #fff; font-weight: 300; }

/* Nav links desktop */
.landing-page .navbar-menu .nav-link {
  font-size: 9px !important; letter-spacing: 3px !important;
  text-transform: uppercase !important; font-weight: 400 !important;
  color: rgba(242,228,200,.5) !important;
  padding: 8px 16px !important;
  transition: color .3s !important;
  border: none !important; background: none !important;
}
.landing-page .navbar-menu .nav-link:hover {
  color: var(--brand-gold) !important;
  background: none !important;
}

/* CTA button */
.landing-page .navbar-actions .btn-primary {
  font-size: 9px !important; letter-spacing: 3px !important;
  text-transform: uppercase !important; font-weight: 500 !important;
  color: var(--brand-black) !important;
  background: var(--brand-gold) !important;
  padding: 9px 22px !important;
  border: none !important; border-radius: 0 !important;
  transition: all .3s !important;
  display: flex !important; align-items: center !important; gap: 6px !important;
}
.landing-page .navbar-actions .btn-primary i { display: none !important; }
.landing-page .navbar-actions .btn-primary:hover {
  background: var(--brand-gold-2) !important;
  box-shadow: 0 0 20px rgba(201,168,76,.3) !important;
  color: var(--brand-black) !important;
}

/* btn-outline (dashboard) */
.landing-page .navbar-actions .btn-outline {
  font-size: 9px !important; letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: rgba(242,228,200,.6) !important;
  border: 1px solid rgba(201,168,76,.22) !important;
  background: none !important; border-radius: 0 !important;
  padding: 8px 20px !important;
}
.landing-page .navbar-actions .btn-outline:hover {
  color: var(--brand-gold) !important;
  border-color: var(--brand-gold) !important;
}

/* Mobile toggle bars */
.landing-page .toggle-bar {
  background: var(--brand-gold) !important;
}
.landing-page .navbar-mobile {
  background: rgba(5,4,10,.97) !important;
  border-top: 1px solid var(--brand-line) !important;
  padding: 20px 24px !important;
}
.landing-page .navbar-mobile .nav-link {
  color: rgba(242,228,200,.55) !important;
  font-size: 10px !important; letter-spacing: 3px !important; text-transform: uppercase !important;
  padding: 12px 0 !important; border-bottom: 1px solid var(--brand-line) !important;
}
.landing-page .navbar-mobile hr { border-color: var(--brand-line) !important; }
.landing-page .navbar-mobile .btn-primary {
  margin-top: 12px !important;
  font-size: 9px !important; letter-spacing: 3px !important;
  background: var(--brand-gold) !important; color: var(--brand-black) !important;
  border-radius: 0 !important;
}

/* ════════════════════════════════════════════════════════════
   BARRA DE CONFIANZA
════════════════════════════════════════════════════════════ */
.exc-trust-bar {
  background: var(--brand-dark);
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
  padding: 18px 60px;
  overflow: hidden;
}
.exc-trust-items {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.exc-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(242,228,200,.45); padding: 6px 20px;
  transition: color .3s;
}
.exc-trust-item:hover { color: var(--brand-gold); }
.et-ico { font-size: 13px; }
.exc-trust-sep { color: var(--brand-gold); font-size: 7px; opacity: .4; padding: 0 4px; }

/* ════════════════════════════════════════════════════════════
   CÓMO FUNCIONA — 3 pasos
════════════════════════════════════════════════════════════ */
.exc-steps {
  background: var(--brand-black);
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 60px;
  position: relative; overflow: hidden;
}
.exc-steps::before {
  content: ''; position: absolute;
  top: 0; left: 60px; right: 60px; height: 1px;
  background: var(--brand-line);
}
.exc-glow-center {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,.05), transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.exc-steps-inner {
  max-width: 1100px; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 60px;
  position: relative; z-index: 1;
}
.exc-section-head { text-align: center; }
.exc-section-head .slbl { justify-content: center; }

.exc-steps-grid {
  display: flex; align-items: flex-start; gap: 0; width: 100%;
}
.exc-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
  padding: 40px 32px;
  background: var(--brand-glass); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .4s;
}
.exc-step:hover { border-color: var(--brand-gold-3); }
.exc-step-num {
  font-family: var(--font-family-serif);
  font-size: 11px; letter-spacing: 4px; color: var(--brand-gold);
  opacity: .6;
}
.exc-step-icon {
  font-size: 32px; line-height: 1;
  background: var(--brand-gold-4); border: 1px solid var(--brand-gold-3);
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
}
.exc-step h4 {
  font-family: var(--font-family-serif);
  font-size: 20px; font-weight: 400; color: #fff;
}
.exc-step p { font-size: 12px; line-height: 1.9; color: var(--brand-muted); }
.exc-step-line {
  width: 1px; min-height: 160px; align-self: center;
  background: var(--brand-line); flex-shrink: 0; margin-top: -60px;
}

/* ════════════════════════════════════════════════════════════
   ESTADÍSTICAS
════════════════════════════════════════════════════════════ */
.exc-impact {
  background: var(--brand-dark);
  border-top: 1px solid var(--brand-line);
  padding: 80px 60px;
}
.exc-impact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--brand-line);
}
.exc-impact-card {
  background: var(--brand-dark);
  padding: 40px 28px; text-align: center;
  transition: background .3s;
}
.exc-impact-card:hover { background: rgba(201,168,76,.04); }
.exc-impact-n {
  font-family: var(--font-family-serif);
  font-size: clamp(36px,4vw,56px); font-weight: 400;
  color: var(--brand-gold); line-height: 1; margin-bottom: 8px;
}
.exc-impact-l {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brand-muted);
}

/* ════════════════════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════════════════════ */
.exc-cta {
  min-height: 100vh;
  background: var(--brand-black);
  border-top: 1px solid var(--brand-line);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 80px 60px;
}
.exc-cta-glow {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,.06), transparent 65%);
  top: 50%; left: 30%; transform: translate(-50%,-50%); pointer-events: none;
}
.exc-cta-inner {
  max-width: 1100px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.exc-cta-copy { display: flex; flex-direction: column; gap: 20px; }
.exc-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.exc-cta-trust { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.exc-trust-chip {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--brand-gold);
  background: var(--brand-gold-4); border: 1px solid var(--brand-gold-3);
  padding: 6px 14px;
}

.exc-cta-visual { position: relative; overflow: hidden; height: 540px; }
.exc-cta-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.5) saturate(.7);
}
.exc-cta-img-ov {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,4,10,.7), rgba(201,168,76,.06));
}

/* ════════════════════════════════════════════════════════════
   FOOTER OVERRIDE
════════════════════════════════════════════════════════════ */
.landing-page footer {
  background: var(--brand-black) !important;
  border-top: 1px solid var(--brand-line) !important;
  padding: 36px 60px !important;
  color: var(--brand-muted) !important;
}
.landing-page footer a { color: var(--brand-muted) !important; transition: color .3s !important; }
.landing-page footer a:hover { color: var(--brand-gold) !important; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — nuevas secciones
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .exc-trust-bar { padding: 16px 20px; }
  .exc-trust-sep { display: none; }
  .exc-steps { padding: 80px 24px; }
  .exc-steps-grid { flex-direction: column; }
  .exc-step-line { width: 80px; min-height: 1px; margin: 0 auto; }
  .exc-impact { padding: 60px 24px; }
  .exc-impact-grid { grid-template-columns: repeat(2,1fr); }
  .exc-cta { padding: 60px 24px; }
  .exc-cta-inner { grid-template-columns: 1fr; }
  .exc-cta-visual { display: none; }
  .landing-page .navbar { padding: 16px 20px !important; }
}