@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

.div-grad {
  background-color: rgba(255, 255, 255, 0.9);
}

.font-title {
  font-family: "Mulish", sans-serif;
}

.font-text {
   font-family: "Mulish", sans-serif;
}

.text-client {
  color: #E30505;
}
.bg-client {
  background-color: #E30505;
}
html {
  scroll-behavior: smooth;
}

.card-hover-grow {
  transition: height 0.3s ease, transform 0.3s ease;
}

.card-hover-grow:hover {
  height: calc(100% + 2rem);
  /* Aumenta a altura em 2rem */
}

::-webkit-scrollbar {
  width: 3px;

  background-color: transparent;
}


/* Track */


/* Handle */
::-webkit-scrollbar-thumb {
  background: #C10007;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #C10007;
}

.scroll {
  width: 60px;
  position: absolute;

  height: 60px;
  border: 2px solid white;
  border-radius: 50%;
  position: relative;
  animation: down 1.5s infinite;
  -webkit-animation: down 1.5s infinite;
}

.scroll::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 18px;
  width: 18px;
  height: 18px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

@keyframes down {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translateY(15px);
  }

  40% {
    transform: translate(0);
  }
}

@-webkit-keyframes down {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translateY(15px);
  }

  40% {
    transform: translate(0);
  }
}


.header {}

/* Marquee styles */
.marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}