:root {
  --bg: #070707;
  --ink: #f5f5f5;
  --muted: #b8b8b8;
  --red: #e10600;
  --red-2: #ff2a22;
  --line: rgba(255, 255, 255, 0.12);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--red-2);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0.04em;
  line-height: 0.92;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 8rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.3rem;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
}

.btn--solid {
  background: var(--red);
  color: #fff;
}

.btn--ghost {
  border-color: var(--line);
  background: transparent;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.7rem 6vw;
  background: linear-gradient(to bottom, #000, transparent);
}

.nav__brand img {
  height: 52px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
  font-size: 0.86rem;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
}

.nav__toggle span {
  display: block;
  height: 2px;
  margin: 6px 8px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.hero__copy {
  position: relative;
  z-index: 1;
  padding: 0 6vw 18vh;
  max-width: 58rem;
}

.lede {
  max-width: 34rem;
  margin: 1.1rem 0 1.6rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  right: 6vw;
  bottom: 7vh;
  z-index: 1;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.band,
.split,
.modalidades,
.planos,
.unidade {
  padding: 6.5rem 6vw;
}

.band__head {
  margin-bottom: 2rem;
}

.carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.carousel__track {
  display: flex;
  transition: transform 0.7s ease;
}

.slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.slide img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(88svh, 920px);
  object-fit: contain;
  object-position: center;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.carousel__btn.prev {
  left: 1rem;
}

.carousel__btn.next {
  right: 1rem;
}

.carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.carousel__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.carousel__dots button.is-on {
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split__media img {
  width: 100%;
  height: auto;
  max-height: min(88svh, 920px);
  object-fit: contain;
  object-position: center;
  background: #000;
}

.ticks {
  margin-top: 1.4rem;
  list-style: none;
}

.ticks li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.cards,
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card,
.plan {
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: #0d0d0d;
}

.card span {
  color: var(--red);
  font-family: var(--display);
  font-size: 2rem;
}

.plans {
  grid-template-columns: repeat(3, 1fr);
}

.plan--hot {
  border-color: var(--red);
  background: linear-gradient(180deg, #2a0505, #0d0d0d);
}

.plan__tag {
  color: var(--red-2);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.plan .btn {
  margin-top: 1.2rem;
}

.unidade {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
}

.unidade a {
  color: var(--red-2);
}

.unidade .btn {
  margin-top: 1.2rem;
  color: #fff;
}

.unidade__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(1) contrast(1.1);
}

.foot {
  padding: 2.4rem 6vw 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.foot img {
  height: 44px;
  margin-bottom: 0.8rem;
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    right: 6vw;
    flex-direction: column;
    padding: 1rem;
    background: #111;
    border: 1px solid var(--line);
  }

  .nav.is-open .nav__links {
    display: flex;
  }

  .nav__toggle {
    display: block;
    margin-left: auto;
  }

  .split,
  .unidade,
  .cards,
  .plans {
    grid-template-columns: 1fr;
  }

  .slide img,
  .split__media img {
    width: 100%;
    height: auto;
    max-height: min(85svh, 860px);
  }
}
