/* .containercard {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.card {
  flex: 1;
  min-width: 250px;
  border: 1px solid #000;
  border-radius: 25px;
  overflow: hidden;
  padding-bottom: 15px;
  display: block;
}

.card img {
  width: 100%;
  object-fit: cover;
}

.card-title {
  text-align: center;
  margin-top: 30px;
  font-size: 1.3rem;
  font-weight: bold;
}

.card-subtitle {
  text-align: center;
  margin: 10px 30px 20px;
  font-size: 0.9rem;
  font-weight: normal;
}

.card-desc {
  text-align: center;
  margin: 15px;
  font-size: 0.7rem;
  font-style: italic;
}

.card-price {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.card-duration {
  text-align: center;
  margin: 2px 2px;
  font-size: 0.9rem;
  font-style: italic;
} */