html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Metropoli", Sans-serif;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.logos {
  display: flex;
  flex-wrap: nowrap;
  animation: marquee 52s linear infinite;
}

.logo-item {
  flex-shrink: 0;
  margin-right: 20px; /* Ajuste o espaço entre as logos */
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  
}


.logo-item:hover {
  transform: scale(1.1);
}


.cursorpointer:hover{
  cursor: pointer;
}


@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.3s ease-out;
}