/* =========================================================
   SPORT360® — Rediseño profesional negro + verde neón
   ========================================================= */

:root {
  --bg: #080a07;
  --bg-soft: #0d100c;
  --panel: #11150f;
  --panel-2: #151a13;
  --panel-3: #1a2017;
  --lime: #b8ff1e;
  --lime-strong: #95ef00;
  --lime-soft: #dbff8e;
  --white: #f7f9f2;
  --muted: #aab2a2;
  --muted-2: #71786d;
  --line: rgba(233, 255, 218, .12);
  --line-strong: rgba(184, 255, 30, .32);
  --danger: #ff6b6b;
  --shadow: 0 30px 80px rgba(0, 0, 0, .42);
  --shadow-lime: 0 24px 60px rgba(151, 239, 0, .16);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --header-height: 84px;
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(184, 255, 30, .055), transparent 25rem),
    var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: #070907; background: var(--lime); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 10px;
  color: #071000;
  background: var(--lime);
  font-weight: 800;
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    color .22s ease,
    box-shadow .22s ease;
}

.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(184,255,30,.28); outline-offset: 3px; }

.button-primary {
  color: #081000;
  background: linear-gradient(135deg, var(--lime), var(--lime-strong));
  box-shadow: 0 12px 34px rgba(151, 239, 0, .18);
}

.button-primary:hover {
  box-shadow: 0 16px 44px rgba(151, 239, 0, .28);
}

.button-outline {
  color: var(--white);
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.16);
}

.button-outline:hover {
  color: var(--lime);
  border-color: var(--line-strong);
  background: rgba(184,255,30,.05);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: .88rem;
}

.button-block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-weight: 800;
}

.text-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.text-link:hover svg { transform: translateX(4px); }
.text-link svg { transition: transform .2s ease; }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 6, .88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  width: 172px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}

.desktop-nav a {
  position: relative;
  color: #c2c8bb;
  font-size: .88rem;
  font-weight: 700;
  transition: color .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -13px;
  height: 2px;
  background: var(--lime);
  transition: right .24s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active { color: var(--white); }

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.03);
  cursor: pointer;
}

.menu-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  padding: 22px;
  background: rgba(7,9,6,.98);
  backdrop-filter: blur(18px);
}

.mobile-menu nav {
  width: min(100%, 520px);
  margin-inline: auto;
  display: grid;
  gap: 7px;
}

.mobile-menu nav > a:not(.button) {
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 58px) 0 48px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(6,8,5,.98) 0%, rgba(6,8,5,.9) 43%, rgba(6,8,5,.68) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: auto -18% -35% 30%;
  height: 500px;
  transform: rotate(-10deg);
  border: 1px solid rgba(184,255,30,.12);
  background: linear-gradient(135deg, rgba(184,255,30,.045), transparent);
}

.hero-grid,
.platform-grid-bg,
.contact-grid-bg {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-light {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-light-a {
  width: 420px;
  height: 420px;
  right: 4%;
  top: 8%;
  background: rgba(184,255,30,.13);
}

.hero-light-b {
  width: 260px;
  height: 260px;
  left: 18%;
  bottom: 6%;
  background: rgba(23,102,255,.08);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, .82fr);
  align-items: center;
  gap: 72px;
}

.hero-copy { padding-block: 44px; }

.hero-copy h1 {
  max-width: 710px;
  margin: 16px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.4vw, 5.4rem);
  line-height: .82;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: block;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(184,255,30,.12);
}

.hero-copy > p {
  max-width: 670px;
  margin: 0;
  color: #bec5b7;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 26px;
  color: #d5dacd;
  font-size: .87rem;
  font-weight: 700;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-highlights svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.2;
}

.hero-mini-stats {
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-mini-stats article {
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.hero-mini-stats article:last-child {
  padding-right: 0;
  padding-left: 20px;
  border-right: 0;
}

.hero-mini-stats article:nth-child(2) { padding-left: 20px; }

.hero-mini-stats strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.hero-mini-stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-media {
  position: relative;
  width: min(100%, 520px);
  margin-left: auto;
  transform: translateY(var(--parallax-y, 0px));
}

.video-accent {
  position: absolute;
  inset: 10% -20px -24px 28%;
  z-index: -1;
  border-radius: 28px;
  background: var(--lime);
  opacity: .85;
  transform: rotate(3deg);
  filter: saturate(1.2);
}

.video-card-main {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  background: #0c0f0b;
  box-shadow: var(--shadow);
}

.video-card-main::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.045);
  border-radius: inherit;
}

.video-label {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: #889081;
  background: #11150f;
  border-bottom: 1px solid var(--line);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.video-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.video-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime);
}

.video-frame-main {
  position: relative;
  aspect-ratio: 9 / 12.4;
  max-height: 660px;
  overflow: hidden;
  background: #030403;
}

.video-frame-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sound-button {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: var(--white);
  background: rgba(5,7,4,.78);
  backdrop-filter: blur(10px);
  font-size: .77rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}

.sound-button:hover { transform: translateY(-2px); }
.sound-button.is-hidden { opacity: 0; pointer-events: none; }
.sound-button svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 212px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(14,18,12,.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
}

.floating-card-top { top: 16%; left: -76px; }
.floating-card-bottom { right: -48px; bottom: 12%; }

.floating-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #081000;
  background: var(--lime);
}

.floating-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: var(--muted); font-size: .67rem; }
.floating-card strong { font-size: .83rem; }

.quick-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.quick-card {
  min-height: 92px;
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15,18,13,.82);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.quick-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: rgba(184,255,30,.06);
}

.quick-card > svg:first-child {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--lime);
  border: 1px solid rgba(184,255,30,.24);
  border-radius: 10px;
  background: rgba(184,255,30,.07);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.quick-card strong, .quick-card small { display: block; }
.quick-card strong { font-size: .9rem; }
.quick-card small { color: var(--muted); font-size: .71rem; }
.quick-arrow { width: 18px; height: 18px; fill: none; stroke: var(--muted); stroke-width: 1.8; }

/* Encabezados */
.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading h2,
.platform-copy h2,
.pricing-copy h2,
.faq-copy h2,
.contact-copy h2 {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.section-heading p,
.platform-copy > p,
.pricing-copy > p,
.faq-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  align-items: end;
  gap: 50px;
}

.section-heading-split h2 { max-width: 700px; }
.section-heading-split p { padding-bottom: 10px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered p { max-width: 670px; margin-inline: auto; }

/* Módulos */
.modules-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(184,255,30,.045), transparent 24rem),
    #0a0c09;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.module-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.035), transparent 45%),
    var(--panel);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.module-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(184,255,30,.14);
  box-shadow: 0 0 0 28px rgba(184,255,30,.025), 0 0 0 58px rgba(184,255,30,.018);
}

.module-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lime);
}

.module-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #535b4f;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.module-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(184,255,30,.25);
  border-radius: 14px;
  color: var(--lime);
  background: rgba(184,255,30,.07);
}

.module-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.module-kicker {
  color: var(--lime);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.module-card h3 {
  margin: 9px 0 12px;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.module-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

.module-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d6dbd1;
  font-size: .78rem;
  font-weight: 700;
}

.module-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(184,255,30,.45);
}

/* Plataforma */
.platform-section {
  background: #090b08;
  isolation: isolate;
}

.platform-grid-bg { opacity: .18; }

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: 72px;
}

.platform-copy h2 { max-width: 640px; }
.platform-copy > p { max-width: 610px; }

.profile-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.profile-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.018);
}

.profile-list article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #071000;
  background: var(--lime);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.profile-list h3 { margin: 0 0 4px; font-size: 1rem; }
.profile-list p { margin: 0; color: var(--muted); font-size: .82rem; }

.devices-stage {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-laptop {
  position: relative;
  width: min(100%, 650px);
  filter: drop-shadow(0 34px 45px rgba(0,0,0,.48));
}

.device-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 12px;
  overflow: hidden;
  border: 1px solid #343b32;
  border-radius: 18px 18px 9px 9px;
  background: #070907;
}

.device-camera {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #42483e;
}

.device-base {
  width: 112%;
  height: 22px;
  margin-left: -6%;
  border-radius: 3px 3px 22px 22px;
  background: linear-gradient(#474c45, #151814);
  clip-path: polygon(5% 0,95% 0,100% 100%,0 100%);
}

.dashboard-top {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #0d100c;
}

.dash-brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .03em;
}

.dash-brand span { color: var(--lime); }
.dash-user { color: var(--muted); font-size: .55rem; font-weight: 800; }

.dashboard-body {
  height: calc(100% - 42px);
  display: grid;
  grid-template-columns: 52px 1fr;
}

.dashboard-body aside {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 18px 14px;
  background: #0b0e0a;
  border-right: 1px solid var(--line);
}

.dashboard-body aside i {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #252b23;
}

.dashboard-body aside i.active { background: var(--lime); }

.dashboard-main { padding: 24px; background: linear-gradient(140deg,#121610,#0c0f0b); }
.dash-label { color: var(--lime); font-size: .52rem; font-weight: 800; letter-spacing: .13em; }
.dashboard-main h3 { margin: 5px 0 18px; font-size: 1.15rem; }

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
}

.dash-metrics article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.022);
}

.dash-metrics small, .dash-metrics strong { display: block; }
.dash-metrics small { color: var(--muted); font-size: .47rem; }
.dash-metrics strong { margin-top: 4px; font-size: .78rem; }

.dash-chart {
  height: 132px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px);
  background-size: 100% 25%;
}

.dash-chart span {
  flex: 1;
  min-height: 10px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(var(--lime), #4f8300);
}

.device-phone {
  position: absolute;
  width: 178px;
  padding: 8px;
  border: 1px solid #343b32;
  border-radius: 28px;
  background: #060806;
  box-shadow: 0 28px 45px rgba(0,0,0,.46);
}

.phone-a { left: -16px; bottom: 18px; transform: rotate(-5deg); }
.phone-b { right: -7px; bottom: 0; transform: rotate(5deg); }

.phone-speaker {
  width: 48px;
  height: 5px;
  margin: 3px auto 8px;
  border-radius: 10px;
  background: #2f342d;
}

.phone-screen {
  min-height: 310px;
  padding: 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(184,255,30,.1), transparent 130px),
    #11150f;
}

.phone-brand {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 800;
}

.phone-brand::first-letter { color: var(--lime); }
.phone-screen small { display: block; margin-top: 28px; color: var(--lime); font-size: .48rem; font-weight: 800; letter-spacing: .12em; }
.phone-screen strong { display: block; margin-top: 6px; font-family: var(--font-display); font-size: 2rem; }
.phone-progress { height: 7px; margin-top: 13px; overflow: hidden; border-radius: 20px; background: #273024; }
.phone-progress i { display: block; width: 82%; height: 100%; background: var(--lime); }
.phone-screen ul { display: grid; gap: 9px; margin: 22px 0 0; padding: 0; list-style: none; }
.phone-screen li { display: flex; align-items: center; gap: 8px; color: #bec5b7; font-size: .55rem; }
.phone-screen li span { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.phone-check { width: 58px; height: 58px; display: grid; place-items: center; margin: 22px auto 14px; border: 2px solid var(--lime); border-radius: 50%; color: var(--lime); font-size: 1.8rem; }
.phone-screen p { color: var(--muted); font-size: .56rem; text-align: center; }
.phone-screen button { width: 100%; min-height: 34px; margin-top: 13px; border: 0; border-radius: 8px; color: #071000; background: var(--lime); font-size: .53rem; font-weight: 800; }

/* Implementación */
.implementation-section {
  background:
    radial-gradient(circle at 50% 100%, rgba(184,255,30,.045), transparent 24rem),
    #0c0f0b;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.step-number {
  position: absolute;
  right: 24px;
  top: 20px;
  color: #3e4739;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 14px;
  color: #071000;
  background: var(--lime);
}

.step-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.step-card h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 2rem; text-transform: uppercase; }
.step-card p { margin: 0; color: var(--muted); font-size: .9rem; }

/* Precio */
.pricing-section {
  background:
    linear-gradient(130deg, rgba(184,255,30,.035), transparent 50%),
    #080a07;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(390px, .55fr);
  align-items: center;
  gap: 76px;
}

.pricing-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d4dacd;
  font-size: .87rem;
  font-weight: 700;
}

.pricing-benefits svg { width: 18px; height: 18px; fill: none; stroke: var(--lime); stroke-width: 2.2; }

.pricing-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(184,255,30,.08), transparent 43%),
    #11150f;
  box-shadow: var(--shadow-lime);
}

.pricing-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  color: #071000;
  background: var(--lime);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.price-label { display: block; margin-top: 26px; color: var(--muted); font-size: .8rem; }
.price-main { display: flex; align-items: end; gap: 8px; margin-top: 4px; }
.price-main strong { font-family: var(--font-display); font-size: 4.2rem; line-height: 1; }
.price-main span { padding-bottom: 8px; color: var(--muted); font-weight: 700; }

.daily-clp-card {
  display: grid;
  gap: 4px;
  margin: 26px 0 22px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(0,0,0,.22);
}

.daily-clp-card small { color: var(--muted); }
.daily-clp-card strong { color: var(--lime); font-size: 1.08rem; }
.daily-clp-card span { color: var(--muted-2); font-size: .67rem; }
.pricing-note { display: block; margin-top: 13px; color: var(--muted-2); font-size: .69rem; text-align: center; }

/* FAQ */
.faq-section { background: #0c0f0b; }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(480px, 1fr);
  gap: 78px;
}

.faq-copy { position: sticky; top: calc(var(--header-height) + 30px); align-self: start; }
.faq-copy .text-link { margin-top: 26px; }

.faq-list { display: grid; gap: 10px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #071000;
  background: var(--lime);
}

.faq-answer { padding: 0 22px 22px; }
.faq-answer p { margin: 0; color: var(--muted); font-size: .9rem; }

/* Contacto */
.contact-section {
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 40%, rgba(184,255,30,.08), transparent 26rem),
    #070907;
}

.contact-grid-bg { opacity: .16; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(500px, 1fr);
  align-items: start;
  gap: 74px;
}

.contact-copy { padding-top: 22px; }
.contact-copy h2 { max-width: 670px; }
.contact-copy > p { max-width: 600px; }

.contact-data {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-data a {
  max-width: 440px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.018);
}

.contact-data svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 10px;
  color: #071000;
  background: var(--lime);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.contact-data small,
.contact-data strong { display: block; }

.contact-data small { color: var(--muted); font-size: .66rem; }
.contact-data strong { font-size: .88rem; }

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.03), transparent 45%),
    #11150f;
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.form-heading span { color: var(--lime); font-size: .67rem; font-weight: 900; letter-spacing: .12em; }
.form-heading h3 { margin: 4px 0 0; font-family: var(--font-display); font-size: 2rem; text-transform: uppercase; }
.secure-chip { padding: 8px 10px; border-radius: 20px; color: var(--lime) !important; background: rgba(184,255,30,.08); letter-spacing: 0 !important; white-space: nowrap; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }

.field label {
  color: #e5eadf;
  font-size: .72rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--white);
  background: #0a0d09;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input,
.field select { height: 48px; padding: 0 14px; }

.field textarea {
  min-height: 112px;
  resize: vertical;
  padding: 13px 14px;
}

.field input::placeholder,
.field textarea::placeholder { color: #60685d; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(184,255,30,.08);
}

.field [aria-invalid="true"] { border-color: var(--danger); }
.field-error { min-height: 14px; color: #ff8585; font-size: .66rem; }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .72rem;
  cursor: pointer;
}

.consent-row input { accent-color: var(--lime); margin-top: 3px; }
.form-status { min-height: 22px; margin: 10px 0; color: var(--lime); font-size: .75rem; }

/* Footer */
.site-footer {
  padding: 68px 0 22px;
  border-top: 1px solid var(--line);
  background: #050605;
}

.footer-main {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 80px;
}

.footer-brand img { width: 190px; height: 90px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 430px; margin: 13px 0 0; color: var(--muted); font-size: .85rem; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.footer-nav > div { display: grid; align-content: start; gap: 9px; }
.footer-nav strong { margin-bottom: 5px; color: var(--white); font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; }
.footer-nav a { color: var(--muted); font-size: .77rem; }
.footer-nav a:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: .71rem;
}

.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.visitor-counter i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.whatsapp-float,
.scroll-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
}

.whatsapp-float {
  bottom: 22px;
  width: 58px;
  height: 58px;
  color: #071000;
  background: var(--lime);
}

.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.scroll-top {
  bottom: 92px;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: #171b15;
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
}

.scroll-top.is-visible { opacity: 1; visibility: visible; }
.scroll-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }



/* Clientes Sport360 */
.clients-section {
  isolation: isolate;
  padding-top: 118px;
  background:
    linear-gradient(180deg, rgba(184,255,30,.025), transparent 22%),
    radial-gradient(circle at 7% 20%, rgba(184,255,30,.09), transparent 24rem),
    radial-gradient(circle at 92% 82%, rgba(184,255,30,.06), transparent 28rem),
    #0d100c;
  border-top: 1px solid rgba(184,255,30,.1);
  border-bottom: 1px solid var(--line);
}

.clients-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

.clients-orbit {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(184,255,30,.12);
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    0 0 0 44px rgba(184,255,30,.018),
    0 0 0 92px rgba(184,255,30,.012);
}

.clients-orbit-a { top: 70px; right: -250px; }
.clients-orbit-b { bottom: 90px; left: -310px; width: 520px; height: 520px; }

.clients-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 34px;
}

.clients-heading h2 {
  max-width: 800px;
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 5.7vw, 6.2rem);
  line-height: .88;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.clients-intro {
  padding: 0 0 10px 24px;
  border-left: 2px solid var(--lime);
}

.clients-intro strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1rem;
}

.clients-intro p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}

.clients-summary {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 128px;
  align-items: center;
  gap: 26px;
  margin-bottom: 22px;
  padding: 18px 22px;
  overflow: hidden;
  border: 1px solid rgba(184,255,30,.22);
  border-radius: 17px;
  background:
    linear-gradient(110deg, rgba(184,255,30,.105), transparent 38%),
    rgba(11,14,10,.92);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.clients-summary::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -90px;
  border-radius: 50%;
  background: rgba(184,255,30,.12);
  filter: blur(45px);
}

.clients-summary-mark {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 205px;
}

.clients-summary-mark span {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 3.7rem;
  font-weight: 800;
  line-height: .8;
}

.clients-summary-mark small {
  max-width: 100px;
  color: #d8decf;
  font-size: .67rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.clients-summary p {
  margin: 0;
  color: #c2c9ba;
  font-size: .88rem;
}

.clients-summary-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
  box-shadow: 0 0 14px rgba(184,255,30,.35);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.client-card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 19px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), transparent 42%),
    rgba(17,21,15,.95);
  box-shadow: 0 16px 42px rgba(0,0,0,.2);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.client-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -90%;
  left: -55%;
  width: 48%;
  height: 260%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: rotate(22deg);
  transition: left .65s ease;
}

.client-card:hover {
  transform: translateY(-7px);
  border-color: rgba(184,255,30,.42);
  box-shadow: 0 24px 58px rgba(0,0,0,.34), 0 0 0 1px rgba(184,255,30,.06);
}

.client-card:hover::before { left: 132%; }

.client-logo-surface {
  position: relative;
  height: 184px;
  display: grid;
  place-items: center;
  padding: 17px;
  overflow: hidden;
  border-radius: 13px;
  background:
    radial-gradient(circle at 50% 25%, #ffffff 0, #f5f6f2 55%, #e7eae2 100%);
  box-shadow: inset 0 0 0 1px rgba(5,10,4,.075);
}

.client-logo-surface::after {
  content: "";
  position: absolute;
  inset: auto 12% 5px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  filter: blur(8px);
  opacity: .42;
}

.client-logo-surface img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,.15));
  transition: transform .3s ease, filter .3s ease;
}

.client-card:hover .client-logo-surface img {
  transform: scale(1.045);
  filter: drop-shadow(0 13px 13px rgba(0,0,0,.2));
}

.client-card figcaption {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 8px 3px;
  color: #e9ede4;
  font-size: .77rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.clients-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 25px 28px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background:
    radial-gradient(circle at 15% 50%, rgba(184,255,30,.07), transparent 19rem),
    #11150f;
}

.clients-cta span,
.clients-cta strong { display: block; }
.clients-cta span {
  margin-bottom: 4px;
  color: var(--lime);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.clients-cta strong { font-size: 1.03rem; }

@media (max-width: 1120px) {
  .clients-heading { gap: 38px; }
  .clients-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .clients-section { padding-top: 92px; }
  .clients-heading { grid-template-columns: 1fr; gap: 22px; }
  .clients-intro { max-width: 700px; }
  .clients-summary { grid-template-columns: auto 1fr; }
  .clients-summary-line { display: none; }
  .client-logo-surface { height: 176px; }
}

@media (max-width: 660px) {
  .clients-heading h2 { font-size: clamp(3.1rem, 16vw, 4.7rem); }
  .clients-intro { padding-left: 17px; }
  .clients-summary { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
  .clients-summary-mark { min-width: 0; }
  .clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .client-card { padding: 8px; border-radius: 15px; }
  .client-logo-surface { height: 142px; padding: 12px; border-radius: 10px; }
  .client-card figcaption { min-height: 56px; padding-inline: 4px; font-size: .66rem; }
  .clients-cta { align-items: flex-start; flex-direction: column; padding: 22px; }
  .clients-cta .button { width: 100%; }
}

@media (max-width: 420px) {
  .client-logo-surface { height: 124px; }
}


/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .header-actions { margin-left: auto; }
  .hero-layout { grid-template-columns: minmax(0,1fr) minmax(390px,.72fr); gap: 38px; }
  .hero-copy h1 { font-size: clamp(3rem, 6vw, 4.6rem); }
  .floating-card-top { left: -30px; }
  .floating-card-bottom { right: -18px; }
  .platform-layout { grid-template-columns: 1fr; }
  .platform-copy { max-width: 760px; }
  .devices-stage { width: min(100%, 820px); margin-inline: auto; }
}

@media (max-width: 900px) {
  :root { --header-height: 74px; }
  .section { padding: 88px 0; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .hero { padding-top: calc(var(--header-height) + 34px); }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 8px; }
  .hero-copy h1 { max-width: 760px; font-size: clamp(2.8rem, 9vw, 4.4rem); }
  .hero-media { width: min(100%, 560px); margin: 18px auto 0; }
  .floating-card-top { left: -10px; }
  .quick-modules { grid-template-columns: repeat(2,1fr); }
  .section-heading-split { grid-template-columns: 1fr; gap: 12px; }
  .module-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-layout,
  .faq-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-copy { position: static; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 660px) {
  .header-actions > .button { display: none; }
  .brand { width: 148px; }
  .hero-copy h1 { font-size: clamp(2.6rem, 11vw, 3.8rem); }
  .hero-copy > p { font-size: .97rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-highlights { display: grid; }
  .hero-mini-stats { grid-template-columns: repeat(3,1fr); }
  .hero-mini-stats strong { font-size: 1.7rem; }
  .hero-mini-stats span { font-size: .57rem; }
  .floating-card { display: none; }
  .video-accent { right: -8px; bottom: -12px; }
  .quick-modules { grid-template-columns: 1fr; }
  .section-heading h2,
  .platform-copy h2,
  .pricing-copy h2,
  .faq-copy h2,
  .contact-copy h2 { font-size: clamp(3.1rem, 16vw, 4.6rem); }
  .module-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .module-card { min-height: 390px; }
  .platform-layout { gap: 36px; }
  .devices-stage { min-height: 470px; }
  .device-laptop { width: 96%; }
  .phone-a { left: 0; bottom: -5px; }
  .phone-b { right: 0; bottom: -20px; }
  .device-phone { width: 130px; border-radius: 22px; }
  .phone-screen { min-height: 228px; padding: 11px; border-radius: 15px; }
  .phone-screen strong { font-size: 1.45rem; }
  .phone-screen small { margin-top: 16px; }
  .phone-screen ul { margin-top: 12px; }
  .phone-screen button { font-size: .45rem; }
  .pricing-benefits { grid-template-columns: 1fr; }
  .price-main strong { font-size: 3.5rem; }
  .contact-form { padding: 20px; }
  .form-heading { display: block; }
  .secure-chip { display: inline-flex; margin-top: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .hero-copy h1 { font-size: 2.4rem; }
  .hero-mini-stats { gap: 8px; }
  .hero-mini-stats article,
  .hero-mini-stats article:nth-child(2),
  .hero-mini-stats article:last-child { padding-inline: 8px; }
  .footer-nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* =========================================================
   SLIDER DE CLIENTES — visible bajo el menú principal
   ========================================================= */
.client-marquee-shell {
  position: relative;
  z-index: 4;
  width: 100%;
  margin: 0 0 34px;
  overflow: hidden;
  border-top: 1px solid rgba(184,255,30,.14);
  border-bottom: 1px solid rgba(184,255,30,.18);
  background:
    linear-gradient(90deg, rgba(184,255,30,.055), transparent 22%, transparent 78%, rgba(184,255,30,.04)),
    rgba(8,11,7,.78);
  box-shadow: 0 18px 48px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
}
.client-marquee-heading {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 7px;
}
.client-marquee-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lime);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.client-marquee-heading > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(184,255,30,.75);
}
.client-marquee-heading strong {
  color: #dce2d6;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .025em;
  text-align: right;
}
.client-marquee-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 0 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.client-marquee-track {
  width: max-content;
  display: flex;
  will-change: transform;
  animation: clientMarquee 54s linear infinite;
}
.client-marquee-shell:hover .client-marquee-track,
.client-marquee-shell:focus-within .client-marquee-track { animation-play-state: paused; }
.client-marquee-group {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding-right: 12px;
}
.client-marquee-item {
  flex: 0 0 222px;
  min-width: 0;
  height: 78px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px 13px 8px 8px;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.05), transparent 45%), rgba(16,20,14,.95);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}
.client-marquee-logo {
  width: 70px;
  height: 60px;
  display: grid;
  place-items: center;
  padding: 5px;
  overflow: hidden;
  border-radius: 10px;
  background: radial-gradient(circle at 50% 28%, #fff 0, #f4f6f1 58%, #e6e9e1 100%);
  box-shadow: inset 0 0 0 1px rgba(5,10,4,.08);
}
.client-marquee-logo img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,.13));
}
.client-marquee-name {
  min-width: 0;
  color: #f2f5ed;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.22;
}
@keyframes clientMarquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
.hero { padding-top: calc(var(--header-height) + 18px); }
.client-logo-surface { padding: 22px; }
.client-logo-surface img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}
.client-card:hover .client-logo-surface img { transform: scale(1.025); }
@media (max-width:1120px){
  .client-marquee-heading strong{display:none}
  .client-marquee-item{flex-basis:205px}
}
@media (max-width:760px){
  .hero{padding-top:calc(var(--header-height) + 10px)}
  .client-marquee-shell{margin-bottom:22px}
  .client-marquee-heading{min-height:36px;padding-top:6px;padding-bottom:5px}
  .client-marquee-heading > span{font-size:.62rem}
  .client-marquee-viewport{padding-bottom:9px;-webkit-mask-image:linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent);mask-image:linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent)}
  .client-marquee-track{animation-duration:42s}
  .client-marquee-item{flex-basis:178px;height:68px;grid-template-columns:56px minmax(0,1fr);gap:9px;padding:6px 10px 6px 6px}
  .client-marquee-logo{width:56px;height:54px;padding:5px}
  .client-marquee-name{font-size:.67rem}
  .client-logo-surface{padding:17px}
}
@media (max-width:420px){
  .client-marquee-item{flex-basis:166px}
  .client-marquee-name{font-size:.64rem}
  .client-logo-surface{padding:14px}
}
@media (prefers-reduced-motion:reduce){
  .client-marquee-viewport{overflow-x:auto;-webkit-mask-image:none;mask-image:none;scrollbar-width:thin}
  .client-marquee-track{animation:none}
  .client-marquee-group[aria-hidden="true"]{display:none}
}

/* Ajuste definitivo: los logos quedan contenidos por coordenadas, sin recortes. */
.client-marquee-logo,
.client-logo-surface {
  position: relative;
}

.client-marquee-logo {
  padding: 0;
}

.client-marquee-logo img {
  position: absolute !important;
  inset: 5px !important;
  width: calc(100% - 10px) !important;
  height: calc(100% - 10px) !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

.client-logo-surface {
  padding: 0;
}

.client-logo-surface img {
  position: absolute !important;
  z-index: 1;
  inset: 16px !important;
  width: calc(100% - 32px) !important;
  height: calc(100% - 32px) !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 660px) {
  .client-logo-surface img {
    inset: 10px !important;
    width: calc(100% - 20px) !important;
    height: calc(100% - 20px) !important;
  }
}


/* =========================================================
   CARRUSEL 3D DE CLIENTES — estilo coverflow bajo el menú
   ========================================================= */
.clients-coverflow {
  position: relative;
  z-index: 6;
  width: 100%;
  padding: 12px 0 44px;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.clients-coverflow-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 480px;
  padding: 34px 30px 24px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 17% 13%, rgba(184,255,30,.18), transparent 25%),
    radial-gradient(circle at 87% 19%, rgba(39,113,255,.14), transparent 26%),
    linear-gradient(145deg, #f8fbf5 0%, #eef5e9 48%, #e7f0e2 100%);
  box-shadow:
    0 35px 95px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.clients-coverflow-panel::before,
.clients-coverflow-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.clients-coverflow-panel::before {
  width: 380px;
  height: 380px;
  left: -180px;
  bottom: -245px;
  border: 52px solid rgba(12,74,39,.08);
}

.clients-coverflow-panel::after {
  width: 270px;
  height: 270px;
  right: -145px;
  top: -155px;
  border: 42px solid rgba(34,102,255,.07);
}

.clients-coverflow-heading {
  position: relative;
  z-index: 5;
  max-width: 760px;
  margin: 0 auto 6px;
  text-align: center;
}

.clients-coverflow-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 10px;
  color: #0a5e2b;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.clients-coverflow-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184,255,30,.18), 0 0 18px rgba(117,190,0,.48);
}

.clients-coverflow-heading h2 {
  max-width: 700px;
  margin: 0 auto;
  color: #122017;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.clients-coverflow-heading h2 span {
  color: #08712f;
  text-shadow: 0 10px 28px rgba(8,113,47,.13);
}

.clients-coverflow-heading p {
  max-width: 640px;
  margin: 11px auto 0;
  color: #526057;
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.55;
}

.clients-coverflow-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 15px;
}

.clients-coverflow-help {
  color: #5e6b62;
  font-size: .72rem;
  font-weight: 800;
}

.clients-coverflow-spark {
  position: absolute;
  z-index: 4;
  color: #0b7b35;
  font-size: 2.5rem;
  line-height: 1;
  text-shadow: 0 8px 30px rgba(11,123,53,.22);
  pointer-events: none;
}

.clients-coverflow-spark-a {
  top: 48px;
  right: 8%;
  transform: rotate(10deg);
}

.clients-coverflow-spark-b {
  top: 84px;
  right: calc(8% - 21px);
  color: #256bff;
  font-size: 1.1rem;
}

.clients-coverflow-stage {
  position: relative;
  min-height: 285px;
  margin: 0 auto;
  padding: 4px 50px 28px;
}

.clients-coverflow-swiper {
  width: 100%;
  min-height: 265px;
  padding: 15px 0 18px;
  overflow: hidden;
}

.clients-coverflow-swiper .swiper-wrapper {
  align-items: center;
}

.client-coverflow-card {
  width: 216px;
  height: 242px;
  display: flex;
  flex-direction: column;
  padding: 11px 11px 14px;
  overflow: hidden;
  border: 1px solid rgba(16,52,28,.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,249,244,.9));
  box-shadow:
    0 22px 50px rgba(16,40,24,.20),
    inset 0 1px 0 #fff;
  transform-origin: center bottom;
  transition: opacity .35s ease, filter .35s ease, box-shadow .35s ease;
  cursor: grab;
}

.client-coverflow-card:active {
  cursor: grabbing;
}

.client-coverflow-card:not(.swiper-slide-active) {
  opacity: .78;
  filter: saturate(.86) brightness(.96);
}

.client-coverflow-card.swiper-slide-active {
  border-color: rgba(8,113,47,.32);
  box-shadow:
    0 30px 65px rgba(7,64,29,.28),
    0 0 0 3px rgba(184,255,30,.18),
    inset 0 1px 0 #fff;
}

.client-coverflow-logo {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 12px;
  border-radius: 13px;
  background:
    radial-gradient(circle at 48% 28%, #ffffff 0%, #f8faf6 62%, #eef2eb 100%);
  box-shadow:
    inset 0 0 0 1px rgba(16,52,28,.08),
    inset 0 -14px 30px rgba(16,52,28,.025);
}

.client-coverflow-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 28%, rgba(255,255,255,.7) 48%, transparent 68%);
  transform: translateX(-160%);
  transition: transform .9s ease;
  pointer-events: none;
}

.client-coverflow-card.swiper-slide-active .client-coverflow-logo::after {
  transform: translateX(160%);
}

.client-coverflow-logo img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto;
  padding: 0;
  filter: drop-shadow(0 9px 8px rgba(18,40,24,.15));
  transform: none !important;
  transition: filter .45s ease;
}

.client-coverflow-card.swiper-slide-active .client-coverflow-logo img {
  transform: none !important;
}

.client-coverflow-card strong {
  min-height: 43px;
  display: grid;
  place-items: center;
  padding: 11px 8px 0;
  color: #142219;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
}

.client-coverflow-nav {
  position: absolute;
  z-index: 20;
  top: 47%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8,113,47,.20);
  border-radius: 50%;
  background: rgba(255,255,255,.90);
  color: #075b29;
  box-shadow: 0 12px 30px rgba(14,48,27,.17);
  transform: translateY(-50%);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.client-coverflow-nav:hover,
.client-coverflow-nav:focus-visible {
  background: #0b7433;
  color: #fff;
  transform: translateY(-50%) scale(1.07);
}

.client-coverflow-nav span {
  display: block;
  margin-top: -3px;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.client-coverflow-prev { left: 8px; }
.client-coverflow-next { right: 8px; }

.client-coverflow-pagination {
  position: absolute;
  z-index: 15;
  left: 50% !important;
  bottom: 2px !important;
  width: auto !important;
  display: flex;
  justify-content: center;
  gap: 5px;
  transform: translateX(-50%);
}

.client-coverflow-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 !important;
  background: rgba(11,92,42,.28);
  opacity: 1;
  transition: width .25s ease, background .25s ease;
}

.client-coverflow-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 10px;
  background: #08712f;
}

/* El carrusel reemplaza al antiguo marquee, por lo que el hero conserva su espacio original. */
.hero { padding-top: calc(var(--header-height) + 18px); }

@media (max-width: 980px) {
  .clients-coverflow-panel {
    min-height: 445px;
    padding-inline: 20px;
  }

  .clients-coverflow-spark-a { right: 5%; }
  .clients-coverflow-spark-b { right: calc(5% - 20px); }
  .client-coverflow-card { width: 198px; height: 224px; }
  .clients-coverflow-stage { min-height: 265px; padding-inline: 43px; }
  .clients-coverflow-swiper { min-height: 245px; }
}

@media (max-width: 700px) {
  .clients-coverflow {
    padding-top: 7px;
    padding-bottom: 27px;
  }

  .clients-coverflow-panel {
    min-height: 407px;
    padding: 25px 10px 18px;
    border-radius: 22px;
  }

  .clients-coverflow-heading {
    padding-inline: 12px;
  }

  .clients-coverflow-heading h2 {
    font-size: clamp(1.85rem, 9.2vw, 2.7rem);
  }

  .clients-coverflow-heading p {
    max-width: 470px;
    font-size: .78rem;
  }

  .clients-coverflow-actions {
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }

  .clients-coverflow-actions .button {
    min-height: 39px;
    padding: 10px 17px;
  }

  .clients-coverflow-help { font-size: .64rem; }
  .clients-coverflow-spark { display: none; }

  .clients-coverflow-stage {
    min-height: 232px;
    padding: 4px 24px 25px;
  }

  .clients-coverflow-swiper {
    min-height: 215px;
    padding-top: 9px;
  }

  .client-coverflow-card {
    width: 164px;
    height: 190px;
    padding: 8px 8px 10px;
    border-radius: 14px;
  }

  .client-coverflow-logo {
    padding: 10px;
    border-radius: 10px;
  }

  .client-coverflow-card strong {
    min-height: 37px;
    padding-top: 8px;
    font-size: .61rem;
  }

  .client-coverflow-nav {
    width: 34px;
    height: 34px;
  }

  .client-coverflow-nav span { font-size: 1.55rem; }
  .client-coverflow-prev { left: 0; }
  .client-coverflow-next { right: 0; }
}

@media (max-width: 410px) {
  .clients-coverflow-panel { min-height: 395px; }
  .clients-coverflow-kicker { font-size: .59rem; }
  .client-coverflow-card { width: 150px; height: 178px; }
  .clients-coverflow-stage { min-height: 218px; }
  .clients-coverflow-swiper { min-height: 202px; }
}

@media (prefers-reduced-motion: reduce) {
  .client-coverflow-logo::after { display: none; }
  .client-coverflow-card,
  .client-coverflow-logo img,
  .client-coverflow-nav { transition: none; }
}


/* Ajuste final solicitado: todos los logos se muestran completos dentro del carrusel. */
.clients-coverflow .client-coverflow-logo {
  overflow: hidden;
  padding: 12px;
}
.clients-coverflow .client-coverflow-logo img {
  display: block;
  inline-size: 100% !important;
  block-size: 100% !important;
  max-inline-size: 100% !important;
  max-block-size: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

/* =========================================================
   SPORT360 — ORDEN Y OPTIMIZACIÓN RESPONSIVE 2026-07-27
   Hero > Clientes > Marketplace > Módulos
   ========================================================= */

#inicio,
#clientes,
#marketplace,
#modulos,
#plataforma,
#implementacion,
#precio,
#preguntas,
#contacto { scroll-margin-top: 0; }

/* El hero vuelve a ser el primer bloque visible y ocupa el alto disponible. */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 34px);
  padding-bottom: 42px;
}

.clients-coverflow {
  z-index: 4;
  padding: 46px 0 72px;
  background:
    radial-gradient(circle at 85% 8%, rgba(184,255,30,.055), transparent 24rem),
    linear-gradient(180deg, #070907 0%, #0a0d09 100%);
}

.clients-coverflow-panel {
  min-height: 500px;
  padding-top: 36px;
}

.clients-coverflow-stage { margin-top: 4px; }

/* Logo contenido por completo, sin zoom ni recorte en ninguna tarjeta. */
.clients-coverflow .client-coverflow-logo {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 14px;
}

.clients-coverflow .client-coverflow-logo img {
  position: static !important;
  inset: auto !important;
  display: block;
  inline-size: 100% !important;
  block-size: 100% !important;
  max-inline-size: 100% !important;
  max-block-size: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

/* Marketplace destacado */
.marketplace-section {
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(184,255,30,.07), transparent 34%),
    radial-gradient(circle at 82% 36%, rgba(184,255,30,.105), transparent 30rem),
    #080b07;
}

.marketplace-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 82%, transparent);
}

.marketplace-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.marketplace-orb-a {
  width: 360px;
  height: 360px;
  left: -160px;
  top: 6%;
  background: rgba(184,255,30,.11);
}

.marketplace-orb-b {
  width: 310px;
  height: 310px;
  right: -120px;
  bottom: 2%;
  background: rgba(28,93,255,.08);
}

.marketplace-layout {
  display: grid;
  grid-template-columns: minmax(330px, .72fr) minmax(580px, 1.28fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.marketplace-copy h2 {
  max-width: 650px;
  margin: 16px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5.6vw, 6.1rem);
  font-weight: 900;
  line-height: .89;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.marketplace-copy h2 span {
  display: block;
  color: var(--lime);
  text-shadow: 0 0 32px rgba(184,255,30,.13);
}

.marketplace-copy > p {
  max-width: 590px;
  margin: 0;
  color: #b8c1b2;
  font-size: 1rem;
}

.marketplace-benefits {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.marketplace-benefits article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(16,20,14,.72);
  backdrop-filter: blur(12px);
}

.marketplace-benefits article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184,255,30,.24);
  border-radius: 12px;
  color: var(--lime);
  background: rgba(184,255,30,.075);
}

.marketplace-benefits svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.marketplace-benefits strong,
.marketplace-benefits small { display: block; }
.marketplace-benefits strong { font-size: .92rem; }
.marketplace-benefits small { margin-top: 2px; color: var(--muted); font-size: .74rem; }

.marketplace-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.marketplace-cta-row > span {
  color: var(--muted-2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.marketplace-demo {
  position: relative;
  min-width: 0;
}

.shop-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  color: #111910;
  background: #f4f7f1;
  box-shadow: 0 38px 100px rgba(0,0,0,.45), 0 0 0 1px rgba(184,255,30,.06);
}

.shop-topbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(9,32,14,.1);
  background: rgba(255,255,255,.88);
}

.shop-brand-mini {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-brand-mini > span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #071007;
  background: var(--lime);
}

.shop-brand-mini svg,
.shop-cart-preview svg,
.shop-search svg,
.shop-add-preview svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.shop-brand-mini svg { width: 21px; height: 21px; }
.shop-brand-mini strong,
.shop-brand-mini small { display: block; }
.shop-brand-mini strong { font-size: .85rem; }
.shop-brand-mini small { color: #758073; font-size: .66rem; }

.shop-cart-preview {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 9px 0 14px;
  border: 1px solid rgba(8,60,20,.14);
  border-radius: 12px;
  color: #102016;
  background: #fff;
  font-size: .76rem;
  font-weight: 850;
  cursor: default;
  box-shadow: 0 8px 22px rgba(18,47,24,.08);
  transition: transform .2s ease, border-color .2s ease;
}

.shop-cart-preview svg { width: 18px; height: 18px; }
.shop-cart-preview b {
  min-width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #071007;
  background: var(--lime);
  font-size: .72rem;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 15px 18px 5px;
}

.shop-search {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid rgba(13,45,20,.1);
  border-radius: 10px;
  color: #8a9388;
  background: #fff;
  font-size: .7rem;
}

.shop-search svg { width: 16px; height: 16px; }

.shop-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.shop-chips::-webkit-scrollbar { display: none; }
.shop-chips span {
  white-space: nowrap;
  padding: 7px 10px;
  border: 1px solid rgba(14,50,22,.1);
  border-radius: 999px;
  color: #566255;
  background: rgba(255,255,255,.74);
  font-size: .61rem;
  font-weight: 800;
}
.shop-chips span.is-active { color: #071007; background: var(--lime); border-color: transparent; }

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 13px 18px 46px;
}

.shop-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(15,50,22,.1);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(21,52,27,.08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.shop-product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(21,52,27,.13); }

.shop-product-image {
  position: relative;
  height: 128px;
  padding: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #eff5eb, #dce8d6);
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  object-position: center;
  transition: transform .28s ease;
}

.shop-product-card:hover .shop-product-image img { transform: scale(1.035); }

.shop-badge,
.shop-stock {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  border-radius: 7px;
  color: #071007;
  background: var(--lime);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.shop-badge-dark { color: #fff; background: #0d130d; }
.shop-stock { left: auto; right: 10px; color: #fff; background: rgba(10,16,10,.78); backdrop-filter: blur(8px); }

.shop-product-info { padding: 12px 13px 13px; }
.shop-product-info > small {
  display: block;
  color: #16803b;
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.shop-product-info h3 {
  min-height: 37px;
  margin: 4px 0 10px;
  color: #101a11;
  font-size: .78rem;
  line-height: 1.25;
}

.shop-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}
.shop-product-footer > strong { color: #0b180d; font-size: .92rem; }

.shop-add-preview {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  border: 0;
  border-radius: 9px;
  color: #071007;
  background: var(--lime);
  font-size: .6rem;
  font-weight: 900;
  cursor: default;
}

.shop-add-preview svg { width: 14px; height: 14px; }

.shop-floating-order {
  position: absolute;
  right: -16px;
  bottom: -16px;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 280px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(14,19,13,.92);
  box-shadow: 0 20px 50px rgba(0,0,0,.32);
  backdrop-filter: blur(15px);
}
.shop-floating-order > span {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #071007;
  background: var(--lime);
}
.shop-floating-order svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.shop-floating-order small,
.shop-floating-order strong { display: block; }
.shop-floating-order small { color: var(--muted); font-size: .61rem; }
.shop-floating-order strong { margin-top: 2px; font-size: .7rem; }

/* Módulo marketplace dentro de la grilla general */
.module-card-featured {
  border-color: rgba(184,255,30,.33);
  background:
    radial-gradient(circle at 88% 14%, rgba(184,255,30,.16), transparent 15rem),
    linear-gradient(145deg, rgba(184,255,30,.075), transparent 48%),
    #121810;
  box-shadow: 0 25px 65px rgba(100,165,0,.1);
}
.module-card-featured .module-number { color: var(--lime); }

.module-card-top {
  border-color: rgba(184,255,30,.55);
  box-shadow: 0 30px 80px rgba(100,165,0,.18), 0 0 0 1px rgba(184,255,30,.22);
}

.module-top-badge {
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 30px;
  padding: 6px 14px 7px;
  border-radius: 0 0 10px 10px;
  color: #071007;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--lime);
  box-shadow: 0 10px 22px rgba(100,165,0,.28);
}

.module-card-top .module-icon {
  border-color: rgba(184,255,30,.45);
  background: rgba(184,255,30,.14);
}

.module-feature-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--lime);
  font-size: .76rem;
  font-weight: 900;
}
.module-feature-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }

.quick-card-marketplace {
  border-color: rgba(184,255,30,.28);
  background: linear-gradient(135deg, rgba(184,255,30,.105), rgba(15,18,13,.88));
}

/* Ajustes de notebook: evita que el hero se alargue innecesariamente. */
@media (min-width: 901px) and (max-height: 860px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 26px;
  }
  .hero-layout { gap: 48px; }
  .hero-copy { padding-block: 22px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 4.6vw, 4.2rem); }
  .hero-copy > p { font-size: .96rem; }
  .hero-actions { margin-top: 22px; }
  .hero-highlights { margin-top: 19px; }
  .hero-mini-stats { margin-top: 23px; padding-top: 18px; }
  .video-frame-main { max-height: 555px; }
  .quick-modules { margin-top: 22px; }

  /* Mismo criterio aplicado al resto de secciones para que cada una
     entre mejor en el alto visible de un notebook. */
  .section { padding: 68px 0; }
  .clients-coverflow { padding: 10px 0 30px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2,
  .platform-copy h2,
  .pricing-copy h2,
  .faq-copy h2,
  .contact-copy h2 {
    margin: 10px 0 12px;
    font-size: clamp(2.6rem, 4.4vw, 4.4rem);
  }
  .module-card { min-height: 350px; padding: 24px; }
  .module-icon { margin-bottom: 18px; }
  .module-card h3 { font-size: 1.9rem; margin: 6px 0 9px; }
  .module-card ul { padding-top: 16px; }
  .marketplace-benefits { margin: 18px 0; }
  .steps-grid { gap: 14px; }
  .faq-copy { position: static; }
}

@media (max-width: 1120px) {
  .marketplace-layout { grid-template-columns: minmax(280px, .78fr) minmax(520px, 1.22fr); gap: 38px; }
  .marketplace-copy h2 { font-size: clamp(3.25rem, 5.5vw, 5rem); }
  .shop-product-image { height: 118px; padding: 12px; }
  .shop-floating-order { right: 10px; bottom: -14px; max-width: 240px; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 30px); }
  .clients-coverflow { padding: 34px 0 58px; }
  .clients-coverflow-panel { min-height: 445px; }
  .marketplace-layout { grid-template-columns: 1fr; gap: 46px; }
  .marketplace-copy { max-width: 760px; }
  .marketplace-copy h2 { max-width: 760px; }
  .marketplace-benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .marketplace-benefits article { grid-template-columns: 42px minmax(0, 1fr); align-items: start; padding: 12px; }
  .marketplace-benefits article > span { width: 42px; height: 42px; }
  .shop-window { width: min(100%, 760px); margin-inline: auto; margin-bottom: 34px; }
  .shop-floating-order { right: 4%; bottom: -20px; }
}

@media (max-width: 700px) {
  .clients-coverflow { padding-top: 26px; }
  .clients-coverflow-panel { min-height: 408px; }
  .marketplace-section { padding-top: 82px; padding-bottom: 90px; }
  .marketplace-copy h2 { font-size: clamp(3.15rem, 14vw, 4.6rem); }
  .marketplace-copy > p { font-size: .92rem; }
  .marketplace-benefits { grid-template-columns: 1fr; }
  .marketplace-benefits article { grid-template-columns: 46px minmax(0, 1fr); align-items: center; }
  .marketplace-cta-row { align-items: stretch; flex-direction: column; }
  .marketplace-cta-row .button { width: 100%; }
  .shop-topbar { min-height: 66px; padding: 11px 12px; }
  .shop-brand-mini > span { width: 38px; height: 38px; }
  .shop-cart-preview > span { display: none; }
  .shop-toolbar { grid-template-columns: 1fr; padding: 12px 12px 4px; }
  .shop-chips { padding-bottom: 2px; }
  .shop-product-grid { gap: 9px; padding: 10px 12px 13px; }
  .shop-product-image { height: 108px; padding: 10px; }
  .shop-product-info { padding: 10px; }
  .shop-product-info h3 { min-height: 35px; font-size: .7rem; }
  .shop-product-footer { align-items: flex-start; flex-direction: column; }
  .shop-add-preview { width: 100%; }
  .shop-floating-order { display: none; }
}

@media (max-width: 520px) {
  .hero { padding-top: calc(var(--header-height) + 20px); }
  .hero-copy h1 { font-size: clamp(2.3rem, 10vw, 3.2rem); }
  .video-frame-main { aspect-ratio: 4 / 5; max-height: 560px; }
  .clients-coverflow-panel { padding-inline: 7px; border-radius: 20px; }
  .clients-coverflow-stage { padding-inline: 20px; }
  .client-coverflow-card { width: 148px; height: 184px; }
  .clients-coverflow .client-coverflow-logo { padding: 9px; }
  .marketplace-section { padding-top: 72px; }
  .marketplace-copy h2 { font-size: clamp(3rem, 15.5vw, 4rem); }
  .shop-window { border-radius: 20px; }
  .shop-product-grid { grid-template-columns: 1fr; }
  .shop-product-card { display: grid; grid-template-columns: 132px minmax(0, 1fr); }
  .shop-product-image { height: 100%; min-height: 150px; }
  .shop-product-info { display: flex; flex-direction: column; justify-content: center; }
  .shop-product-info h3 { min-height: 0; }
  .shop-product-footer { margin-top: 2px; }
}

@media (max-width: 380px) {
  .shop-product-card { grid-template-columns: 112px minmax(0, 1fr); }
  .shop-product-image { min-height: 142px; }
  .shop-product-footer > strong { font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  .shop-product-card,
  .shop-product-image img { transition: none !important; }
}



/* Marketplace visual: muestra la capacidad del sistema, sin convertir la landing en tienda. */
.shop-cart-preview,
.shop-add-preview {
  user-select: none;
  pointer-events: none;
}

.shop-add-preview svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}


/* Sport360: integración de redes sociales en cabecera y portada */
.social-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f6f8f2;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .22s ease, color .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.social-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon.is-facebook svg {
  fill: currentColor;
  stroke: none;
}

.social-icon:hover {
  color: #091000;
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(151,239,0,.22);
  transform: translateY(-2px);
}

.social-icon:focus-visible {
  outline: 3px solid rgba(184,255,30,.28);
  outline-offset: 3px;
}

.header-socials,
.hero-socials,
.mobile-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon-header {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.social-icon-header svg {
  width: 18px;
  height: 18px;
}

.hero-socials {
  min-height: 52px;
}

.social-icon-hero {
  width: 52px;
  height: 52px;
  border-radius: 11px;
}

.social-icon-hero svg {
  width: 23px;
  height: 23px;
}

.mobile-socials {
  justify-content: center;
  padding: 15px 0 4px;
}

@media (max-width: 1280px) and (min-width: 1121px) {
  .header-inner { gap: 20px; }
  .brand { width: 154px; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: .82rem; }
  .header-actions { gap: 9px; }
  .social-icon-header { width: 35px; height: 35px; }
  .header-actions .button-small { padding-inline: 14px; }
}

@media (max-width: 660px) {
  .hero-socials {
    width: 100%;
    justify-content: center;
    margin-top: 2px;
  }

  .social-icon-hero {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 430px) {
  .header-inner { gap: 8px; }
  .brand { width: 130px; }
  .header-actions { gap: 6px; }
  .header-socials { gap: 5px; }
  .social-icon-header { width: 34px; height: 34px; border-radius: 9px; }
  .social-icon-header svg { width: 16px; height: 16px; }
  .menu-button { width: 40px; height: 40px; }
}

/* =========================================================
   Formulario de contacto seguro — CAPTCHA y envío por correo
   ========================================================= */
.captcha-field {
  margin-top: 2px;
}

.captcha-row {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) minmax(150px, .85fr);
  align-items: stretch;
  gap: 12px;
}

.captcha-image-shell {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #0a0d09;
}

.captcha-image {
  width: 100%;
  height: 66px;
  object-fit: cover;
  background: #12170f;
}

.captcha-refresh {
  height: 100%;
  min-width: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  padding: 7px 10px;
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--lime);
  background: rgba(184,255,30,.045);
  cursor: pointer;
  font-size: .62rem;
  font-weight: 800;
  transition: background-color .2s ease, color .2s ease;
}

.captcha-refresh:hover,
.captcha-refresh:focus-visible {
  color: #071000;
  background: var(--lime);
  outline: 0;
}

.captcha-refresh svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.captcha-row > input {
  height: 66px;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.captcha-help {
  color: var(--muted-2);
  font-size: .66rem;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status.is-success { color: var(--lime); }
.form-status.is-error { color: #ff9292; }

.contact-form .button[disabled] {
  opacity: .72;
  cursor: wait;
  transform: none;
}

.contact-form .button.is-loading svg {
  animation: contact-submit-pulse .9s ease-in-out infinite alternate;
}

@keyframes contact-submit-pulse {
  to { transform: translateX(5px); opacity: .55; }
}

@media (max-width: 660px) {
  .captcha-row {
    grid-template-columns: 1fr;
  }

  .captcha-image-shell,
  .captcha-row > input {
    min-height: 60px;
  }

  .captcha-image {
    height: 60px;
  }

  .captcha-refresh {
    min-width: 76px;
  }
}

@media (max-width: 420px) {
  .contact-form { padding: 18px 14px; }
  .captcha-image-shell { grid-template-columns: minmax(0, 1fr) 70px; }
  .captcha-refresh { min-width: 70px; padding-inline: 6px; }
  .captcha-refresh span { font-size: .56rem; }
}


/* Marketplace 2026-07-28: vista real del flujo multiproducto.
   Es una representación visual; no transforma la landing en una tienda interactiva. */
.marketplace-demo-screenshot {
  width: min(100%, 700px);
  justify-self: end;
  padding: 0 0 54px;
}

.marketplace-screen-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 25px;
  background: #eff9f7;
  box-shadow: 0 34px 90px rgba(0,0,0,.44), 0 0 0 1px rgba(184,255,30,.055);
}

.marketplace-screen-head {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  color: #0b1d1a;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(15,91,80,.12);
}

.marketplace-screen-head > span {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #071007;
  background: var(--lime);
}

.marketplace-screen-head svg,
.marketplace-screen-note svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.marketplace-screen-head div {
  min-width: 0;
  margin-right: auto;
}

.marketplace-screen-head strong,
.marketplace-screen-head small {
  display: block;
}

.marketplace-screen-head strong {
  color: #10241f;
  font-size: .84rem;
  line-height: 1.2;
}

.marketplace-screen-head small {
  margin-top: 3px;
  color: #607b75;
  font-size: .64rem;
}

.marketplace-screen-head > b {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(18,110,94,.16);
  border-radius: 999px;
  color: #0a7669;
  background: #edfdfa;
  font-size: .59rem;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.marketplace-screen-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 796;
  object-fit: cover;
  object-position: center;
  background: #eff9f7;
}

.marketplace-mini-catalog {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: 92%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(13,20,13,.94);
  box-shadow: 0 24px 60px rgba(0,0,0,.36);
  backdrop-filter: blur(15px);
  transform: translateX(-50%);
  pointer-events: none;
}

.marketplace-mini-catalog article {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
}

.marketplace-mini-photo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(145deg, #f1f7ed, #d9e8d2);
}

.marketplace-mini-photo img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.marketplace-mini-catalog small,
.marketplace-mini-catalog strong,
.marketplace-mini-catalog span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marketplace-mini-catalog small {
  color: #9eb49a;
  font-size: .49rem;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.marketplace-mini-catalog strong {
  margin-top: 1px;
  color: #fff;
  font-size: .66rem;
}

.marketplace-mini-catalog span {
  margin-top: 2px;
  color: var(--lime);
  font-size: .62rem;
  font-weight: 850;
}

.marketplace-screen-note {
  position: absolute;
  z-index: 4;
  right: -10px;
  top: -16px;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 235px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  color: #fff;
  background: rgba(12,18,12,.94);
  box-shadow: 0 18px 45px rgba(0,0,0,.30);
  backdrop-filter: blur(14px);
}

.marketplace-screen-note > span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #071007;
  background: var(--lime);
}

.marketplace-screen-note small,
.marketplace-screen-note strong {
  display: block;
}

.marketplace-screen-note small {
  color: #9fa89c;
  font-size: .55rem;
}

.marketplace-screen-note strong {
  margin-top: 2px;
  font-size: .64rem;
  line-height: 1.3;
}

@media (max-width: 1120px) {
  .marketplace-demo-screenshot {
    width: min(100%, 630px);
  }

  .marketplace-mini-catalog article {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .marketplace-mini-photo {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 900px) {
  .marketplace-demo-screenshot {
    width: min(100%, 760px);
    justify-self: center;
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .marketplace-demo-screenshot {
    width: 100%;
    padding-bottom: 0;
  }

  .marketplace-screen-card {
    border-radius: 20px;
  }

  .marketplace-screen-head {
    min-height: 60px;
    padding: 9px 10px;
  }

  .marketplace-screen-head > b {
    display: none;
  }

  .marketplace-screen-card > img {
    aspect-ratio: auto;
  }

  .marketplace-mini-catalog {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 18px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: -16px auto 0;
    transform: none;
  }

  .marketplace-screen-note {
    display: none;
  }
}

@media (max-width: 420px) {
  .marketplace-screen-head strong {
    font-size: .75rem;
  }

  .marketplace-screen-head small {
    font-size: .57rem;
  }

  .marketplace-mini-catalog {
    grid-template-columns: 1fr;
  }

  .marketplace-mini-catalog article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .marketplace-mini-photo {
    width: 48px;
    height: 48px;
  }
}

/* =========================================================
   FIX CARRUSEL CLIENTES EN CELULAR — 2026-07-28
   ========================================================= */
.clients-coverflow-swiper {
  touch-action: pan-y pinch-zoom;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.clients-coverflow-swiper .swiper-wrapper {
  will-change: transform;
  transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

@media (max-width: 700px) {
  .clients-coverflow-stage {
    overflow: hidden;
  }

  .clients-coverflow-swiper {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
  }

  .clients-coverflow-swiper .swiper-slide {
    flex-shrink: 0;
  }
}
