:root {
  --font-manrope: "Manrope", Arial, sans-serif;
  --font-montserrat: "Montserrat", Arial, sans-serif;
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
  background: #060606;
}

body {
  margin: 0;
  background: #060606;
}

img { max-width: 100%; }

.sport-page {
  --sport-black: #060606;
  --sport-panel: #111111;
  --sport-panel-2: #191919;
  --sport-red: #e10b12;
  --sport-red-dark: #970309;
  --sport-yellow: #ffbd17;
  --sport-white: #f6f6f6;
  --sport-muted: #aaa;
  min-height: 100vh;
  overflow: hidden;
  background: var(--sport-black);
  color: var(--sport-white);
  font-family: var(--font-manrope), Arial, sans-serif;
}

.sport-page * { box-sizing: border-box; }
.sport-page a { color: inherit; text-decoration: none; }

.sport-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
  align-items: center;
  justify-content: space-between;
}

.sport-brand { display: inline-flex; }

.sport-logo {
  position: relative;
  display: grid;
  width: 185px;
  min-height: 74px;
  align-content: end;
  grid-template-columns: auto 1fr;
  gap: 0 7px;
  font-family: var(--font-montserrat), Arial, sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.sport-car-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 182px;
  height: 34px;
  overflow: visible;
  fill: none;
  stroke: var(--sport-red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  filter: drop-shadow(0 0 4px rgba(225, 11, 18, .6));
}

.sport-car-line circle { fill: #fff; stroke: none; }

.sport-gs {
  display: flex;
  height: 45px;
  align-items: center;
  font-size: 48px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.12em;
  transform: skew(-9deg);
}

.sport-gs b { color: var(--sport-red); }
.sport-gs i { color: #fff; font-style: inherit; }

.sport-logo > strong {
  align-self: end;
  padding-bottom: 3px;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.035em;
}

.sport-header-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 5px;
  background: linear-gradient(135deg, var(--sport-red), var(--sport-red-dark));
  box-shadow: 0 8px 24px rgba(225,11,18,.22);
  font-family: var(--font-montserrat), Arial, sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  transform: skew(-5deg);
}

.sport-hero {
  position: relative;
  min-height: 820px;
  background: #050505;
}

.sport-hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--sport-red) 18%, var(--sport-red) 82%, transparent);
  box-shadow: 0 -4px 20px rgba(225,11,18,.45);
  content: "";
}

.sport-hero-car {
  position: absolute;
  inset: 0 0 0 auto;
  width: 68%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(.95) contrast(1.08);
}

.sport-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5,5,5,.98) 34%, rgba(5,5,5,.72) 51%, rgba(5,5,5,.08) 75%),
    linear-gradient(0deg, #050505 0%, transparent 26%, rgba(0,0,0,.28) 100%);
}

.sport-speed-lines {
  position: absolute;
  z-index: 3;
  top: 19%;
  left: -5%;
  width: 54%;
  height: 160px;
  opacity: .38;
  background: repeating-linear-gradient(-8deg, transparent 0 21px, rgba(225,11,18,.7) 22px 24px, transparent 25px 38px);
  transform: skewX(-18deg);
  mask-image: linear-gradient(90deg, transparent, black 18%, transparent 92%);
}

.sport-hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 820px;
  margin: 0 auto;
  padding: 155px 0 55px;
  flex-direction: column;
  justify-content: center;
}

.sport-kicker {
  margin: 0 0 18px;
  color: var(--sport-yellow);
  font-family: var(--font-montserrat), Arial, sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sport-hero h1,
.sport-heading h2,
.sport-difference h2,
.sport-final h2 {
  margin: 0;
  font-family: var(--font-montserrat), Arial, sans-serif;
  font-style: italic;
  font-weight: 950;
  line-height: .96;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.sport-hero h1 {
  max-width: 720px;
  font-size: clamp(50px, 6.7vw, 88px);
}

.sport-hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--sport-red);
  text-shadow: 0 0 28px rgba(225,11,18,.28);
}

.sport-hero-copy {
  max-width: 570px;
  margin: 27px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.7;
}

.sport-actions {
  display: flex;
  margin-top: 32px;
  gap: 12px;
  flex-wrap: wrap;
}

.sport-button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-family: var(--font-montserrat), Arial, sans-serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease;
}

.sport-button:hover { transform: translateY(-2px); }
.sport-button svg, .sport-floating-whatsapp svg { width: 20px; height: 20px; margin-right: 9px; fill: currentColor; }
.sport-button-red { background: linear-gradient(135deg, var(--sport-red), var(--sport-red-dark)); color: #fff; box-shadow: 0 10px 28px rgba(225,11,18,.28); }
.sport-button-outline { border: 1px solid rgba(255,255,255,.32); background: rgba(0,0,0,.3); color: #fff; }

.sport-meta {
  display: grid;
  width: min(720px, 100%);
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.sport-meta div { padding: 17px 18px 17px 0; }
.sport-meta div + div { padding-left: 20px; border-left: 1px solid rgba(255,255,255,.12); }
.sport-meta span, .sport-meta strong { display: block; }
.sport-meta span { margin-bottom: 5px; color: var(--sport-red); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.sport-meta strong { font-size: 14px; }

.sport-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.sport-heading { max-width: 730px; }
.sport-heading h2, .sport-difference h2, .sport-final h2 { font-size: clamp(36px, 5vw, 58px); }
.sport-heading > p:last-child { margin: 20px 0 0; color: var(--sport-muted); line-height: 1.7; }
.sport-heading-center { margin: 0 auto; text-align: center; }

.sport-services { position: relative; }
.sport-services::before { position: absolute; top: 0; left: 50%; width: 120px; height: 4px; background: var(--sport-red); content: ""; transform: translateX(-50%) skewX(-30deg); }
.sport-service-grid { display: grid; margin-top: 45px; gap: 16px; grid-template-columns: repeat(3, 1fr); }
.sport-service-card { position: relative; display: flex; min-height: 350px; padding: 28px; overflow: hidden; flex-direction: column; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: linear-gradient(145deg, #1b1b1b, #0d0d0d); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.sport-service-card::before { position: absolute; inset: 0 auto auto 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--sport-red), transparent 82%); content: ""; }
.sport-card-top { display: flex; align-items: center; justify-content: space-between; color: var(--sport-red); font-size: 12px; font-weight: 900; }
.sport-card-top b { padding: 7px 10px; border: 1px solid rgba(225,11,18,.35); border-radius: 4px; background: rgba(225,11,18,.1); color: #fff; font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.sport-service-card h3 { margin: 55px 0 14px; font-family: var(--font-montserrat), Arial, sans-serif; font-size: 25px; font-style: italic; font-weight: 900; text-transform: uppercase; }
.sport-service-card p { margin: 0; color: var(--sport-muted); font-size: 14px; line-height: 1.75; }
.sport-service-card > strong { margin-top: auto; padding-top: 28px; color: var(--sport-yellow); font-size: 15px; }

.sport-prices { border-top: 1px solid rgba(225,11,18,.28); border-bottom: 1px solid rgba(225,11,18,.28); background: radial-gradient(circle at 50% 0, rgba(225,11,18,.18), transparent 34%), #101010; }
.sport-prices-inner { padding-top: 100px; padding-bottom: 100px; }
.sport-price-grid { display: grid; margin-top: 46px; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.sport-price-card { overflow: hidden; border: 2px solid rgba(255,255,255,.8); border-radius: 12px; background: #050505; box-shadow: 0 18px 45px rgba(0,0,0,.3); }
.sport-price-card > div { display: flex; min-height: 68px; padding: 18px 24px; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,.13); }
.sport-price-card > div span { color: #ddd; font-size: 14px; }
.sport-price-card > div strong { color: var(--sport-yellow); font-family: var(--font-montserrat), Arial, sans-serif; font-size: 24px; font-style: italic; font-weight: 950; white-space: nowrap; }
.sport-price-title { min-height: 92px !important; border: 0 !important; background: linear-gradient(120deg, var(--sport-red), var(--sport-red-dark)); }
.sport-price-title span { display: grid; width: 52px; height: 52px; flex: 0 0 auto; place-items: center; border: 2px solid #fff; border-radius: 50%; color: #fff !important; font-weight: 950; }
.sport-price-title h3 { margin: 0; font-family: var(--font-montserrat), Arial, sans-serif; font-size: 22px; font-style: italic; font-weight: 950; text-align: right; text-transform: uppercase; }
.sport-price-featured { background: rgba(225,11,18,.12); }
.sport-price-featured span { color: #fff !important; font-weight: 850; }
.sport-price-note { max-width: 780px; margin: 27px auto 0; color: #888; font-size: 12px; line-height: 1.7; text-align: center; }

.sport-difference { display: grid; gap: 76px; grid-template-columns: .95fr 1.05fr; }
.sport-difference-copy > p:not(.sport-kicker) { margin: 24px 0; color: var(--sport-muted); line-height: 1.8; }
.sport-difference-copy > a { display: inline-flex; padding-bottom: 5px; gap: 10px; border-bottom: 2px solid var(--sport-red); color: #fff; font-size: 14px; font-weight: 850; }
.sport-benefits article { display: grid; padding: 25px 0; gap: 18px; grid-template-columns: 48px 1fr; border-top: 1px solid rgba(255,255,255,.14); }
.sport-benefits article > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--sport-red); color: #fff; font-size: 12px; font-weight: 900; }
.sport-benefits h3 { margin: 0 0 7px; font-family: var(--font-montserrat), Arial, sans-serif; font-size: 20px; font-style: italic; font-weight: 900; text-transform: uppercase; }
.sport-benefits p { margin: 0; color: var(--sport-muted); font-size: 14px; line-height: 1.7; }

.sport-visit { position: relative; overflow: hidden; background: linear-gradient(120deg, #181818, #070707); }
.sport-visit::after { position: absolute; right: -12%; bottom: -30%; width: 50%; height: 140%; border: 80px solid rgba(225,11,18,.05); border-radius: 50%; content: ""; }
.sport-visit-inner { position: relative; z-index: 2; }
.sport-visit-grid { display: grid; margin-top: 38px; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.sport-visit-grid article { padding: 28px; border-left: 5px solid var(--sport-red); border-radius: 6px; background: rgba(255,255,255,.055); }
.sport-visit-grid span { display: block; margin-bottom: 10px; color: var(--sport-red); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.sport-visit-grid strong { display: block; font-size: 17px; }
.sport-visit-grid p { margin: 7px 0 0; color: var(--sport-muted); font-size: 14px; }
.sport-visit-actions { margin-top: 28px; }

.sport-final { text-align: center; }
.sport-final h2 { max-width: 840px; margin: 0 auto; }
.sport-final > p:not(.sport-kicker) { margin: 21px 0 30px; color: var(--sport-muted); }

.sport-footer { padding: 54px 0 86px; border-top: 4px solid var(--sport-red); background: #030303; }
.sport-footer-inner { display: grid; width: min(1180px, calc(100% - 32px)); margin: 0 auto; align-items: center; gap: 25px; grid-template-columns: 1fr 1fr; }
.sport-footer-inner > p { margin: 0; color: #888; text-align: right; }
.sport-footer-inner > div { display: flex; gap: 20px; font-size: 13px; font-weight: 800; }
.sport-footer-inner small { color: #666; font-size: 11px; text-align: right; }

.sport-floating-whatsapp { position: fixed; z-index: 30; right: 18px; bottom: 18px; display: flex; min-height: 54px; padding: 14px 19px; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,.8); border-radius: 7px; background: #18a951; color: #fff; box-shadow: 0 12px 34px rgba(0,0,0,.4); font-family: var(--font-montserrat), Arial, sans-serif; font-size: 12px; font-style: italic; font-weight: 900; text-transform: uppercase; }

@media (max-width: 760px) {
  .sport-header { width: calc(100% - 24px); padding-top: 10px; }
  .sport-logo { width: 150px; min-height: 62px; }
  .sport-car-line { width: 148px; height: 28px; }
  .sport-gs { height: 38px; font-size: 39px; }
  .sport-logo > strong { font-size: 12px; }
  .sport-header-cta { padding: 10px 12px; font-size: 10px; }
  .sport-hero, .sport-hero-content { min-height: 850px; }
  .sport-hero-content { width: calc(100% - 28px); padding: 120px 0 36px; justify-content: flex-start; }
  .sport-hero-car { inset: auto -36% 0 auto; width: 136%; height: 58%; object-position: 62% center; opacity: .8; }
  .sport-hero-shade { background: linear-gradient(180deg, #050505 0%, rgba(5,5,5,.97) 42%, rgba(5,5,5,.42) 67%, #050505 100%); }
  .sport-speed-lines { top: 36%; width: 90%; }
  .sport-hero h1 { font-size: clamp(42px, 13vw, 61px); }
  .sport-hero-copy { font-size: 15px; }
  .sport-actions { flex-direction: column; }
  .sport-button { width: 100%; }
  .sport-meta { margin-top: 35px; grid-template-columns: 1fr; }
  .sport-meta div { display: flex; padding: 10px 0; align-items: center; justify-content: space-between; }
  .sport-meta div + div { padding-left: 0; border-top: 1px solid rgba(255,255,255,.1); border-left: 0; }
  .sport-meta span { margin: 0; }
  .sport-section { width: calc(100% - 28px); padding: 76px 0; }
  .sport-service-grid, .sport-price-grid, .sport-difference, .sport-visit-grid, .sport-footer-inner { grid-template-columns: 1fr; }
  .sport-service-card { min-height: 300px; }
  .sport-price-card > div { padding: 16px 18px; }
  .sport-price-title h3 { font-size: 18px; }
  .sport-difference { gap: 46px; }
  .sport-footer-inner > p, .sport-footer-inner small { text-align: left; }
  .sport-footer-inner > div { flex-direction: column; gap: 10px; }
  .sport-floating-whatsapp { width: 58px; height: 58px; padding: 0; border-radius: 50%; }
  .sport-floating-whatsapp span { display: none; }
  .sport-floating-whatsapp svg { width: 26px; height: 26px; margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sport-button { transition: none; }
}
