.cards {
  display: flex;
  width: 100%;
  gap: 20px;
  height: max-content;
}

.card-curso {
  max-width: 330px;
  height: 220px;
  background-color: var(--color-grafiti);
  color: white;

  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  line-height: 28px;

  transition: ease-in-out 200ms;
  cursor: pointer;

  /* -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5); */

  @media (max-width: 640px) {
    height: 200px;
  }

}

.card-curso:hover {
  transform: scale(1.05);
}

.card-curso .card-body {
  color: white;
  font-family: var(--font-family-main);
  font-weight: 400;
  font-size: 18px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  padding: 0 28px;
  text-align: center;
}

.card-curso .card-curso-header {
  border-radius: 12px 12px 0px 0px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
}

.card-footer {
  border-top: 1px solid var(--color-dark-gray);
  padding-bottom: 16px;
  height: fit-content;
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 80%;
}

.city {
  display: flex;
  align-items: center;
  font-weight: 400;
  color: var(--color-light-gray);
  font-size: 16px;
}

.btn-cursos-futuros {
  border-radius: 10px;
  border: 1px solid var(--color-dark-gray);
  background-color: unset;
  outline: none;
  font-family: var(--font-family-main);
  padding: 4px 12px;
  color: var(--color-dark-gray);
  cursor: pointer;
  font-size: 16px;
  height: 40px;
  flex: 1 1 150px;
  min-width: 145px;
  transition: all 0.3s;

  @media (max-width: 640px) {
    flex: 1 1 calc(50% - 7.5px);
    min-width: unset;
  }
}

.btn-cursos-futuros:hover {
  border-color: var(--color-light-gray);
}

.btn-cursos-futuros.active {
  color: white;
  border-color: var(--color-light-gray);
}

@media (max-width: 640px) {
  .btn-cursos-futuros {
    width: 100% !important;
  }

  .search-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}