@charset "UTF-8";
:root {
  --hero-img: url("../images/bg-header-02.jpg");
  --hero-height: 72vh;
  --maxw: 1200px;
  --section-bg: #fff;
  --revealr: 0px;
  /*stick section*/
  --sticky-top: -30px;
  --stage-vh: 55vh;
  --align-anchor: 0.5;
  --align-bias-px: 0;
  --align-epsilon: 8;
  /* Cards desktop*/
  --card-w: 367px;
  --card-h: 530px;
  --fan-rot: 15deg;
  --fan-spread: 240px;
  --align-offset: 385px;
  /* Slide cards mobile*/
  --dot: rgba(255, 255, 255, 0.08);
  --dot-active: #ff005d;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Marquee skins */
  /* FAQ */
  --faq-bg: #fff;
  --faq-card: #fff;
  --faq-text: #000;
  --faq-muted: #868686;
  --faq-border: rgba(0, 0, 0, 0.13);
  --faq-accent: #ff005d;
  --faq-radius: 14px;
}

/* ====== Reset / Base ====== */
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Dela Gothic One", sans-serif;
  text-transform: uppercase;
}

p,
a {
  font-family: "Plus Jakarta Sans", system-ui;
  font-weight: 400;
}

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

.container {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== Botão GIF ====== */
.btn-gif {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.btn-gif:hover .btn-img {
  transform: scale(1.05);
}
.btn-gif .btn-img {
  display: block;
  width: 400px;
  height: auto;
  transition: transform 0.3s ease;
}

/* ====== Seções com título ====== */
.how-to-play .content span,
.skin .content span,
.stats-wrap .content span,
.faq .content span {
  color: #ff005d;
  font-family: "Plus Jakarta Sans", system-ui;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.how-to-play .content h1,
.skin .content h1,
.stats-wrap .content h1,
.faq .content h1 {
  font-size: 55px;
  color: #000;
  line-height: 1.05;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.how-to-play .content p,
.skin .content p,
.stats-wrap .content p,
.faq .content p {
  width: 650px;
  max-width: 80%;
  color: #868686;
  margin: 0 auto;
  font-size: 20px;
}

/* ====== Reveal on scroll ====== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(2px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.6s ease;
    will-change: opacity, transform, filter;
    /* delays via data-attr */
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .reveal[data-reveal-delay] {
    transition-delay: attr(data-reveal-delay ms, initial);
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
.hero {
  position: relative;
  height: 700px;
  background: radial-gradient(120% 90% at 50% 30%, rgba(150, 0, 255, 0.35) 0%, rgba(45, 0, 90, 0.65) 50%, rgba(10, 8, 32, 0.9) 100%), var(--hero-img) center bottom/cover no-repeat;
}
.hero .content {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.hero .content h1 {
  font-size: 55px;
  color: #fff;
  line-height: 1.05;
  margin: 0;
}
.hero .content .sub {
  color: #fff;
  font-size: 20px;
  padding: 20px 0 0 0;
}
.hero .content .snake-anim {
  width: 600px;
  max-width: 100%;
  display: block;
  margin: -30px auto;
}
.hero .content .btn-gif {
  margin-top: -85px;
}

.hero .shape {
  position: absolute;
  bottom: -90px;
  left: 0;
  width: 100%;
  height: 300px;
}

.hero__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.nav {
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.logo img {
  display: block;
  height: 50px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s ease;
}
.menu a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social__btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  text-decoration: none;
  transition: 0.2s ease;
  backdrop-filter: blur(2px);
}
.social__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.08);
}

.shape-mobile {
  display: none;
}

.shape-desktop {
  display: block;
}

@media (max-width: 768px) {
  .shape-mobile {
    display: block;
  }
  .shape-desktop {
    display: none;
  }
}
/* ===== Sticky nav ===== */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.2s ease;
  box-shadow: 1px 6px 53px -7px rgba(255, 255, 255, 0.25);
  -webkit-box-shadow: 1px 6px 53px -7px rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 1px 6px 53px -7px rgba(255, 255, 255, 0.25);
}
.sticky-nav .nav {
  height: 64px;
}
.sticky-nav .menu a {
  color: #000;
}
.sticky-nav .menu a:hover {
  color: #000;
  transform: translateY(-1px);
}
.sticky-nav .social__btn {
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.13);
  backdrop-filter: none;
}
.sticky-nav .social__btn:hover {
  border: 1px solid rgba(0, 0, 0, 0.13);
}

.sticky-nav.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 899px) {
  .hero .content {
    margin-top: 50px;
  }
  .hero .content .snake-anim {
    width: 450px;
  }
}
@media (max-width: 900px) {
  .sticky-nav {
    display: none;
  }
  .nav {
    grid-template-columns: auto auto auto;
    justify-content: center;
    gap: 0;
  }
  .menu {
    display: none;
  }
  .social {
    display: none;
  }
  .logo img {
    height: 50px;
  }
  :root {
    --hero-height: 68vh;
  }
  .social__btn {
    width: 34px;
    height: 34px;
  }
  .hero {
    height: 600px;
  }
  .hero .hero__top {
    text-align: center;
  }
  .hero .content {
    margin-top: 50px;
  }
  .hero .content h1 {
    font-size: 30px;
    padding-bottom: 15px;
  }
  .hero .content p {
    padding: 0 !important;
    font-size: 16px !important;
  }
  .hero .content .snake-anim {
    margin: -20px auto;
  }
  .hero .content .btn-gif {
    margin-top: -55px;
  }
  .hero .content .btn-gif .btn-img {
    width: 250px;
  }
}
section.how-to-play {
  margin-top: 350px;
}
section.how-to-play .content .cards {
  position: relative;
  width: min(1000px, 92vw);
  height: calc(var(--card-h) + 80px);
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
section.how-to-play .content .cards .card {
  position: absolute;
  width: var(--card-w);
  height: var(--card-h);
  border-radius: 16px;
  object-fit: cover;
  transform-origin: center 80%;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
section.how-to-play .content .cards .card:nth-child(1) {
  transform: translateX(calc(-1 * var(--fan-spread))) rotate(calc(-1 * var(--fan-rot)));
  z-index: 1;
}
section.how-to-play .content .cards .card:nth-child(2) {
  transform: translateY(-45px) rotate(0deg);
  z-index: 3;
}
section.how-to-play .content .cards .card:nth-child(3) {
  transform: translateX(var(--fan-spread)) rotate(var(--fan-rot));
  z-index: 2;
}
section.how-to-play .content .cards:hover .card:nth-child(1) {
  transform: translateX(calc(-1 * var(--align-offset))) rotate(0deg);
  z-index: 1;
}
section.how-to-play .content .cards:hover .card:nth-child(2) {
  transform: translateX(0) rotate(0deg);
  z-index: 3;
}
section.how-to-play .content .cards:hover .card:nth-child(3) {
  transform: translateX(var(--align-offset)) rotate(0deg);
  z-index: 2;
}
section.how-to-play .track {
  display: flex;
  will-change: transform;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
  cursor: grab;
}
section.how-to-play .track:active {
  cursor: grabbing;
}
section.how-to-play .slide {
  flex: 0 0 100%;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
  cursor: grab;
}
section.how-to-play .slide > img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}
section.how-to-play .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
section.how-to-play .carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-bottom: 30px;
  padding-bottom: 40px;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
  cursor: grab;
}
section.how-to-play .carousel:active {
  cursor: grabbing;
}
section.how-to-play .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  opacity: 0.9;
  cursor: pointer;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.2196078431);
}
section.how-to-play .dot.active {
  width: 22px;
  border-radius: 8px;
  background: var(--dot-active);
}
section.how-to-play img {
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
  cursor: grab;
}
@media (min-width: 768px) {
  section.how-to-play .carousel {
    display: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .how-to-play {
    margin-top: 200px !important;
  }
  .how-to-play .content {
    margin-bottom: 30px;
  }
  .how-to-play .content h1 {
    font-size: 25px !important;
  }
  .how-to-play .content span {
    margin-bottom: 10px;
    display: block;
  }
  .how-to-play .content .sub {
    font-size: 16px;
  }
  .how-to-play .content .cards {
    display: none !important;
  }
}
.section {
  position: relative;
  width: 100%;
  margin: 0 0 48px;
  padding: 80px 0;
  overflow-x: hidden;
  overflow-y: visible;
  isolation: isolate;
  background: #fff;
  border-radius: 0 0 70px 70px;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--section-bg);
  clip-path: circle(var(--revealR) at 50% 50%);
  transition: background 0.5s ease;
  will-change: clip-path, background;
  z-index: 0;
  pointer-events: none;
}

/* ===== ESTADO PREENCHIDO ===== */
.section.is-filled::before {
  clip-path: none !important;
}
.section.is-filled .scroll-text {
  color: #fff;
}
.section.is-filled .kicker {
  color: rgba(255, 255, 255, 0.6509803922);
}
.section.is-filled .feature h2 {
  text-transform: uppercase;
  color: #fff;
}
.section.is-filled .feature .support {
  color: #fff;
}

/* marquee bleed */
.marquee-bleed {
  position: relative;
  z-index: 2;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.scroll-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  height: clamp(56px, 9vw, 120px);
  display: flex;
  align-items: center;
}
.scroll-strip.line-2 {
  justify-content: flex-start;
}
.scroll-strip.line-2 .scroll-text {
  padding-left: 0;
}

.scroll-text {
  font-family: "Dela Gothic One", sans-serif;
  white-space: nowrap;
  will-change: transform;
  letter-spacing: 0.03em;
  font-size: clamp(28px, 9vw, 96px);
  line-height: 1;
  padding: 0 2vw;
  color: #000;
  transition: color 0.35s ease;
  display: inline-block;
}

.scroll-unit {
  display: inline-block;
  padding-right: 2vw;
}

.section__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: visible;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  overflow: visible;
}

.col-image {
  position: relative;
  align-self: stretch;
  min-height: 60vh;
  display: flex;
  align-items: flex-start;
}

.sticky-box {
  position: -webkit-sticky;
  position: sticky;
  top: var(--sticky-top);
}
.sticky-box.force-fixed {
  position: fixed !important;
  top: var(--sticky-top);
  left: var(--stick-left, 0px);
  width: var(--stick-width, auto);
  z-index: 3;
}
.sticky-box.stuck-bottom {
  position: absolute !important;
  top: auto;
  bottom: 0;
  left: 0;
  width: auto;
}

.image {
  display: block;
  width: min(520px, 42vw);
  height: auto;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.col-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.col-text .sections {
  min-height: var(--stage-vh);
  padding: 0;
  display: flex;
  align-items: center;
}

.feature {
  max-width: 560px;
}
.feature h2 {
  margin: 0 0 10px 0;
  line-height: 1.2;
  font-size: 40px;
  color: #000;
  max-width: 680px;
  margin: 0 auto;
  text-transform: uppercase;
}
.feature .support {
  margin: 0;
  font-size: 25px;
  line-height: 1.5;
  color: #000;
  max-width: 100%;
}

.kicker {
  font-family: "Plus Jakarta Sans", system-ui;
  opacity: 0.7;
  display: block;
  font-size: 14px;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6509803922);
}

/* ===== Mobile steps ===== */
.steps-mobile {
  display: none;
}
.steps-mobile .step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
.steps-mobile .step + .step {
  margin-top: 40px;
}
.steps-mobile .step .step__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 680px;
  margin: 0 auto;
}
.steps-mobile .feature {
  max-width: 680px;
  margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .section {
    padding: 50px 0 80px;
  }
  .feature h2 {
    font-size: 25px;
  }
  .feature .support {
    font-size: 16px;
  }
  .content-grid {
    display: none;
  }
  .steps-mobile {
    display: block;
  }
  .steps-mobile .step {
    gap: 0;
  }
  .steps-mobile .step .step__media img {
    width: 380px;
    margin: 0;
  }
  .scroll-strip {
    height: 54px;
  }
  .scroll-text {
    font-size: 45px;
    padding: 0 12px;
  }
  .col-text .sections {
    min-height: auto;
  }
  .col-text .sections:first-child {
    min-height: calc(var(--stage-vh) - var(--sticky-top));
    padding-top: calc(var(--sticky-top) + var(--etapa1-offset, 0px));
    align-items: flex-start;
  }
  .image {
    width: min(460px, 50vw);
  }
}
:root {
  --gap: 20px;
  --w: 400px;
  --h: 400px;
  --speed: 110s;
}

.skin .content {
  margin-bottom: 30px;
}
.skin .carousel {
  width: 100%;
  overflow: hidden;
  height: var(--h);
}
.skin .carousel.is-dragging {
  cursor: grabbing;
}
.skin .track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: slide var(--speed) linear infinite;
  will-change: transform;
}
.skin .card {
  flex: 0 0 auto;
  width: var(--w);
  height: var(--h);
  border-radius: 10px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.skin .carousel:hover .track {
  animation-play-state: paused;
}

/* ====== Responsivo ====== */
@media (max-width: 900px) {
  .skin {
    padding: 0 16px 30px 16px;
  }
  .skin .content h1 {
    font-size: 25px;
  }
  :root {
    --w: 200px;
    --h: 200px;
  }
}
.stats-wrap {
  padding: 80px 0 0 0;
}
.stats-wrap .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 0;
  position: relative;
}
.stats-wrap .btn-gif {
  margin-top: -80px;
}

.stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat {
  width: 300px;
  height: 300px;
  border: 2px solid #e3e3e3;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  margin: -38px 0;
  z-index: 1;
}

.number {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 60px;
}

.label {
  font-family: "Plus Jakarta Sans", system-ui;
  font-size: 16px;
  color: #000;
}

.mascote {
  grid-column: 2;
  z-index: 2;
}
.mascote img {
  width: 700px;
  height: auto;
  max-width: 100%;
  display: block;
  position: relative;
}

.stack.left {
  transform: translateX(130px);
}

.stack.right {
  transform: translateX(-130px);
}

/* ====== Responsivo ====== */
@media (max-width: 900px) {
  .stats-wrap {
    padding: 20px 16px;
  }
  .stats-wrap .content span {
    margin-bottom: 10px;
    display: block;
  }
  .stats-wrap .content h1 {
    font-size: 25px;
    margin-bottom: 50px;
  }
  .stats-wrap .container {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .stats-wrap .container .stat {
    margin: -48px 0;
    width: 300px;
    height: 300px;
  }
  .stats-wrap .container .number {
    font-size: 42px;
  }
  .stats-wrap .container .mascote img {
    display: none;
  }
  .stats-wrap .container .stack.left, .stats-wrap .container .stack.right {
    transform: none;
  }
  .stats-wrap .btn-gif {
    margin-top: 0;
  }
  .stats-wrap .btn-gif .btn-img {
    width: 250px;
  }
}
.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px 230px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #000;
}
.faq .faq-item {
  background: var(--faq-card, #fff);
  border: 1px solid var(--faq-border, #e5e7eb);
  border-radius: var(--faq-radius, 14px);
  overflow: hidden;
}
.faq .faq-item .faq-head span {
  color: #000;
}

.faq-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 15px 25px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-num {
  font-weight: 700;
  font-size: 18px;
}

.faq-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

.faq-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--faq-accent, #ff005d);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.faq-icon::after {
  content: "";
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  display: block;
}
.faq-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2px;
  height: 18px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.22s ease;
}

.faq-item.open .faq-icon::before {
  transform: scaleY(0);
}
.faq-item.open .faq-body {
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 16px 18px 16px 25px;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: clip;
  opacity: 0;
  padding: 0 18px 0 25px;
  will-change: grid-template-rows, opacity, padding;
  transition: grid-template-rows 0.34s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.25s ease, padding 0.34s ease;
  font-family: "Plus Jakarta Sans", system-ui;
  color: #868686;
}
.faq-body > * {
  margin-block-start: 0;
}

.faq-inner {
  overflow: hidden;
  line-height: 25px;
}

/* ====== Acessibilidade ====== */
@media (prefers-reduced-motion: reduce) {
  .faq-body {
    transition: none !important;
    grid-template-rows: 1fr !important;
    opacity: 1 !important;
    padding: 16px 18px 16px 25px !important;
  }
}
/* ====== Responsivo ====== */
@media (max-width: 900px) {
  .faq {
    padding: 0 16px 30px 16px;
  }
  .faq .content span {
    margin-bottom: 10px;
    display: block;
  }
  .faq .content h1 {
    font-size: 25px;
  }
}
@media (max-width: 900px) and (max-width: 480px) {
  .faq-title {
    font-size: 16px;
  }
  .faq-body {
    padding-left: 60px;
  }
  .faq-icon {
    width: 38px;
    height: 38px;
  }
}
.footer {
  position: relative;
  background: radial-gradient(120% 90% at 50% 30%, rgba(150, 0, 255, 0.35) 0%, rgba(45, 0, 90, 0.65) 50%, rgba(10, 8, 32, 0.9) 100%), var(--hero-img);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.footer .snake-lottie {
  position: absolute;
  bottom: 100px;
  z-index: -1;
}
.footer p {
  font-family: "Plus Jakarta Sans", system-ui;
  padding: 30px 0;
  color: #fff;
  opacity: 0.6;
  text-align: center;
}

/* ====== Responsivo ====== */
@media (max-width: 900px) {
  .footer .snake-lottie {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
