/* ─── GRUPO ORANGEFOX · Design System ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:      #f59d1d;
  --amber-dim:  #c47d10;
  --black:      #111111;
  --black-soft: #1a1a1a;
  --black-card: #1f1f1f;
  --gray-dark:  #545454;
  --gray-mid:   #898989;
  --gray-light: #f2f2f2;
  --white:      #ffffff;
  --font:       'Poppins', Arial, sans-serif;
  --max:        1200px;
  --pad:        clamp(24px, 5vw, 80px);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--black); color: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* REVEAL */
.r { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.r.in { opacity: 1; transform: none; }
.r.d1 { transition-delay: .1s; }
.r.d2 { transition-delay: .2s; }
.r.d3 { transition-delay: .3s; }
.r.d4 { transition-delay: .4s; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad); height: 72px;
  background: rgba(17,17,17,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.7); transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--amber); }
.nav-cta {
  background: var(--amber); color: var(--black) !important;
  font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: 6px;
  transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--amber-dim) !important; }

/* ─── SUBPAGE HERO ─── */
.sub-hero {
  padding: 140px var(--pad) 80px;
  background: var(--black-soft);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sub-hero-inner { max-width: var(--max); margin: 0 auto; }
.sub-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber); display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.sub-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--amber); }
.sub-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.1;
  color: var(--white); margin-bottom: 24px; max-width: 800px;
}
.sub-hero h1 em { font-style: normal; color: var(--amber); }
.sub-hero-sub {
  font-size: clamp(16px, 1.5vw, 20px); font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,.6);
  max-width: 640px; margin-bottom: 40px;
}

/* ─── BTNS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: var(--black);
  font-family: var(--font); font-weight: 600; font-size: 15px;
  padding: 14px 32px; border-radius: 6px; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--amber-dim); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: var(--font); font-weight: 500; font-size: 15px;
  padding: 14px 32px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.2); cursor: pointer;
  transition: border-color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); }

/* ─── SECTION LABELS ─── */
.section-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px;
}
.section-title {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700; letter-spacing: -.02em;
  line-height: 1.2;
}
.section-title.dark { color: var(--black); }
.section-title.light { color: var(--white); }

/* ─── STEPS ─── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 28px; padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-size: 48px; font-weight: 700;
  color: rgba(17,17,17,.1); line-height: 1;
  letter-spacing: -.04em;
}
.step h3 { font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.step p { font-size: 15px; font-weight: 400; line-height: 1.65; color: var(--gray-dark); }

/* Light steps (dark bg) */
.step.light { border-bottom-color: rgba(255,255,255,.06); }
.step.light .step-num { color: rgba(255,255,255,.08); }
.step.light h3 { color: var(--white); }
.step.light p { color: rgba(255,255,255,.55); }

/* ─── PROOF NUMBERS ─── */
.proof-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.proof-block {
  background: var(--black-card); padding: 44px 40px;
}
.proof-number {
  font-size: clamp(44px, 5vw, 72px); font-weight: 700;
  letter-spacing: -.03em; color: var(--amber);
  line-height: 1; margin-bottom: 12px;
}
.proof-label { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.proof-desc { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--amber); padding: clamp(64px, 8vw, 100px) var(--pad);
}
.cta-section-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; gap: 48px; flex-wrap: wrap;
}
.cta-section h2 {
  font-size: clamp(24px, 3vw, 40px); font-weight: 700;
  letter-spacing: -.02em; color: var(--black); max-width: 520px;
}
.cta-section p { font-size: 16px; color: rgba(17,17,17,.65); margin-top: 12px; max-width: 480px; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  font-family: var(--font); font-weight: 600; font-size: 15px;
  padding: 16px 36px; border-radius: 6px; border: none;
  cursor: pointer; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.btn-dark:hover { background: #222; transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 64px var(--pad) 40px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo img { height: 32px; margin-bottom: 20px; }
.footer-tagline { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.75); max-width: 280px; line-height: 1.65; }
.footer-links h4 { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 15px; font-weight: 400; color: rgba(255,255,255,.8); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 32px; }
.footer-copy { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: 24px; }
.footer-social a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8); transition: color .2s; }
.footer-social a:hover { color: var(--amber); }

/* ─── HERO STATS STRIP ─── */
.hero-stats-strip {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 0 var(--pad);
}
.hero-stats-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero-stat {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700; letter-spacing: -.04em;
  color: var(--amber); line-height: 1; margin-bottom: 6px;
}
.hero-stat-client {
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.5); line-height: 1.4;
}

/* ─── EDITORIAL 2-COL ─── */
.editorial-2col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: var(--max); margin: 0 auto;
}
.editorial-2col-right {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 36px 32px;
}
.editorial-callout-num {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 700; letter-spacing: -.04em;
  color: var(--amber); line-height: 1; margin-bottom: 10px;
}
.editorial-callout-label {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,.7); margin-bottom: 24px;
}
.editorial-callout-divider {
  width: 32px; height: 2px;
  background: rgba(245,157,29,.3); margin-bottom: 24px;
}
.editorial-callout-sub {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.4); line-height: 1.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .cta-section-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .proof-strip { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; }
}

/* ─── SCROLL REVEAL JS ─── */
/* (script inline em cada página) */
