body {
  font-family: "Inter", sans-serif;
  background-color: #121212;
  color: #e0e0e0;
}

.gradient-text {
  background-image: linear-gradient(to right, #6ee7b7, #3b82f6, #9333ea);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shadow-glow {
  box-shadow: 0 0 15px rgba(147, 51, 234, 0.5);
}

/* Animações de Fade-in para as seções */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Estilos do Carrossel */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s;
}

.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
  left: 1rem;
}

.carousel-button.next {
  right: 1rem;
}

.hero-image {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../assets/hero-image.jpeg");
  z-index: 0;
  width: 100%;
  height: 100%;
  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  /*top: 0;
    left: 0;*/
}

/* Estilo para o canvas do grafo animado */
#graph-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Opacidade para ficar no fundo */
  opacity: 0.3;
  /* Ajustado para um visual menos poluído */
}

/* Animação do banner de logos */
@keyframes infinite-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logo-banner-track {
  display: flex;
  animation: infinite-scroll 60s linear infinite;
  /* 60s para um movimento suave */
}

.logo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 150px;
  /* Largura fixa para cada logo */
  margin: 0 2rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

.logo-item:hover {
  filter: grayscale(0%);
}

/* Pausa a animação em todo o wrapper, não apenas no item */
.logo-banner-wrapper:hover .logo-banner-track {
  animation-play-state: paused;
}

.logo-item:hover {
  opacity: 1;
  visibility: visible;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 16px;
  border: none;
  outline: none;
  color: inherit;
  margin-left: 32px !important;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown .dropbtn:hover {
  color: var(--color-purple-400);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: var(--color-purple-400);
}

.show {
  display: block;
}

#mobile-menu-button {
  margin-left: 16px;
}
