:root {
  --primary: #28c76f;
  --secondary: #004f2c;

  --gradient-start: #28c76f33;
  --gradient-end: #28c76f1a;
}

body {
  font-family: "Inter", sans-serif;
}

.navbar-transparent {
  background-color: transparent !important;
  z-index: 2;
}

.navbar .nav-link {
  color: white;
}

.navbar .navbar-brand {
  filter: invert(100%) sepia(100%) saturate(22%) hue-rotate(318deg)
    brightness(104%) contrast(107%);
}

.logo-white {
  filter: invert(100%) sepia(100%) saturate(22%) hue-rotate(318deg)
    brightness(104%) contrast(107%);
}

.hero {
  background: linear-gradient(var(--gradient-start), var(--gradient-end)),
    url("./assets/hero_background.png");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--secondary);
  padding: 100px 20px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero .container {
  text-align: left;
  z-index: 1;
}

.hero-wave {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}

.hero-wave-2 {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
}

.btn-simule {
  background-color: var(--primary);
  border: none;
  padding: 8px 24px;
  font-size: 1rem;
  color: white;
  border-radius: 999px;
  transition: 0.3s;
}

.btn-simule:hover {
  background-color: var(--secondary);
  color: white;
}

.features-container {
  margin-top: -180px;
  position: relative;
}

.feature-icon {
  margin-bottom: 24px;
  filter: invert(23%) sepia(14%) saturate(3839%) hue-rotate(113deg)
    brightness(94%) contrast(102%);
}

.features-box {
  background: #f8f9fa;
  border-radius: 24px;
  padding: 30px;
  box-shadow: none;
  height: 100%;
}

.card-title {
  color: var(--secondary);
}

.section-title {
  color: var(--secondary);
  font-weight: bold;
}

.arrow svg {
  width: 12px;
  height: auto;
  fill: var(--primary);
}

.accordion-button {
  font-weight: bold;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--secondary);
}

.grey-section {
  background: #f8f9fa;
}

@media (max-width: 991.98px) {
  .navbar {
    background-color: white !important;
  }

  .navbar .nav-link {
    color: black !important;
  }

  .navbar .navbar-brand {
    filter: none;
  }

  .arrow {
    transform: rotate(90deg);
  }

  .hero {
    background-position: center right;
  }

  .hero-wave {
    bottom: 0px;
  }

  .hero-wave-2 {
    bottom: -12px;
  }
}
