.contieneModal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.ventanaModal img{
    max-width: 90vw;
    max-height: 90vh;
    display: block;
}
.contieneModal h6{
  position: absolute;
  top:40px;
  right: 40px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: 0.8s;
}
.contieneModal h6:hover {
  color: red;
}


#modalGaleriaProducto {
    display: none;
    width: 100%;
    position: absolute;
    z-index: 10;
    background-color: rgb(227, 227, 230);
}
#modalGaleriaProducto img{
    width: 100%;
}

#galeriaHome {
    background-image: url(../images/fondoGaleria.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    background-color: #fef6f2;
    padding-bottom: 120px;
}


.contieneGaleria {
    width: 80%;
    margin: auto;
    padding-top: 120px;
}
.contieneGaleria #tituloGaleria {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 5px;
}
.contieneGaleria  #descripcionGaleria {
    text-align: center;
    line-height: 1.4rem;
}
.contieneGaleria .galeria {
    width: 100%;
    margin: auto;
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.contieneGaleria .galeria .itemGaleria {
    width: 100%;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}
.contieneGaleria .galeria .itemGaleria img {
    width: 100%;
}
.contieneGaleria .galeria .itemGaleria:hover {
    transform: scale(1.05);
    cursor: pointer;
}
#btnCargarMas {
  width: fit-content;
  display: block;
  margin: auto;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 25px;
  border-radius: 4px;
  border: 0;
  background-color: #0075ff;
  color: white;
  cursor: pointer;
  transition: 0.5s ease-out;
}
#btnCargarMas:hover {
    background-color: #044a99;
}

