* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--font--montserrat);
}

html, body {
    scroll-behavior: smooth;
}

::-webkit-scrollbar-thumb{
  background-color: #f9f9f9;
  width: 5px;
}

::-webkit-scrollbar{
  width: 5px;
  background-color: #000000;
}

@keyframes shine {
  0% {
    left: -200px;
  }
  60% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}

.faixa{
  width: 100%;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--color--green), var(--color--green--high));
  z-index: 999;
  overflow: hidden;
}

.faixa span {
  font-weight: 600;
  font-size: 18px;
}

.faixa::before {
  content: "";
  position: absolute;
  width: 200px; /* Ajuste conforme necessário */
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -200px;
  opacity: 0.6;
  animation: shine 4.5s ease-out infinite;
}

.faixa span {
  font-weight: 500;
  color: var(--color--white);
}

@media (max-width: 768px) {
  .faixa {
    height: 70px;
    text-align: center;
  }

  .faixa span {
    font-size: 16px;
  }
}

.button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px ();
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background: linear-gradient(90deg, var(--color--green), var(--color--green--high));
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: 500;
    border: 2px solid #21a33d;
    outline: none;
    overflow: hidden;
    font-size: 16px;
    cursor: pointer;
  }
  
  .icon {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease-in-out;
  }
  
  .button:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
  }
  
  .button:hover .icon {
    transform: translate(4px);
  }
  
  .button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }
  