.bento-box {
  background-color: var(--bs-gray-dark);
  /*border: 1px solid #dee2e6;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
  margin-bottom: 10px;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.bento-box:hover {
  transform: scale(1.1);
}

/* Desactivar efecto en móviles */
@media (max-width: 768px) {
  .bento-box:hover {
    transform: none;
  }
}

