.produtos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  padding: 10px;
}

.produto-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 500px;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.produto-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.produto-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.produto-info h4 {
  margin-top: 0;
  color: #095aca;
}

.produto-info p {
  flex: 1;
  color: #333;
  margin: 10px 0 20px;
}

.produto-info .btn {
  align-self: start;
  color: white;
  background-color: #095aca;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.produto-info .btn:hover {
  background-color: #063d89;
}

/* 📱 1 coluna no mobile */
@media (max-width: 768px) {
  .produtos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .produto-card {
    max-width: 100%;
  }

  .produto-card img {
    height: 180px;
  }

  .produto-info {
    padding: 15px;
  }
}
