:root {
  --dark: #06111f;
  --dark-2: #0b1b30;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-2: rgba(255, 255, 255, 0.13);
  --white: #ffffff;
  --text: #f7fbff;
  --muted: #b6c6d8;
  --line: rgba(255, 255, 255, 0.16);
  --green: #38f5a6;
  --blue: #46a6ff;
  --orange: #ff9f43;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-lg: 30px;
  --radius-md: 20px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
svg { display: block; width: 100%; height: auto; }
button, input, textarea { font: inherit; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--green);
  color: #06111f;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }
.container {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}
.section { padding: 92px 0; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .25s ease, border .25s ease, padding .25s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(6, 17, 31, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #06111f;
  font-weight: 950;
  letter-spacing: -0.04em;
  box-shadow: 0 14px 38px rgba(56, 245, 166, .28);
}
.brand-copy { display: grid; line-height: 1.16; min-width: 0; }
.brand-copy strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-copy small { color: var(--muted); font-size: .78rem; }
.menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.menu a:hover { background: rgba(255,255,255,.09); color: var(--white); transform: translateY(-1px); }
.menu .menu-cta { background: var(--green); color: #06111f; font-weight: 900; }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.active span:nth-child(2) { opacity: 0; }
.menu-button.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 148px 0 96px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(56,245,166,.24), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(70,166,255,.24), transparent 30%),
    radial-gradient(circle at 58% 88%, rgba(255,159,67,.14), transparent 30%),
    linear-gradient(135deg, #06111f 0%, #0b1b30 52%, #06111f 100%);
}
.hero-shape { position: absolute; border-radius: 999px; border: 1px solid rgba(255,255,255,.08); pointer-events: none; }
.hero-shape-one { width: 520px; height: 520px; right: -180px; top: 120px; }
.hero-shape-two { width: 390px; height: 390px; left: -150px; bottom: -130px; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 54px;
  align-items: center;
}
.tagline {
  margin: 0 0 15px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 6.4vw, 6rem);
  line-height: .9;
  letter-spacing: -.075em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.055em;
}
h3 { margin-bottom: 12px; font-size: 1.35rem; line-height: 1.15; }
p { color: var(--muted); }
.hero-text { max-width: 650px; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-text strong { color: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #06111f; box-shadow: 0 16px 36px rgba(56,245,166,.25); }
.btn-primary:hover { background: #65ffc0; }
.btn-outline { border-color: var(--line); color: var(--white); background: rgba(255,255,255,.06); }
.full { width: 100%; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-facts span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-size: .92rem;
}
.hero-card {
  position: relative;
  isolation: isolate;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-glow {
  position: absolute;
  inset: auto -60px -120px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(56,245,166,.22);
  filter: blur(20px);
  z-index: -1;
}
.sport-mark {
  width: min(68vw, 240px);
  margin: 0 auto 24px;
  color: var(--green);
}
.sport-mark circle { fill: rgba(255,255,255,.06); stroke: rgba(255,255,255,.17); stroke-width: 2; }
.card-label { color: var(--green); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 950; }
.hero-card h2 { font-size: clamp(1.9rem, 4vw, 3.4rem); }
.hero-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 950;
}
.intro { background: #081525; }
.intro-grid, .attention-grid, .contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.section-heading.centered { text-align: center; max-width: 820px; margin: 0 auto 42px; }
.intro-panel, .contact-form, .location-card, .service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
}
.intro-panel { padding: clamp(24px, 4vw, 38px); }
.intro-panel p:last-child { margin-bottom: 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  transition: transform .2s ease, border .2s ease, background .2s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(56,245,166,.45); background: var(--panel-2); }
.service-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255,255,255,.18);
  font-weight: 950;
  font-size: 2rem;
}
.service-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 48px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--green);
  background: rgba(56,245,166,.1);
}
.service-icon svg { width: 40px; }
.service-card p { margin-bottom: 0; }
.attention { background: linear-gradient(180deg, #06111f, #0b1b30); }
.visual-block {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  overflow: hidden;
}
.pulse {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(56,245,166,.34);
}
.pulse-one { width: 310px; height: 310px; }
.pulse-two { width: 220px; height: 220px; border-color: rgba(70,166,255,.36); }
.pulse-three { width: 130px; height: 130px; border-color: rgba(255,159,67,.35); }
.visual-center {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #06111f;
  font-size: 2rem;
  font-weight: 950;
  box-shadow: var(--shadow);
}
.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.detail-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}
.detail-list strong { color: var(--white); }
.detail-list span { color: var(--muted); text-align: right; }
.location { background: #081525; }
.location-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 5vw, 48px);
  background:
    radial-gradient(circle at 80% 15%, rgba(56,245,166,.18), transparent 35%),
    rgba(255,255,255,.08);
}
.location-card p { margin-bottom: 0; }
.location-badge {
  width: 180px;
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(56,245,166,.16), rgba(70,166,255,.15));
  border: 1px solid var(--line);
}
.location-badge span {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(56,245,166,.13);
}
.location-badge strong { font-size: 2.1rem; line-height: 1; }
.location-badge small { color: var(--muted); }
.contact { background: linear-gradient(180deg, #0b1b30, #06111f); }
.contact-lines { display: grid; gap: 10px; margin-top: 24px; }
.contact-lines a {
  width: fit-content;
  color: var(--green);
  font-weight: 950;
  font-size: 1.4rem;
}
.contact-lines span { color: var(--muted); }
.contact-form { padding: clamp(24px, 4vw, 38px); }
.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 900;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(56,245,166,.12); }
.contact-form textarea { resize: vertical; }
.contact-form p { margin: 14px 0 0; font-size: .9rem; text-align: center; }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 19px;
  border-radius: 999px;
  background: var(--green);
  color: #06111f;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(56,245,166,.3);
}
.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  background: #050d18;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer p { margin: 6px 0 0; }
.footer span, .footer a { display: block; color: var(--muted); text-align: right; }
.footer a { color: var(--green); font-weight: 900; }
.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 920px) {
  .menu-button { display: block; }
  .menu {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 82px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(6,17,31,.96);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
  }
  .menu.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu a { padding: 14px 16px; }
  .hero-grid, .intro-grid, .attention-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .location-card { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container, .nav { width: min(100% - 28px, var(--max)); }
  .section { padding: 68px 0; }
  .hero { padding: 124px 0 72px; }
  .brand-copy small { display: none; }
  .brand-icon { width: 44px; height: 44px; border-radius: 14px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-facts { display: grid; }
  .hero-card { padding: 24px; }
  .detail-list div { display: grid; gap: 4px; }
  .detail-list span { text-align: left; }
  .visual-block { min-height: 310px; }
  .pulse-one { width: 250px; height: 250px; }
  .pulse-two { width: 175px; height: 175px; }
  .location-badge { width: 100%; min-height: 150px; }
  .footer-grid { display: grid; }
  .footer span, .footer a { text-align: left; }
  .floating-whatsapp { right: 14px; left: 14px; width: auto; }
}
