@import url("https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Khand:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Khand", sans-serif;
}

html {
  scroll-behavior: smooth;
}

details {
  cursor: pointer;
  user-select: none;
}

.icon-fixed {
    transition: transform 0.3s ease-in-out;
    animation: popup 7s infinite;
    cursor: grab;
}

.icon-fixed:hover {
    transform: scale(1.1);
    opacity: 1;
    transition: none;
}

@keyframes popup {
  from {
    scale: 1;
  }
  3% {
    scale: 0.6;
  }
  6% {
    scale: 0.9;
  }
  9% {
    scale: 0.7;
  }
  12% {
    scale: 1;
  }
  to {
    scale: 1;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(120%);
  }
  95% {
    transform: translateX(120%);
  }
  to {
    transform: translateX(0);
  }
}

.color-yellow {
  color: #f5c30a;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to bottom,
    rgba(19, 80, 2, 0.9) 40%,
    rgba(19, 80, 2, 0)
  );
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.hide-header {
  top: -150px !important;
}

#hero {
  background-image: url("../../assets/hero/estadio.png");
  height: 900px;
}

#jogador {
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

#hero-text {
  transform: translateX(-150%);
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.store-card {
  background-color: rgba(117, 117, 117);
  width: 250px;
}

#musica {
  background-image: url("../../assets/musica/gramado.jpg");
  position: relative;
}

#quote {
  text-align: justify;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.triangle {
  position: absolute;
  bottom: -2px;
  width: 100vw;
  height: 120px;
  background-color: #231f1c;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

#triangle2 {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100vw;
  height: 120px;
  background-color: #231f1c;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.hex {
  clip-path: polygon(
    50% 0%,
    /* topo */ 100% 25%,
    /* topo direito */ 100% 75%,
    /* base direita */ 50% 100%,
    /* base */ 0% 75%,
    /* base esquerda */ 0% 25% /* topo esquerdo */
  );
  left: 50%;
  transform: translate(-50%, -50%);
}

.step {
  h3 {
    color: black;
  }

  p {
    color: #4b5563;
  }
}

#identidade {
  position: relative;
  background-image: url(../../assets/identidade/bg-identidade.jpg);

  .triangle {
    clip-path: polygon(0 0, 100% 0%, 100% 100%);
    top: -2px;
    background-color: #135002;
  }
}

#identidade .group-text {
  @media screen and (min-width: 1536px) {
    max-width: 500px;
    max-height: 700px;
    height: 600px;
  }
}

.id-card {
  img {
    width: 120px;
    height: 120px;
    @media screen and (min-width: 1536px) {
      width: 200px;
      height: 200px;
    }
  }

  .group-text {
    max-width: 300px;
    max-height: 400px;
    scrollbar-width: thin;
    scrollbar-color: #f5c30a #e0e0e0;

    @media screen and (min-width: 1536px) {
      max-width: 500px;
    }
    h2 {
      color: black !important;
    }
    p {
      color: #4b5563 !important;
    }
  }

  .group-text::-webkit-scrollbar {
    width: 8px;
    background: #e0e0e0;
  }

  .group-text::-webkit-scrollbar-thumb {
    background: #f5c30a;
    border-radius: 4px;
  }

  .group-text::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
  }
}

#beneficios {
  background-image: url(../../assets/beneficios/bg-beneficios.jpg);
  .id-card {
    position: relative;
    img {
      position: absolute;
      top: -70px;
      left: 50%;
      transform: translateX(-50%);
      @media screen and (min-width: 1536px) {
        top: -150px;
      }
    }
    li {
      color: #4b5563;
    }
    h2 {
      color: black;
    }
  }
}

.p_screen {
  color: #4b5563 !important;
}

.h2_screen {
  color: black !important;
}

#car_screen {
  scroll-padding-left: 100px;
  scroll-padding-right: 100px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-wrapper::-webkit-scrollbar {
  display: none;
}

.gallery-wrapper {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

#footer {
  font-family: "Inter";
}
