@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg:       #0D1117;
  --bg2:      #0A0E14;
  --panel:    #111620;
  --card:     #141922;
  --card2:    rgba(255,255,255,0.03);
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.12);
  --orange:   #FF5C2E;
  --orange2:  #FF7A52;
  --orange3:  rgba(255,92,46,0.12);
  --white:    #FFFFFF;
  --g1:       #F0F4FF;
  --g2:       #8B95A8;
  --g3:       #4A5568;
  --g4:       #1E2535;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-snap-type: y proximity; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--g1);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.025;
  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)'/%3E%3C/svg%3E");
}

/* ── NAV ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  background: rgba(13,17,23,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-size: 1.05rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--white);
  display: inline-flex; align-items: center;
}
.logo-race { color: var(--orange); }
.logo-dot {
  display: inline-block;
  width: 0.3em; height: 0.3em;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 0.32em;
  position: relative;
  top: -0.05em;
}
.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-links a {
  color: var(--g2); text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active-link { color: var(--white); }
.nav-pill {
  background: var(--orange); color: var(--white) !important;
  padding: 0.45rem 1.1rem; border-radius: 6px;
  font-weight: 600 !important; font-size: 0.85rem !important;
  transition: opacity .15s !important;
}
.nav-pill:hover { opacity: 0.88 !important; }

.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-burger span {
  display: block; width: 100%; height: 2px;
  background: var(--g1); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SECTION DOTS (desktop) ──────────────────────────── */
.section-dots {
  position: fixed; right: clamp(1.2rem, 3vw, 2.4rem); top: 50%;
  transform: translateY(-50%); z-index: 250;
  display: flex; flex-direction: column; gap: 1.1rem;
  align-items: flex-end;
}
.dot-link {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.dot-link::after {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--g4);
  border: 1px solid var(--border2);
  transition: background .2s, border-color .2s, transform .2s;
  order: 2;
}
.dot-label {
  font-size: 0.7rem; font-weight: 600; color: var(--g3);
  opacity: 0; transform: translateX(6px);
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
  order: 1;
}
.dot-link:hover .dot-label { opacity: 1; transform: translateX(0); color: var(--g1); }
.dot-link:hover::after { border-color: var(--orange); transform: scale(1.15); }
.dot-link.active::after { background: var(--orange); border-color: var(--orange); transform: scale(1.25); }
.dot-link.active .dot-label { opacity: 1; transform: translateX(0); color: var(--white); }

/* ── MOBILE SECTION NAV (bottom bar) ─────────────────── */
.mobile-section-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 250;
  height: 56px;
  align-items: center; justify-content: space-between;
  padding: 0 0.5rem;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--border);
}
.msn-arrow {
  width: 44px; height: 44px;
  background: none; border: none; color: var(--g1);
  font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.msn-arrow:disabled { color: var(--g4); cursor: default; }
.msn-label {
  font-size: 0.78rem; font-weight: 700; color: var(--orange);
  letter-spacing: 0.03em; text-transform: uppercase;
}

/* ── MOBILE MENU OVERLAY ─────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; inset: 60px 0 0 0; z-index: 280;
  background: rgba(10,14,20,0.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  padding: 2rem clamp(1.5rem, 5vw, 5rem);
  gap: 0.5rem;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.mobile-menu.open {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.mobile-menu a {
  color: var(--g1); text-decoration: none;
  font-size: 1.3rem; font-weight: 700;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--orange); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px clamp(1.5rem, 5vw, 5rem) 80px;
  text-align: center;
  overflow: hidden;
  scroll-snap-align: start;
}

/* Glow */
.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,92,46,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--orange3);
  border: 1px solid rgba(255,92,46,0.2);
  border-radius: 100px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -0.04em; color: var(--white);
  max-width: 900px; margin: 0 auto 1.5rem;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: var(--g2); max-width: 520px;
  margin: 0 auto 3rem; line-height: 1.75; font-weight: 400;
}

/* Split cards */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; max-width: 740px; width: 100%;
  margin: 0 auto 0;
}
.split-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: left;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
  backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
}
.split-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: 16px;
  background: radial-gradient(circle at 50% 0%, rgba(255,92,46,0.08), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.split-card:hover {
  border-color: rgba(255,92,46,0.4);
  background: rgba(255,92,46,0.04);
  transform: translateY(-3px);
}
.split-card:hover::before { opacity: 1; }
.split-icon {
  width: 2.4rem; height: 2.4rem;
  background: var(--orange3); border: 1px solid rgba(255,92,46,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 1rem;
  color: var(--orange);
}
.split-icon svg { width: 1.15rem; height: 1.15rem; }
.split-card h3 {
  font-size: 0.975rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.4rem; letter-spacing: -0.01em;
}
.split-card p {
  font-size: 0.83rem; color: var(--g2); line-height: 1.65; margin: 0 0 1rem;
}
.split-arrow {
  font-size: 0.82rem; color: var(--orange); font-weight: 600;
  display: flex; align-items: center; gap: 0.3rem;
  transition: gap .2s;
}
.split-card:hover .split-arrow { gap: 0.5rem; }

/* ── DETECTION FEED (signature element) ───────────── */
.detection-feed {
  width: 100%; max-width: 900px;
  margin: 4rem auto 0;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.feed-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.feed-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 1.5s ease infinite; }
.feed-title { font-size: 0.78rem; font-weight: 600; color: var(--g2); letter-spacing: 0.04em; }
.feed-live {
  margin-left: auto; font-size: 0.68rem; font-weight: 700; color: var(--orange);
  background: var(--orange3); border: 1px solid rgba(255,92,46,0.2);
  padding: 0.18rem 0.55rem; border-radius: 100px; letter-spacing: 0.06em;
}
.feed-content {
  padding: 1.25rem;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
.feed-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem;
  opacity: 0;
  animation: fadeInUp 0.4s ease forwards;
  text-align: left;
}
.feed-item:nth-child(1) { animation-delay: 0.1s; }
.feed-item:nth-child(2) { animation-delay: 0.25s; }
.feed-item:nth-child(3) { animation-delay: 0.4s; }
.feed-item:nth-child(4) { animation-delay: 0.55s; }
.feed-item:nth-child(5) { animation-delay: 0.7s; }
.feed-item:nth-child(6) { animation-delay: 0.85s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.feed-dorsal {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; color: var(--g3); font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.feed-brand {
  font-size: 0.95rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.01em; margin-bottom: 0.25rem;
}
.feed-model { font-size: 0.75rem; color: var(--g2); }
.feed-tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.6rem;
  font-size: 0.64rem; font-weight: 700; color: var(--orange);
  background: var(--orange3); padding: 0.2rem 0.55rem 0.2rem 0.45rem; border-radius: 4px;
  letter-spacing: 0.04em;
}
.feed-tag svg { width: 0.7rem; height: 0.7rem; flex-shrink: 0; }
.feed-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.25rem 1.1rem;
  font-size: 0.74rem; color: var(--g3);
  border-top: 1px solid var(--border);
}
.feed-footer-acc { color: var(--orange); font-weight: 600; }

/* ── SHARED LAYOUT ─────────────────────────────────── */
section {
  position: relative; z-index: 1;
  padding: 128px clamp(1.5rem, 5vw, 5rem) 100px;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-start;
  scroll-snap-align: start;
  scroll-margin-top: 0;
}
.container { max-width: 1100px; margin: 0 auto; width: 100%; }
.eyebrow-sm {
  font-size: 0.72rem; font-weight: 700; color: var(--orange);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-h {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.03em; line-height: 1.12;
  margin-bottom: 1.1rem;
}
.section-p { font-size: 1rem; color: var(--g2); max-width: 520px; line-height: 1.75; }

/* ── HOW IT WORKS ──────────────────────────────────── */
#como-funciona { background: var(--panel); }
.hiw-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem; align-items: start; margin-top: 3.5rem;
}
.process-grid {
  display: flex; flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.process-step {
  background: var(--card);
  padding: 1.4rem 1.6rem;
  position: relative;
  display: flex; align-items: baseline; gap: 1.1rem;
}
.process-step::before {
  content: '';
  position: absolute; left: 1.6rem; top: 100%;
  width: 1px; height: 1px;
}
.step-n {
  font-size: 0.7rem; font-weight: 700; color: var(--orange);
  letter-spacing: 0.08em;
  flex-shrink: 0; width: 4.2rem;
}
.process-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.process-step p { font-size: 0.82rem; color: var(--g2); line-height: 1.6; }
.process-step > div:last-child { flex: 1; }

/* Pipeline visual panel */
.pipeline-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
}
.pipeline-head {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.pipeline-head-title {
  font-size: 0.72rem; font-weight: 700; color: var(--g2); letter-spacing: 0.06em;
}
.pipeline-capture {
  position: relative;
  padding: 1.5rem 1.25rem 1rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,92,46,0.06), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.capture-stage {
  position: relative;
  flex: 0 0 auto;
  width: 44%;
  max-width: 190px;
  aspect-ratio: 884 / 1138;
}
.capture-runner-img {
  width: 100%; height: 100%; display: block;
  object-fit: contain;
  opacity: 0;
  animation: pRunnerMainIn 0.5s ease forwards;
  filter: drop-shadow(0 8px 20px rgba(255,92,46,0.15));
}
@keyframes pRunnerMainIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Lock-on boxes: corners snap into place like a camera focus lock */
.lock-box {
  position: absolute;
  pointer-events: none;
}
.lock-corner {
  position: absolute;
  width: 10px; height: 10px;
  border: 2px solid var(--orange);
  opacity: 0;
  animation: lockCornerIn 0.35s cubic-bezier(.2,.8,.3,1.2) forwards;
  animation-delay: 0.5s;
}
.lock-corner-alt { border-color: var(--orange2); animation-delay: 1.4s; }
.lock-corner-tl { top: 0; left: 0; border-width: 2px 0 0 2px; border-top-left-radius: 3px; }
.lock-corner-tr { top: 0; right: 0; border-width: 2px 2px 0 0; border-top-right-radius: 3px; }
.lock-corner-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; border-bottom-left-radius: 3px; }
.lock-corner-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; border-bottom-right-radius: 3px; }
@keyframes lockCornerIn { from { opacity: 0; transform: scale(1.4); } to { opacity: 1; transform: scale(1); } }

.capture-callouts {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  align-self: stretch;
  padding: 0.25rem 0;
}
.lock-callout {
  opacity: 0;
  animation: labelIn 0.3s ease forwards;
  animation-delay: 1.1s;
  padding-left: 0.7rem;
  border-left: 2px solid var(--orange3);
}
.lock-callout-shoe {
  animation-delay: 1.4s;
  border-left-color: rgba(255,124,82,0.18);
}
.lock-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem; font-weight: 800; color: var(--white);
  letter-spacing: 0.02em; line-height: 1.3;
}
.lock-sublabel {
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem; font-weight: 600; color: var(--orange2);
  letter-spacing: 0.01em;
  margin-top: 0.15rem;
}
.lock-sublabel-alt { color: var(--g2); }
@keyframes labelIn {
  from { opacity: 0; transform: translateX(-4px); }
  to   { opacity: 1; transform: translateX(0); }
}

.pipeline-arrow {
  display: flex; justify-content: center; color: var(--g3);
  padding: 0.15rem 0;
}
.pipeline-arrow svg { width: 1rem; height: 1rem; }
.pipeline-record {
  padding: 1.1rem 1.25rem 1.35rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.record-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.record-row:last-of-type { border-bottom: none; }
.record-key {
  font-size: 0.68rem; font-weight: 700; color: var(--g3);
  letter-spacing: 0.06em;
}
.record-val {
  font-size: 0.85rem; font-weight: 700; color: var(--white);
  font-variant-numeric: tabular-nums;
}
.record-status {
  display: flex; align-items: center; gap: 0.45rem;
  margin-top: 0.85rem;
  font-size: 0.75rem; font-weight: 600; color: var(--orange);
}
.record-status svg { width: 0.85rem; height: 0.85rem; flex-shrink: 0; }

/* ── ORGANIZERS ────────────────────────────────────── */
#organizadores { background: var(--bg); }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start; margin-top: 4rem;
}
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.benefit-item { display: flex; gap: 1rem; }
.b-icon {
  flex-shrink: 0;
  width: 1.8rem; height: 1.8rem;
  background: var(--orange3); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; margin-top: 0.1rem;
  color: var(--orange);
}
.b-icon svg { width: 0.95rem; height: 0.95rem; }
.b-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.b-desc { font-size: 0.83rem; color: var(--g2); line-height: 1.65; }
.cta-row { margin-top: 2.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-orange {
  background: var(--orange); color: var(--white);
  padding: 0.75rem 1.5rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 700;
  text-decoration: none; display: inline-block;
  transition: opacity .15s, transform .15s;
}
.btn-orange:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--g1);
  padding: 0.75rem 1.5rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; display: inline-block;
  border: 1px solid var(--border2);
  transition: border-color .15s, color .15s, transform .15s;
}
.btn-ghost:hover { border-color: var(--g2); color: var(--white); transform: translateY(-1px); }

/* Report card */
.report-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.rc-head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.02);
}
.rc-title { font-size: 0.8rem; font-weight: 700; color: var(--white); }
.rc-badge {
  font-size: 0.66rem; font-weight: 700; color: var(--orange);
  background: var(--orange3); border: 1px solid rgba(255,92,46,0.2);
  padding: 0.18rem 0.55rem; border-radius: 4px; letter-spacing: 0.04em;
}
.rc-body { padding: 1.25rem; }
.rc-kpis {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0.75rem; margin-bottom: 1.25rem;
}
.rc-kpi {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.75rem;
  text-align: center;
}
.rc-val { font-size: 1.4rem; font-weight: 800; color: var(--orange); }
.rc-lbl { font-size: 0.68rem; color: var(--g3); margin-top: 0.2rem; line-height: 1.4; }
.rc-section-label {
  font-size: 0.68rem; font-weight: 700; color: var(--g3);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem;
}
.bar-row { margin-bottom: 0.65rem; }
.bar-meta { display: flex; justify-content: space-between; margin-bottom: 0.35rem; }
.bar-name { font-size: 0.78rem; color: var(--g1); }
.bar-pct { font-size: 0.78rem; color: var(--orange); font-weight: 700; }
.bar-track {
  height: 5px; background: var(--g4); border-radius: 3px; overflow: hidden;
}
.bar-fill { height: 100%; background: var(--orange); border-radius: 3px; }
.rc-sponsor {
  margin-top: 1rem; padding: 0.9rem;
  background: rgba(255,92,46,0.06); border: 1px solid rgba(255,92,46,0.15);
  border-radius: 10px;
}
.rc-sponsor-label {
  font-size: 0.68rem; font-weight: 700; color: var(--orange);
  letter-spacing: 0.06em; margin-bottom: 0.35rem;
}
.rc-sponsor-text { font-size: 0.8rem; color: var(--g1); line-height: 1.5; }

/* ── BRANDS ────────────────────────────────────────── */
#marcas { background: var(--panel); }
.brand-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; margin-top: 4rem;
  background: var(--border);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.brand-card {
  background: var(--card);
  padding: 1.75rem;
  transition: background .2s;
}
.brand-card:hover { background: rgba(255,92,46,0.03); }
.bc-icon {
  width: 2rem; height: 2rem;
  background: var(--orange3); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; margin-bottom: 1rem;
  color: var(--orange);
}
.bc-icon svg { width: 1.05rem; height: 1.05rem; }
.brand-card h4 { font-size: 0.925rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.brand-card p { font-size: 0.82rem; color: var(--g2); line-height: 1.65; }

/* Comparison */
.comparison {
  margin-top: 3rem;
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.comp-head {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  padding: 0.85rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 700; color: var(--g3);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.comp-head span:not(:first-child) { text-align: center; }
.comp-head span:last-child { color: var(--orange); }
.comp-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background .15s;
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(255,255,255,0.02); }
.comp-feat { font-size: 0.875rem; color: var(--g1); }
.comp-val { text-align: center; font-size: 0.9rem; font-weight: 600; }
.comp-val.yes { color: var(--orange); }
.comp-val.no  { color: var(--g3); }

/* ── SPORTS ────────────────────────────────────────── */
#deportes { background: var(--bg); }

.sport-cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; margin-top: 3.5rem;
  background: var(--border);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.sport-card {
  background: var(--card);
  padding: 1.5rem;
  display: flex; flex-direction: column;
  transition: background .2s;
}
.sport-card:hover { background: rgba(255,92,46,0.03); }
.sc-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.1rem;
}
.sc-icon {
  width: 2.1rem; height: 2.1rem;
  background: var(--orange3); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.sc-icon svg { width: 1.1rem; height: 1.1rem; }
.sc-status {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.22rem 0.55rem; border-radius: 100px;
}
.sc-status-live {
  color: var(--orange); background: var(--orange3);
  border: 1px solid rgba(255,92,46,0.25);
}
.sport-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.sc-desc { font-size: 0.8rem; color: var(--g2); line-height: 1.65; }

.sports-expansion {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 16px;
}
.se-label {
  font-size: 0.7rem; font-weight: 700; color: var(--g3);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.sports-grid {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.sport-chip {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.05rem;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; color: var(--g2);
}
.chip-icon { width: 14px; height: 14px; flex-shrink: 0; }
.sports-note {
  margin-top: 1.5rem; font-size: 0.85rem; color: var(--g3);
}

/* ── CTA ───────────────────────────────────────────── */
#contacto { background: var(--panel); text-align: center; }
.cta-inner {
  max-width: 680px; margin: 0 auto;
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 24px; padding: 5rem 3rem;
  backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.cta-inner::after {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,92,46,0.06), transparent 70%);
  pointer-events: none;
}
.cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.025em; margin-bottom: 1rem; line-height: 1.18;
}
.cta-inner p { font-size: 1rem; color: var(--g2); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-mail {
  margin-top: 1.75rem; font-size: 0.85rem; color: var(--g3);
  position: relative; z-index: 1;
}
.cta-mail a { color: var(--orange); text-decoration: none; }
.cta-mail a:hover { text-decoration: underline; }

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 2rem clamp(1.5rem, 5vw, 5rem);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
footer p { font-size: 0.78rem; color: var(--g3); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hiw-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .brand-grid { grid-template-columns: 1fr; }
  .sport-cards { grid-template-columns: 1fr 1fr; }
  .section-dots { display: none; }
}
@media (min-width: 901px) {
  .nav-burger { display: none !important; }
  .mobile-menu { display: none !important; }
  .mobile-section-nav { display: none !important; }
}
@media (max-width: 640px) {
  html { scroll-snap-type: y mandatory; }
  .hero-split { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-section-nav { display: flex; }
  section {
    padding: 88px 1.5rem 84px;
    min-height: 100svh;
  }
  .hero {
    padding: 88px 1.5rem 84px;
    min-height: 100svh;
  }
  .rc-kpis { grid-template-columns: 1fr 1fr; }
  .feed-content { grid-template-columns: 1fr 1fr; padding: 1rem; gap: 0.6rem; }
  .process-step { padding: 1.2rem 1.25rem; }
  .step-n { width: 3.6rem; font-size: 0.65rem; }
  .sport-cards { grid-template-columns: 1fr; }
}
