/* ============================================================
   CRUX — main.css
   Paleta: antracita premium + dorado + texto crema
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:    #0e0f0f;
  --bg2:   #141616;
  --bg3:   #1a1d1d;
  --card:  #1e2222;
  --border: rgba(255,255,255,0.07);
  --gold:  #c9a96e;
  --gold2: #e2c48a;
  --text1: #f0ece3;
  --text2: #8a9090;
  --text3: #4a5050;
  --green: #3d9e6a;
  --red:   #e06060;
  --font-sans: 'DM Sans', sans-serif;
  --font-head: 'Syne', sans-serif;
  --radius: 6px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; font-size: 16px; background: var(--bg); }

/* ── GLOBAL HERO BACKGROUND (aurora + grid, fixed) ───────── */
#global-aurora {
  position: fixed;
  left: 50%; top: 45%;
  width: 95vw; height: 85vh;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(201,169,110,0.07) 0%,
    rgba(61,158,106,0.04) 45%,
    transparent 70%
  );
  filter: blur(90px);
  animation: cin-breathe 9s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}

#global-grid {
  position: fixed;
  inset: 0;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  pointer-events: none;
  z-index: -1;
}

body {
  background: transparent;
  color: var(--text1);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold2); }

/* ── TIPOGRAFÍA ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text1);
}
h1 { font-size: clamp(36px,5vw,64px); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: clamp(32px,4vw,52px); }
h3 { font-size: clamp(20px,2.5vw,28px); }
h4 { font-size: 18px; }
p  { color: var(--text2); font-weight: 300; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
section { padding: 100px 0; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(14,15,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav__logo {
  font-family: var(--font-head); font-weight: 800; font-size: 22px;
  letter-spacing: 4px; color: var(--text1); text-decoration: none;
}
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a { color: var(--text2); font-size: 14px; font-weight: 400; transition: color 0.2s; text-decoration: none; }
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold) !important; color: #0e0f0f !important;
  padding: 10px 22px !important; border-radius: var(--radius) !important;
  font-weight: 500 !important; font-size: 14px !important;
}
.nav__cta:hover { background: var(--gold2) !important; color: #0e0f0f !important; }

/* ── BOTONES ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: var(--radius);
  font-family: var(--font-sans); font-weight: 500; font-size: 15px;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.2s;
}
.btn--primary { background: var(--gold); color: #0e0f0f; font-weight: 600; }
.btn--primary:hover {
  background: var(--gold2); color: #0e0f0f;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.25);
}
.btn--secondary { background: transparent; color: var(--text1); border: 1px solid var(--border); }
.btn--secondary:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); color: var(--text1); }

/* ── HERO CINEMATIC ───────────────────────────────────────── */
.hero-cin {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 80px;
  background: var(--bg);
}

/* Aurora glow */
.hero-cin__aurora {
  position: absolute;
  left: 50%; top: 50%;
  width: 90vw; height: 70vh;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(201,169,110,0.09) 0%,
    rgba(61,158,106,0.05) 45%,
    transparent 70%
  );
  filter: blur(70px);
  animation: cin-breathe 9s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes cin-breathe {
  0%   { transform: translate(-50%,-50%) scale(1);   opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(1.12); opacity: 1; }
}

/* Grid */
.hero-cin__grid {
  position: absolute; inset: 0;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 75%, transparent 100%);
  pointer-events: none;
}

/* Giant background text */
.hero-cin__bg-text {
  position: absolute;
  bottom: -6vh; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 30vw;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.035);
  background: linear-gradient(180deg, rgba(255,255,255,0.055) 0%, transparent 65%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  will-change: transform;
  opacity: 0;
  animation: bg-text-appear 2s ease 0.1s forwards;
}

@keyframes bg-text-appear {
  to { opacity: 0.4; }
}

/* Diagonal marquee */
.hero-cin__marquee-wrap {
  position: absolute;
  top: 70px; left: 0;
  width: 120%;
  margin-left: -10%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(14,15,15,0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 13px 0;
  transform: rotate(-1.4deg);
  pointer-events: none;
  z-index: 2;
}
.hero-cin__marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text3);
  animation: cin-marquee 38s linear infinite;
}
.hero-cin__marquee-track .sep { color: var(--gold); opacity: 0.45; }

@keyframes cin-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Main content */
.hero-cin__content {
  position: relative; z-index: 10;
  max-width: 1100px; margin: 0 auto;
  padding: 0 48px; width: 100%;
  margin-top: 50px;
}

/* Actions — glass pills */
.hero-cin__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center; margin: 0 0 64px;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
  transform-style: preserve-3d;
}
.hero-pill svg { flex-shrink: 0; }

.hero-pill--primary {
  background: linear-gradient(145deg, rgba(201,169,110,0.14) 0%, rgba(201,169,110,0.04) 100%);
  border: 1px solid rgba(201,169,110,0.28);
  color: var(--gold);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5),
              inset 0 1px 1px rgba(201,169,110,0.15);
}
.hero-pill--primary:hover {
  background: linear-gradient(145deg, rgba(201,169,110,0.24) 0%, rgba(201,169,110,0.10) 100%);
  border-color: rgba(201,169,110,0.5);
  color: var(--gold2);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.7),
              inset 0 1px 1px rgba(201,169,110,0.25);
}
.hero-pill--secondary {
  background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text1);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4),
              inset 0 1px 1px rgba(255,255,255,0.07);
}
.hero-pill--secondary:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(255,255,255,0.20);
  color: var(--text1);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6),
              inset 0 1px 1px rgba(255,255,255,0.14);
}

/* Hero tag & sub (reusan los del hero original) */
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.2);
  color: var(--gold); padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 500; margin-bottom: 32px;
}
.hero__tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}
.hero-cin__heading {
  font-family: var(--font-head);
  font-size: clamp(38px,5.5vw,72px);
  font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.05; margin: 0 0 28px; color: var(--text1);
}
.hero-cin__heading em { font-style: normal; color: var(--gold); }

.hero-cin__sub {
  font-size: 18px; color: var(--text2);
  max-width: 520px; line-height: 1.7;
  font-weight: 300; margin: 0 0 48px;
}

/* Stats bar (igual que el original) */
.hero__stats {
  display: flex; align-items: center; gap: 40px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: 28px; color: var(--text1); }
.stat__num span { color: var(--gold); }
.stat__label { font-size: 13px; color: var(--text3); margin-top: 2px; }
.stat__divider { width: 1px; height: 40px; background: var(--border); }

/* ── LOGOS STRIP ──────────────────────────────────────────── */
.logos-strip { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos-strip__label { text-align: center; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--text3); margin-bottom: 32px; }
.logos-strip__row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; list-style: none; }
.logos-strip__item { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--text3); letter-spacing: 1px; transition: color 0.2s; }
.logos-strip__item:hover { color: var(--text2); }

/* ── SECTION LABELS ───────────────────────────────────────── */
.section-tag { display: inline-block; font-size: 12px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.section-sub { font-size: 17px; color: var(--text2); max-width: 560px; line-height: 1.7; font-weight: 300; margin-top: 16px; }

/* ── PROBLEMA / SOLUCIÓN ──────────────────────────────────── */
.problem { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 60px; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.problem__col { padding: 48px; }
.problem__col:first-child { border-right: 1px solid var(--border); }
.problem__col-tag { font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.problem__col-tag--bad  { color: var(--red); }
.problem__col-tag--good { color: var(--green); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text2); line-height: 1.5; }
.check-list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; background-size: contain; }
.check-list--bad li::before  { background: rgba(224,96,96,0.15); border: 1px solid rgba(224,96,96,0.3); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 5l8 8M13 5l-8 8' stroke='%23e06060' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
.check-list--good li::before { background: rgba(61,158,106,0.15); border: 1px solid rgba(61,158,106,0.3); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9l4 4 6-6' stroke='%233d9e6a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

/* ── MÓDULOS ──────────────────────────────────────────────── */
.modules__header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 64px; }
.modules__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.module-card { background: var(--card); padding: 36px 32px; transition: background 0.2s; position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); }
.module-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease; }
.module-card:hover { background: #222728; }
.module-card:hover::after { transform: scaleX(1); }
.module-card__icon { width: 40px; height: 40px; background: rgba(201,169,110,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 18px; }
.module-card__name { font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--text1); margin-bottom: 10px; }
.module-card__desc { font-size: 14px; color: var(--text2); line-height: 1.6; font-weight: 300; }

/* ── PASOS ────────────────────────────────────────────────── */
.how { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 64px; }
.steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent); }
.step { padding: 0 24px; text-align: center; }
.step__num { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--gold); margin: 0 auto 24px; position: relative; z-index: 1; }
.step__title { font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--text1); margin-bottom: 10px; }
.step__desc  { font-size: 14px; color: var(--text2); line-height: 1.6; font-weight: 300; }

/* ── SECTORES ─────────────────────────────────────────────── */
.sectors__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 56px; }
.sector-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: all 0.2s; text-decoration: none; display: block; }
.sector-card:hover { border-color: rgba(201,169,110,0.3); background: #212626; transform: translateY(-2px); }
.sector-card__icon { font-size: 24px; margin-bottom: 14px; }
.sector-card__name { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--text1); margin-bottom: 8px; }
.sector-card__desc { font-size: 13px; color: var(--text2); line-height: 1.5; font-weight: 300; }

/* ── POR QUÉ CRUX ─────────────────────────────────────────── */
.why { background: var(--bg2); border-top: 1px solid var(--border); }
.why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why__list { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.why__item { display: flex; gap: 20px; align-items: flex-start; }
.why__dot { width: 32px; height: 32px; background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.why__item-title { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--text1); margin-bottom: 6px; }
.why__item-desc  { font-size: 14px; color: var(--text2); line-height: 1.6; font-weight: 300; }
.mock { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 32px; position: relative; overflow: hidden; }
.mock::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%); }
.mock__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.mock__logo { font-family: var(--font-head); font-weight: 800; font-size: 14px; letter-spacing: 3px; color: var(--text1); }
.mock__logo span { color: var(--gold); }
.mock__badge { background: rgba(61,158,106,0.15); border: 1px solid rgba(61,158,106,0.3); color: var(--green); font-size: 11px; padding: 3px 10px; border-radius: 100px; }
.mock__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.mock__stat { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.mock__stat-val { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--text1); }
.mock__stat-val--gold { color: var(--gold); }
.mock__stat-lbl { font-size: 11px; color: var(--text3); margin-top: 3px; }
.mock__row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.mock__row:last-child { border-bottom: none; }
.mock__row-name { font-size: 13px; color: var(--text2); }
.mock__row-val  { font-size: 13px; color: var(--text1); font-weight: 500; }
.badge { font-size: 11px; padding: 2px 8px; border-radius: 100px; }
.badge--paid    { background: rgba(61,158,106,0.15); color: var(--green); }
.badge--pending { background: rgba(201,169,110,0.15); color: var(--gold); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--bg); }
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 56px; }
.faq__item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color 0.2s; }
.faq__item:hover { border-color: rgba(201,169,110,0.3); }
.faq__question { font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--text1); margin-bottom: 12px; }
.faq__answer   { font-size: 14px; color: var(--text2); line-height: 1.7; font-weight: 300; }

/* ── CTA FINAL ────────────────────────────────────────────── */
.cta { text-align: center; padding: 120px 0; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 800px 500px at 50% 50%, rgba(201,169,110,0.05), transparent 70%); }
.cta__inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 48px 0 32px; }

/* ── CONTACTO EMAIL ───────────────────────────────────────── */
.contact-cta { margin-top: 24px; text-align: center; }
.contact-cta__text { font-size: 14px; color: var(--text3); margin-bottom: 8px; }
.contact-cta__email { font-size: 18px; color: var(--gold); font-weight: 600; letter-spacing: 0.02em; text-decoration: none; border-bottom: 1px solid rgba(201,169,110,0.3); padding-bottom: 2px; transition: border-color 0.2s; }
.contact-cta__email:hover { color: var(--gold2); border-color: var(--gold2); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.wa-float { position: fixed; bottom: 32px; right: 32px; z-index: 200; display: flex; align-items: center; gap: 12px; background: #25D366; color: white !important; padding: 14px 22px 14px 18px; border-radius: 100px; font-weight: 600; font-size: 14px; box-shadow: 0 8px 32px rgba(37,211,102,0.35); transition: all 0.2s; }
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.45); color: white !important; }
.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); background: var(--bg2); }
.footer__top { padding: 64px 0 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer__logo { font-family: var(--font-head); font-weight: 800; font-size: 20px; letter-spacing: 4px; color: var(--text1); text-decoration: none; display: inline-block; margin-bottom: 16px; }
.footer__logo span { color: var(--gold); }
.footer__desc { font-size: 14px; color: var(--text3); line-height: 1.6; max-width: 260px; }
.footer__col-title { font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); margin-bottom: 20px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: var(--text3); font-size: 14px; transition: color 0.2s; text-decoration: none; }
.footer__links a:hover { color: var(--text2); }
.footer__bottom { padding: 24px 0; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__copy { font-size: 13px; color: var(--text3); }
.footer__legal { display: flex; gap: 24px; list-style: none; }
.footer__legal a { color: var(--text3); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer__legal a:hover { color: var(--text2); }

/* ── PÁGINAS LEGALES (legacy — mantenido por compatibilidad) ── */
.legal-page { padding: 140px 0 100px; max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-size: 40px; margin-bottom: 8px; }
.legal-page .last-updated { font-size: 13px; color: var(--text3); margin-bottom: 48px; }
.legal-page h2 { font-size: 22px; margin: 40px 0 16px; }
.legal-page p  { font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.legal-page ul { padding-left: 24px; margin-bottom: 16px; }
.legal-page ul li { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 8px; }
.legal-page a { color: var(--gold); }

/* ── HERO INTERIOR (páginas internas) ───────────────────── */
.page-hero {
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero__aurora {
  position: absolute;
  left: 30%; top: 50%;
  width: 70vw; height: 60vh;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(201,169,110,0.07) 0%,
    rgba(61,158,106,0.04) 45%,
    transparent 70%
  );
  filter: blur(70px);
  animation: cin-breathe 9s ease-in-out infinite alternate;
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text3); font-size: 13px; font-weight: 500;
  text-decoration: none; margin-bottom: 32px;
  transition: color 0.2s;
}
.page-hero__back:hover { color: var(--gold); }
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.05; color: var(--text1);
  max-width: 700px;
}

/* ── CUERPO DE PÁGINA INTERIOR ──────────────────────────── */
.page-body { padding: 0 0 80px; }
.page-content {
  max-width: 800px;
  background: rgba(18,22,22,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 56px;
}
.page-content h2 { font-size: clamp(20px,2.5vw,28px); margin: 40px 0 14px; color: var(--text1); }
.page-content h3 { font-size: 18px; margin: 28px 0 10px; color: var(--text1); }
.page-content p  { font-size: 15px; line-height: 1.85; color: var(--text2); margin-bottom: 16px; }
.page-content ul,
.page-content ol { padding-left: 24px; margin-bottom: 20px; }
.page-content ul li,
.page-content ol li { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 8px; }
.page-content a { color: var(--gold); border-bottom: 1px solid rgba(201,169,110,0.25); transition: border-color 0.2s; }
.page-content a:hover { border-color: var(--gold); }
.page-content strong { color: var(--text1); font-weight: 600; }
.page-content hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

@media (max-width: 768px) {
  .page-hero { padding: 110px 0 56px; }
  .page-content { padding: 32px 24px; }
}

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg2); border-top: 1px solid var(--border); padding: 20px 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; z-index: 300; transform: translateY(100%); transition: transform 0.4s ease; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 14px; color: var(--text2); max-width: 700px; }
.cookie-banner a { color: var(--gold); }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn { padding: 10px 20px; border-radius: var(--radius); font-size: 13px; font-weight: 500; cursor: pointer; border: none; font-family: var(--font-sans); transition: all 0.2s; }
.cookie-btn--accept { background: var(--gold); color: #0e0f0f; }
.cookie-btn--accept:hover { background: var(--gold2); }
.cookie-btn--reject { background: transparent; color: var(--text2); border: 1px solid var(--border); }
.cookie-btn--reject:hover { border-color: var(--text2); color: var(--text1); }

/* ── ANIMACIONES ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards; }
.anim-2 { opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards; }
.anim-3 { opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards; }
.anim-4 { opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards; }
.anim-5 { opacity: 0; animation: fadeUp 0.8s ease 1.0s forwards; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .modules__grid { grid-template-columns: repeat(2,1fr); }
  .modules__header { grid-template-columns: 1fr; gap: 24px; }
  .why__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav__links { display: none; }
  .hero-cin { padding: 100px 0 100px; }
  .hero-cin__content { padding: 0 24px; }
  section { padding: 72px 0; }
  .container { padding: 0 24px; }
  .problem__grid { grid-template-columns: 1fr; }
  .problem__col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .steps::before { display: none; }
  .sectors__grid { grid-template-columns: repeat(2,1fr); }
  .faq__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner { flex-direction: column; padding: 20px 24px; }
  .hero-cin__bg-text { font-size: 42vw; }
  .hero-cin__actions { gap: 10px; }
}

@media (max-width: 480px) {
  h1 { font-size: 36px; }
  .modules__grid  { grid-template-columns: 1fr; }
  .sectors__grid  { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-cin__actions { flex-direction: column; align-items: flex-start; }
  .wa-float span { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; }
  .hero-cin__bg-text { font-size: 52vw; }
}

/* ── SECCIONES SEMITRANSPARENTES (fondo global visible) ─── */
.hero-cin          { background: transparent; }
.faq               { background: transparent; }
.problem, .how, .why { background: rgba(10,12,12,0.22); }
.footer            { background: rgba(10,12,12,0.48); border-top: 1px solid var(--border); }
.module-card       { background: rgba(18,22,22,0.26); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.sector-card       { background: rgba(18,22,22,0.26); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.faq__item         { background: rgba(18,22,22,0.26); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.mock              { background: rgba(14,18,18,0.36); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.mock__stat        { background: rgba(8,10,10,0.22); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.cookie-banner     { background: rgba(14,15,15,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.logos-strip       { background: rgba(10,12,12,0.12); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problem__grid     { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); background: rgba(10,12,12,0.10); }

/* ── MARQUEE MID (barra diagonal central, inclinación opuesta) */
.marquee-mid {
  position: relative;
  width: 120%;
  margin-left: -10%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(14,15,15,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 13px 0;
  transform: rotate(1.4deg);
  pointer-events: none;
  z-index: 5;
  margin-top: -8px;
  margin-bottom: -8px;
}

.marquee-mid .hero-cin__marquee-track {
  animation-direction: reverse; /* texto va en dirección opuesta */
}

/* ── EFECTOS PREMIUM ─────────────────────────────────────── */


/* Floating particles canvas */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Heading gold shimmer animation */
.hero-cin__heading em {
  font-style: normal;
  background: linear-gradient(90deg, #c9a96e 0%, #eddaa0 38%, #c9a96e 76%, #eddaa0 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gold-sweep 5s linear infinite;
}
@keyframes gold-sweep {
  to { background-position: -250% center; }
}

/* Shimmer sweep on module-card hover */
.module-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 30%,
    rgba(201,169,110,0.07) 50%,
    transparent 70%
  );
  background-size: 250% 100%;
  background-position: 140% 0;
  transition: background-position 0.65s ease;
  pointer-events: none;
}
.module-card:hover::before { background-position: -40% 0; }

/* Shimmer on faq-item hover */
.faq__item {
  position: relative;
  overflow: hidden;
}
.faq__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 30%,
    rgba(201,169,110,0.05) 50%,
    transparent 70%
  );
  background-size: 250% 100%;
  background-position: 140% 0;
  transition: background-position 0.65s ease;
  pointer-events: none;
}
.faq__item:hover::before { background-position: -40% 0; }

/* Module card enhanced hover */
.module-card:hover {
  background: rgba(22,27,27,0.40);
  border-color: rgba(201,169,110,0.18);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.38),
    0 0 0 1px rgba(201,169,110,0.07),
    inset 0 1px 0 rgba(201,169,110,0.06);
  transform: translateY(-5px);
}

/* Sector card enhanced hover */
.sector-card:hover {
  background: rgba(22,27,27,0.40);
  border-color: rgba(201,169,110,0.22);
  box-shadow: 0 14px 42px rgba(0,0,0,0.32), 0 0 0 1px rgba(201,169,110,0.06);
  transform: translateY(-5px);
}

/* FAQ item enhanced hover */
.faq__item:hover {
  background: rgba(22,27,27,0.40);
  border-color: rgba(201,169,110,0.20);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(201,169,110,0.04);
}

/* Why item slide-in hover */
.why__item {
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color 0.35s ease, background 0.35s ease,
              transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.why__item:hover {
  border-color: rgba(201,169,110,0.10);
  background: rgba(201,169,110,0.022);
  transform: translateX(5px);
}

/* Step hover lift + number glow */
.step {
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.step:hover { transform: translateY(-6px); }
.step__num {
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.step:hover .step__num {
  border-color: rgba(201,169,110,0.42);
  background: rgba(201,169,110,0.08);
  box-shadow: 0 0 22px rgba(201,169,110,0.14), 0 0 0 4px rgba(201,169,110,0.05);
}

/* Smooth spring reveal */
.reveal {
  transition:
    opacity 0.8s cubic-bezier(0.16,1,0.3,1),
    transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
