body{
  overflow-x: hidden !important;
  font-family: 'Montserrat', sans-serif;
}

/*Slide infinito START*/

@-webkit-keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(-250px * 7));
  }
}

.slider {
  background: white;
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14); /* Duplicar a quantidade de slides */
}

.slider .slide {
  height: 100px;
  width: 250px;
}

@media (max-width: 768px) {
  .text-4xl {
      font-size: 2.25rem;
  }
  .p-6 {
      padding: 1.5rem;
  }
  .mt-16 {
      margin-top: 4rem;
  }
  .mt-8 {
      margin-top: 2rem;
  }
  .grid-cols-1 {
      grid-template-columns: 1fr;
  }
  .md\:grid-cols-2 {
      grid-template-columns: 1fr;
  }
  .md\:grid-cols-3 {
      grid-template-columns: 1fr;
  }
}

/*Slide infinito END*/

/*Fade-up*/

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fade-up 1s ease-out forwards;
}

.hidden-custom-fade {
  opacity: 0;
}

/*count*/

.count-up-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.count-up-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/*Form contact*/

.adicional-style-form{
  padding: 40px;
  border-radius: 8px;
  border: solid 2px rgb(132, 131, 131);
}

.input-form-adicional{
  border: solid 1px rgb(88, 88, 88);
}


/*Testimonial slider*/
.swiper-slide {
  min-width: 100%;
}
@media (min-width: 768px) {
  .swiper-slide {
      min-width: 50%;
  }
}
@media (min-width: 1024px) {
  .swiper-slide {
      min-width: 33.3333%;
  }
}
.rating {
  display: flex;
}
.rating span {
  font-size: 1.25rem;
  color: #FFD700;
  margin-right: 2px;
}
.swiper-pagination {
  position: absolute !important;
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.swiper-button-next, .swiper-button-prev {
  background-color: #2a3441;
  color: white !important;
  padding: 15px !important;
  border-radius: 5px;
  width: 20px !important;
  height: 20px !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 16px;
}

/*WhatsApp-Icon*/

.whatsapp-icon {
  position: fixed;
  bottom: 1rem;
  right: 0.5rem;
  width: 90px; /* Tamanho do ícone */
  height: 90px; /* Tamanho do ícone */
  background-image: url('/img/wp-btn-icon.png'); /* Caminho para o ícone baixado */
  background-size: cover;
  cursor: pointer;
  z-index: 2;
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% {
      transform: scale(1); /* Escala inicial do ícone */
  }
  50% {
      transform: scale(1.1); /* Escala aumentada do ícone */
  }
  100% {
      transform: scale(1); /* Volta para a escala inicial do ícone */
  }
}

/*text gradiente*/

.gradient-text {
  font-size: 2em;
  font-weight: bold;
  background: linear-gradient(90deg, #fe8801, #fec301, #fea65d);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 5s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}