body {
  font-family: "Inter", sans-serif;
  background-image: url("../img/midas-medalha.webp");
  background-size: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
.chart-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  height: 300px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-scroll {
  display: flex;
  width: auto;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}
.group:hover .animate-scroll {
  animation-play-state: paused;
}

.hero-bg {
  background-color: #040f22;
  background-image: linear-gradient(0deg, #312b09 0%, #000000 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#veiculos {
  background: url('../img/autofin.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#loader.hidden {
  display: none;
}
#loader-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  text-align: center;
}
#loader-logo {
  margin-bottom: 20px;
  width: 200px;
}

#loader-title {
  color: hsl(0, 100%, 30%);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

#loader-subtitle {
  color: hsl(0, 100%, 30%);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

#aceitar-cookies {
  transition: transform 1.5s ease-in-out;
}

.deslizar-baixo {
  transform: translateY(100%);
}

.hidden {
  display: none;
}

.slide-out {
  animation: slide-out 0.5s ease-in-out;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.wa {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  right: 20px;
}

#wa-icon {
  width: 75px;
  height: 75px;
  bottom: 20px;
  right: 20px;
}

#wa-icon:hover {
  cursor: pointer;
  transition: transform 0.5s ease;
  transform: scale(1.1);
}
