body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

.negativo {
  filter: brightness(0) invert(1);
}

/* Gradient Background - Reutilizável para qualquer seção */
.gradient-background {
  position: relative;
  overflow: hidden;
}

.gradient-background::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -25%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(45, 138, 74, 0.341) 0%,
    rgba(45, 138, 74, 0.123) 50%,
    transparent 70%
  );
  filter: blur(60px);
  animation: float 20s ease-in-out infinite;
}

.gradient-background::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(240, 249, 244, 1) 0%,
    rgba(45, 138, 74, 0.15) 30%,
    rgba(240, 249, 244, 0.8) 50%,
    transparent 70%
  );
  filter: blur(80px);
  animation: float 15s ease-in-out infinite reverse;
}

/* Gradient Orbs - Adicione como elementos dentro de .gradient-background */
.gradient-orb-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(55, 166, 90, 0.168) 0%,
    rgba(55, 166, 91, 0.25) 50%,
    transparent 80%
  );
  filter: blur(70px);
  animation: float 25s ease-in-out infinite;
}

.gradient-orb-2 {
  position: absolute;
  bottom: -5%;
  left: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(45, 138, 74, 0.29) 10%,
    rgba(240, 249, 244, 0.9) 90%,
    transparent 70%
  );
  filter: blur(90px);
  animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
