:root {
  --bg: #080a0f;
  --surface: #10141c;
  --surface-2: #151b25;
  --text: #f7f8fa;
  --muted: #abb5c4;
  --line: rgba(255, 255, 255, .11);
  --red: #ee1f2d;
  --red-dark: #a80814;
  --blue: #238ef5;
  --green: #25d366;
  --max-width: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

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

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  border-radius: 8px;
  padding: 10px 14px;
  color: #000;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 15, .97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: #fff;
  background: #0d1118;
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  text-transform: uppercase;
  letter-spacing: .035em;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
}

.main-nav a:hover {
  color: #fff;
}

.nav-cta {
  border-radius: 9px;
  padding: 10px 14px;
  color: #061009;
  background: var(--green);
}

.menu-button {
  display: none;
  min-width: 44px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #fff;
  background: var(--surface);
  cursor: pointer;
}

.hero {
  padding: clamp(50px, 7vw, 92px) 0 44px;
  background:
    radial-gradient(circle at 15% 0%, rgba(238, 31, 45, .16), transparent 35%),
    radial-gradient(circle at 90% 40%, rgba(35, 142, 245, .1), transparent 30%);
}

.hero-copy {
  max-width: 900px;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 800;
  letter-spacing: .018em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .98;
}

.hero-lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: #d7dce4;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .15s ease, background-color .15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.button-secondary {
  border-color: var(--line);
  color: #fff;
  background: var(--surface-2);
}

.button-light {
  color: #090b10;
  background: #fff;
}

.button-whatsapp {
  color: #061009;
  background: var(--green);
}

.hero-banner {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: #050608;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

.hero-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
}

.benefits {
  border-block: 1px solid var(--line);
  background: #0c1016;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefits-grid div {
  padding: 20px;
  text-align: center;
}

.benefits-grid div + div {
  border-left: 1px solid var(--line);
}

.benefits-grid strong,
.benefits-grid span {
  display: block;
}

.benefits-grid strong {
  text-transform: uppercase;
}

.benefits-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: clamp(66px, 8vw, 100px) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading h2,
.club-grid h2,
.portal-inner h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
}

.section-heading > p:last-child,
.club-copy > p,
.portal-inner > div > p:last-child,
.contact-card > p {
  color: var(--muted);
  font-size: 17px;
}

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

.discipline-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
}

.discipline-code {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 13px;
  color: #fff;
  background: var(--red);
  font-size: 16px;
  font-weight: 950;
}

.discipline-code--blue {
  background: var(--blue);
}

.discipline-card h3 {
  margin: 24px 0 10px;
  font-size: 23px;
}

.discipline-card p {
  margin: 0;
  color: var(--muted);
}

.schedule-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(238, 31, 45, .13), transparent 37%),
    #0b0e14;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.schedule-grid article {
  border-top: 4px solid var(--red);
  border-radius: 14px;
  padding: 24px;
  color: #10131a;
  background: #f6f7f9;
}

.schedule-grid span,
.schedule-grid strong,
.schedule-grid time {
  display: block;
}

.schedule-grid span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 28px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.schedule-grid strong {
  margin-top: 7px;
  color: #555e6c;
  font-size: 14px;
  text-transform: uppercase;
}

.schedule-grid time {
  margin-top: 22px;
  color: var(--red);
  font-size: 28px;
  font-weight: 950;
}

.location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: var(--surface);
}

.location-label,
.location strong,
.location p {
  display: block;
}

.location-label {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location strong {
  margin-top: 3px;
  font-size: 19px;
}

.location p {
  margin: 3px 0 0;
  color: var(--muted);
}

.club-section {
  background: var(--bg);
}

.club-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.club-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.club-copy li {
  border-left: 3px solid var(--red);
  padding: 10px 0 10px 15px;
  color: #dce1e9;
}

.portal-section {
  padding: 58px 0;
  background: linear-gradient(120deg, #9e0713, #ed1c2e);
}

.portal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.portal-inner > div {
  max-width: 780px;
}

.portal-inner .eyebrow {
  color: #fff;
}

.portal-inner p {
  margin-bottom: 0;
  color: #ffe7e9;
}

.contact-section {
  background: #0b0e14;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(30px, 6vw, 60px);
  text-align: center;
  background:
    radial-gradient(circle at 15% 0%, rgba(238, 31, 45, .16), transparent 35%),
    var(--surface);
}

.contact-card p {
  margin: 15px auto 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  background: #06080c;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner strong {
  color: #fff;
}

.footer-inner span,
.footer-inner small {
  font-size: 12px;
}

.footer-inner small {
  grid-column: 1 / -1;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 12px;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  border-radius: 999px;
  padding: 12px 16px;
  color: #061009;
  background: var(--green);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .35);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 800px) {
  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    inset: 72px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px;
    background: #080a0f;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 11px 10px;
  }

  .nav-cta {
    text-align: center;
  }

  .discipline-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .club-grid {
    grid-template-columns: 1fr;
  }

  .portal-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-actions .button,
  .location .button,
  .portal-inner .button {
    width: 100%;
  }

  .hero-banner {
    border-radius: 10px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid div {
    border-bottom: 1px solid var(--line);
  }

  .benefits-grid div:nth-child(3) {
    border-left: 0;
  }

  .location {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .footer-inner small {
    grid-column: auto;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

