.navigation-products {
  display: flex;
  width: 100vw;
  height: auto;
  min-height: 600px;
  flex-wrap: wrap;
}

.nav-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 300px;
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--shadow-medium);
  z-index: 1;
}

.nav-card:hover::before {
  background: var(--shadow-light);
}

.nav-card:hover {
  transform: scale(1.02);
  z-index: 100;
}

.nav-card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-color-oposite);
}

.nav-card-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 6px;
  color: var(--text-color-oposite);
}

.nav-card-subtitle {
  font-size: 16px;
  opacity: 0.9;
  color: var(--text-color-oposite);
}

.nav-card-gardens {
  background-image: url("/assets/img/intro-card-1.webp");
}

.nav-card-mobile {
  background-image: url("/assets/img/intro-card-2.webp");
}

.nav-card-consultations {
  background-image: url("/assets/img/intro-card-3.webp");
}

.nav-card-specs {
  background-image: url("/assets/img/intro-card-4.webp");
}

@media (max-width: 768px) {
  .navigation-products {
    height: auto;
    min-height: 800px;
    flex-direction: column;
  }

  .nav-card {
    width: 100%;
    height: 200px;
  }

  .nav-card-title {
    font-size: 24px;
  }

  .nav-card-subtitle {
    font-size: 14px;
  }
}
