.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),
              url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: bold;
}

.btn-primary {
  background: #ff7a00;
  color: #fff;
  padding: 12px 30px;
  border-radius: 999px;
  display: inline-block;
  margin-top: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 16px;
  text-align: center;
}

.price {
  color: #ff7a00;
  font-weight: bold;
  font-size: 1.1rem;
}

.btn-wa {
  background: #25d366;
  color: white;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  display: block;
}

.hero-gradient {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.55) 50%,
    rgba(0,0,0,.25) 100%
  );
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
}
