/*RESET / BASE */
:root {
  --card-radius: 22px;
  --card-padding: 45px;
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  transition: background 0.45s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*LAYOUT CENTRAL*/
main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card-central {
  width: 85%;
  max-width: 1100px;
  padding: var(--card-padding);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(7px);
}

/*TOP BAR (ICONS) */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.cta {
  font-size: 24px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 22px;
  filter: brightness(0) invert(1);
  display: block;
}

/* CARROSSEL */
.carousel-wrapper {
  position: relative;
}

.carousel-fade {
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  pointer-events: none;
  z-index: 6;
}

.carousel {
  display: flex;
  gap: 20px;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  margin-bottom: 30px;
  scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
  display: none;
}

/* item */
.carousel img {
  flex: 0 0 auto;
  width: 220px;
  height: 450px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  scroll-snap-align: center;
  transition: transform .28s cubic-bezier(.2, .9, .3, 1), box-shadow .28s ease;
  will-change: transform;
}

.carousel img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

/*DESCRIÇÕES*/
.descricoes {
  color: #ececec;
  font-weight: 600;
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 13px;
  text-align: center;
  margin-top: 30px;
  gap: 56%;
}

/*CURSOR CUSTOM */
#cursor {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .12s ease, background .22s ease, opacity .22s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  mix-blend-mode: normal;
}

body {
  cursor: none;
}

.cursor--hover {
  transform: translate(-50%, -50%) scale(1.8);
}
.tema-padrao #cursor {
  background: #ffffff;
}

.tema-classic #cursor {
  background: #0f62c4;
}

.tema-blue #cursor {
  background: #0638a8;
}

.tema-no-goggles #cursor {
  background: #2257d9;
}

.tema-hair #cursor {
  background: #ffcf3b;
}

.tema-retro #cursor {
  background: #1b72df;
}

.tema-classic-yellow#cursor {
  background: #ffe75a;
}

.tema-sheisty #cursor {
  background: #0b4da3;
}

.tema-sinister #cursor {
  background: #ffde23;
}

.tema-dark #cursor {
  background: #ffffff;
}

.tema-prison #cursor {
  background: #d3d3d3;
}

.tema-viltrumite #cursor {
  background: #bbbbbb;
}

.tema-mohawk #cursor {
  background: #2b7cff;
}

.tema-mohawk-light #cursor {
  background: #7fc1ff;
}

.tema-flaxan #cursor {
  background: #00a77d;
}

.tema-brown #cursor {
  background: #c87f30;
}

.tema-omni #cursor {
  background: #ff3b3b;
}

.tema-padrao {
  background: #202020;
}

.tema-classic {
  background: #134fa1;
}

.tema-blue {
  background: #0b2b8f;
}

.tema-no-goggles {
  background: #1941af;
}

.tema-hair {
  background: #f6c008;
}

.tema-retro {
  background: #1658b8;
}

.tema-classic-yellow {
  background: #ffdb2e;
}

.tema-sheisty {
  background: #093a7b;
}

.tema-sinister {
  background: #ffcb05;
}

.tema-dark {
  background: #101010;
}

.tema-prison {
  background: #d0cdc9;
}

.tema-viltrumite {
  background: #ececec;
  color: #111;
}

.tema-mark-with-the-mustache {
  background: rgb(166, 168, 168);
}

.tema-mohawk {
  background: #2578ff;
}

.tema-mohawk-light {
  background: #5aa7ff;
}

.tema-flaxan {
  background: #005f4b;
}

.tema-omni {
  background: #ba0000;
}

.variant-section {
  margin-top: 72px;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;

  transition:
    grid-template-rows .6s ease,
    opacity .4s ease;
}

.variant-section.active {
  grid-template-rows: 1fr;
  opacity: 1;
}

.variant-section>* {
  overflow: hidden;
}

.variant-content {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
}


.variant-image {
  width: 100%;
  max-width: 520px;
}

.variant-image img {
  width: 100%;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  object-position: center top;

  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);

  display: block;
}

.variant-text h2 {
  font-size: 32px;
  margin-bottom: 18px;

  letter-spacing: .5px;
  line-height: 1.2;
}

.variant-text p {
  font-size: 16px;
  line-height: 1.7;

  opacity: .92;
  max-width: 620px;
}

/*responsivo*/
@media (max-width: 900px) {
  .card-central {
    width: 95%;
    padding: 28px;
  }

  .carousel img {
    width: 160px;
    height: 340px;
  }

  .variant-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .variant-image img {
    max-height: 420px;
  }

  .variant-text h2 {
    font-size: 26px;
  }
}