.catalogo {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.vehiculo-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  max-width: 340px;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehiculo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.vehiculo-imagen {
  position: relative;
  overflow: hidden;
}

.vehiculo-imagen img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.vehiculo-card:hover .vehiculo-imagen img {
  transform: scale(1.03);
}

.vehiculo-info {
  padding: 20px 24px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vehiculo-info h3 {
  font-size: 1.5rem;
  color: #111;
  margin: 0;
  font-weight: 600;
}

.vehiculo-info p {
  margin: 0;
  font-size: 1rem;
  color: #444;
}

.vehiculo-info .km {
  font-weight: 500;
  color: #222;
}

.vehiculo-info .anio {
  color: #999;
}

.vehiculo-info .precio {
  font-size: 1.3rem;
  color: #F31010;
  margin-top: 10px;
}
