.container-servicio {
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: flex;
  justify-content: center;
  /* Centrar horizontalmente */
  flex-wrap: wrap;
  /* Permite que los items se vayan a la siguiente línea */
}

.service {
  text-align: center;
  background: #ffffff00;
  padding: 10px;
  color:aliceblue;
  margin-bottom: 10px;
  font-size: 14px;
  margin-right: 0px;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 10px 4px 10px rgba(0, 0, 0, 0.1);
  transition: none;
}

@media (min-width: 768px) {
  .service {
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .service {
    margin-right: 0px;
  }
}


.service:hover {
  border: #585151b3 solid 1px;
}

.service img {
  display: block;
  margin: 15px auto;
  border-radius: 10px;
  width: 90%;
  /* Tamaño más grande */
  height: auto;
}

.service video {
  display: block;
  margin: 15px auto;
  border-radius: 10px;
  width: 90%;
  /* Tamaño más grande */
  height: auto;
}
.service video:hover {
  transform: scale(1.5);
  cursor: pointer;
}

.service img:hover {
  transform: scale(1.01);
  cursor: pointer;
}

.service strong {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
}
