body {
  font-family: Arial, sans-serif;
  background: #f4f4f9;
  margin: 0;
  padding: 0;
}

section.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card__img {
  width: 100%;
  max-height: 250px;   /* altura máxima uniforme */
  object-fit: contain; /* evita recortes */
  background: #fff;
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  color: #007bff;
}

.swiper-pagination-bullet {
  background: #007bff;
}