section#solutons {
  height: -moz-fit-content;
  height: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
@media (max-width: 780px) {
  section#solutons {
    padding: 0 0 1rem 0;
  }
}
section#solutons .contenedor .listCategorias {
  width: 100%;
}
@media (max-width: 780px) {
  section#solutons .contenedor .listCategorias {
    gap: 0.5rem;
  }
}
section#solutons .contenedor .listCategorias a {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  width: calc(25% - 1.5rem);
  min-width: 18rem;
}
@media (max-width: 780px) {
  section#solutons .contenedor .listCategorias a {
    width: calc(50% - 0.5rem);
    min-width: auto;
    gap: 0.5rem;
    padding: 0.5rem;
  }
}
section#solutons .contenedor .listCategorias a .imagen {
  margin: 0 auto;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
section#solutons .contenedor .listCategorias a .imagen img {
  height: 80%;
  width: 80%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s ease;
}
section#solutons .contenedor .listCategorias a .contenido {
  transition: all 0.3s ease;
}
section#solutons .contenedor .listCategorias a .contenido h2 {
  font-size: 1.125rem;
  font-weight: bold;
}
section#solutons .contenedor .listCategorias a .contenido span {
  color: #1f9ad7;
  text-decoration: underline;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 780px) {
  section#solutons .contenedor .listCategorias a .contenido span {
    opacity: 1;
    max-height: -moz-max-content;
    max-height: max-content;
  }
}
@media (min-width: 780px) {
  section#solutons .contenedor .listCategorias a:hover .imagen {
    width: 94.5%;
  }
  section#solutons .contenedor .listCategorias a:hover .imagen img {
    transform: scale(1.15);
  }
  section#solutons .contenedor .listCategorias a:hover .contenido span {
    max-height: 1rem;
    opacity: 1;
  }
}/*# sourceMappingURL=index.css.map */