#servicios {
  padding: 50px;
  background: #f9f9f9;
  text-align: center;
}

#servicios .subtitulo {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.servicio-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.servicio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.servicio-card h3 {
  color: #d32f2f; /* rojo Yamaha */
  margin-bottom: 10px;
}

.servicio-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.btn-servicio {
  display: inline-block;
  background: #007BFF;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-servicio:hover {
  background: #0056b3;
}

.servicio img {
  width: 100%;          /* ocupa todo el ancho de la tarjeta */
  height: 200px;        /* altura fija */
  object-fit: cover;    /* recorta la imagen para que no se deforme */
  border-radius: 6px;   /* esquinas redondeadas */
  margin-bottom: 15px;
}