body, h1, h2, h3, h4, h5, h6, p, li, a, button, input, textarea {
    font-family: 'Exo 2', sans-serif !important;
}

.green-background {
  background: linear-gradient(135deg, #2ecc71, var(--color-verde));
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.green-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-color: white;
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
  animation: moveTexture 30s linear infinite;
  pointer-events: none;
}

@keyframes moveTexture {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-10%, -10%);
  }
}

.btn-green {
  background-color: white;
  color: var(--color-verde);
  border: 2px solid var(--color-verde);
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-green:hover {
  background-color: var(--color-verde);
  color: white;
}

 .navbar-nav .nav-link.active {
    color: var(--color-verde) !important;
}

.active-link {
    position: relative;
    padding-bottom: 8px;
    color: #000 !important;
}

.active-link::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60%;
    height: 3px;
    background-color: var(--color-verde);
    transition: width 0.3s ease;
}

.active-link:hover::after {
    width: 80%;
}

@media (max-width: 992px) {
    .active-link::after {
        content: '';
        position: absolute;
        left: 5%;
        bottom: 0;
        width: 8%;
        height: 3px;
        background-color: var(--color-verde);
        transition: width 0.3s ease;
    }
    .active-link:hover::after {
        width: 10%;
    }
}

.gray-background{
    background-color: #f8f9fa;
    height: 100%
    width: 100%;
}
.text-green{
    color: #177642;
}