@charset "UTF-8";
/*Tipografia Montserrat*/
@font-face {
  font-family: "montserrat";
  src: url(../fonts/montserrat/Montserrat-VariableFont_wght.ttf);
}
/*Tipografia Roboto*/
@font-face {
  font-family: "roboto";
  src: url(../fonts/Roboto/Roboto-Black.ttf);
  src: url(../fonts/Roboto/Roboto-Medium.ttf);
}
/*-------------------------- RESETEO DE HTML */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  position: relative;
  display: flex;
  justify-content: space-around;
  list-style: none;
}

li {
  display: flex;
  align-items: center;
}

a {
  text-decoration: none;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* //////////////////////////// FIN RESET /////////////// */
/*------------------- ESTILOS PARA BODY */
#bodyIndex, #bodyColecciones, #bodyNosotros, #bodyContacto, #bodyCarrito, #bodyIlustraciones, #bodyAbstractos, #bodyArtistas, #bodyBotanica, #bodyProximamente {
  background-color: rgb(247, 247, 247);
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: bold;
  max-width: 100%;
}

/* Estilos de Header */
#header {
  width: 100%;
  position: fixed;
  background-color: rgb(0, 0, 0);
  font-family: "montserrat", sans-serif;
  font-weight: 700;
  z-index: 3;
  height: auto;
}

/* ---------------------estilos en footer */
#footer {
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 130px;
}
#footer .footerNewsletter {
  display: flex;
  justify-content: start;
  flex-direction: column;
  color: aliceblue;
  gap: 5px;
  font-size: 15px;
}
#footer .footerNewsletter input {
  border-radius: 10px 0px 0 10px;
  padding: 2px 2px 2px 10px;
  background-color: #d8d8d8;
  height: 30px;
  border: #d8d8d8;
}
#footer .footerNewsletter button {
  border-radius: 0px 10px 10px 0px;
  padding: 2px 10px 2px 10px;
  background-color: #085C5A;
  color: aliceblue;
  border: #085C5A;
  height: 30px;
  transition: 0.1 0.5s ease;
}
#footer .footerNewsletter button:hover {
  transform: scale(1.02);
}
#footer .footerLogo {
  background-color: rgb(0, 0, 0);
  height: 100%;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
#footer .footerLogo .footerCopy {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: aliceblue;
}
#footer .footerRedes {
  background-color: rgb(0, 0, 0);
  height: 100%;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: rgb(0, 0, 0);
}
#footer .footerRedes .footerRedesSociales {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#footer .footerRedes .footerPagos {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 765px) {
  #footer {
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
  }
  .footerNewsletter input {
    border-radius: 10px 0px 0 10px;
    padding: 2px 2px 2px 10px;
    background-color: #d8d8d8;
    height: 30px;
    border: #d8d8d8;
  }
  .footerNewsletter button {
    border-radius: 0px 10px 10px 0px;
    padding: 2px 10px 2px 10px;
    background-color: #085C5A;
    color: aliceblue;
    border: #085C5A;
    height: 30px;
  }
  .footerLogo {
    background-color: rgb(0, 0, 0);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 10px;
    z-index: 1;
  }
  .footerRedes {
    background-color: rgb(0, 0, 0);
    height: 100%;
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: rgb(0, 0, 0);
  }
}
/* ESTILOS PARA SUBMENU------ GENERALES */
#mainCardsColecciones {
  display: flex;
  flex-direction: column;
  background-color: rgb(247, 247, 247);
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px;
  min-height: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  row-gap: 50px;
  animation: fadeInUp 1.5s ease-in-out;
}
#mainCardsColecciones .mainCardsColecciones1, #mainCardsColecciones .mainCardsColecciones2, #mainCardsColecciones .mainCardsColecciones3 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
}
#mainCardsColecciones .mainCardsColecciones1 article, #mainCardsColecciones .mainCardsColecciones2 article, #mainCardsColecciones .mainCardsColecciones3 article {
  background-color: #05302f;
  color: white;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: calc(25% - 20px);
  min-width: 200px;
  max-width: 300px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  position: relative;
  transition: box-shadow 0.5s ease, border-radius 0.5s ease, transform 0.5s ease;
}
#mainCardsColecciones .mainCardsColecciones1 article:hover, #mainCardsColecciones .mainCardsColecciones2 article:hover, #mainCardsColecciones .mainCardsColecciones3 article:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 5px 5px 0px 0px;
  transform: scale(1.02);
}
#mainCardsColecciones .mainCardsColecciones1 .mainColeccionesTextos, #mainCardsColecciones .mainCardsColecciones2 .mainColeccionesTextos, #mainCardsColecciones .mainCardsColecciones3 .mainColeccionesTextos {
  padding-left: 10px;
}
#mainCardsColecciones .mainCardsColecciones1 .mainColeccionesTextos:hover, #mainCardsColecciones .mainCardsColecciones2 .mainColeccionesTextos:hover, #mainCardsColecciones .mainCardsColecciones3 .mainColeccionesTextos:hover {
  padding-left: 10px;
  color: #f1f1f1;
  cursor: pointer;
}
#mainCardsColecciones .mainCardsColecciones1 .card-image, #mainCardsColecciones .mainCardsColecciones2 .card-image, #mainCardsColecciones .mainCardsColecciones3 .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px 10px 0 0;
}
#mainCardsColecciones .mainCardsColecciones1 .btn-comprar, #mainCardsColecciones .mainCardsColecciones2 .btn-comprar, #mainCardsColecciones .mainCardsColecciones3 .btn-comprar {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(8, 92, 90, 0.9);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 2;
}
#mainCardsColecciones .mainCardsColecciones1 .btn-comprar:hover, #mainCardsColecciones .mainCardsColecciones2 .btn-comprar:hover, #mainCardsColecciones .mainCardsColecciones3 .btn-comprar:hover {
  background-color: rgb(8, 92, 90);
}

/* FIN DE ESTILOS CARD COLECCIONES GENERALES */
/* -----------------------------ESTILOS PARA CARRITO */
#mainCarrito {
  background-color: rgb(247, 247, 247);
  max-width: 1700px;
  margin: 0 auto;
  padding-top: 100px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  display: flex;
  text-align: center;
  flex-direction: column;
}
#mainCarrito .mainCarritoVacio {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex-wrap: wrap;
  height: 400px;
}
#mainCarrito .mainCarritoVacio h2 {
  color: #085C5A;
  font-size: 30px;
  animation: fadeInUp 1.5s ease-in-out;
}
#mainCarrito .mainCarritoVacio button {
  font-size: 15px;
  height: 50px;
  width: 200px;
  background-color: #085C5A;
  color: aliceblue;
  border-radius: 10px;
}
#mainCarrito .mainCarritoVacio button:hover {
  background-color: #05302f;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
#mainCarrito .mainCarritoRecomendacion {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
#mainCarrito .mainRecomendaciones {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
#mainCarrito .mainRecomendaciones img {
  border-radius: 20px;
  transition: box-shadow 0.5s ease, border-radius 0.5s ease, transform 0.5s ease;
}
#mainCarrito .mainRecomendaciones img:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transform: scale(1.02);
}
#mainCarrito .mainRecomendaciones p:hover {
  color: #05302f;
  cursor: pointer;
  font-weight: 600;
}
#mainCarrito .mainCarritoProductos .lista-productos .producto-carrito {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#mainCarrito .mainCarritoProductos .lista-productos .producto-carrito img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
#mainCarrito .mainCarritoProductos .lista-productos .producto-carrito h5 {
  color: #05302f;
  font-weight: bold;
  margin-bottom: 5px;
}
#mainCarrito .mainCarritoProductos .lista-productos .producto-carrito .cantidad-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
#mainCarrito .mainCarritoProductos .lista-productos .producto-carrito .cantidad-controls button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
#mainCarrito .mainCarritoProductos .lista-productos .producto-carrito .cantidad-controls span {
  margin: 0 10px;
  font-weight: bold;
  min-width: 20px;
  text-align: center;
}
#mainCarrito .mainCarritoProductos .resumen-carrito {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 120px;
}
#mainCarrito .mainCarritoProductos .resumen-carrito h3 {
  color: #05302f;
  margin-bottom: 20px;
  font-weight: bold;
}
#mainCarrito .mainCarritoProductos .resumen-carrito .resumen-detalle {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
#mainCarrito .mainCarritoProductos .resumen-carrito .resumen-detalle .subtotal, #mainCarrito .mainCarritoProductos .resumen-carrito .resumen-detalle .total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
#mainCarrito .mainCarritoProductos .resumen-carrito .resumen-detalle .subtotal span:last-child, #mainCarrito .mainCarritoProductos .resumen-carrito .resumen-detalle .total span:last-child {
  font-weight: bold;
}
#mainCarrito .mainCarritoProductos .resumen-carrito .resumen-detalle .total {
  font-size: 1.2em;
  color: #05302f;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 10px;
}
#mainCarrito .mainCarritoProductos .resumen-carrito .btn-primary {
  background-color: #085C5A;
  border-color: #085C5A;
}
#mainCarrito .mainCarritoProductos .resumen-carrito .btn-primary:hover {
  background-color: #05302f;
  border-color: #05302f;
}

/* ----------------------------- FIN DE ESTILOS PARA CARRITO */
#mainProximamente .hero-image {
  background-image: url(../../images/patronHero.svg);
  height: 1000px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#mainProximamente .hero-image .hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  font-family: "Montserrat", sans-serif;
}
#mainProximamente .hero-image .hero-text h1 {
  color: #085C5A;
  animation: fadeInUp 1s ease-in-out;
}
#mainProximamente .hero-image .hero-text p {
  animation: fadeInUp 1.5s ease-in-out;
}

@media screen and (max-width: 768px) {
  .hero-image {
    background-image: url(../../images/patronHero.svg);
    height: 1000px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-image .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
  }
  .hero-image .hero-text h1 {
    color: #085C5A;
    animation: fadeInUp 1s ease-in-out;
  }
  .hero-image .hero-text p {
    animation: fadeInUp 1.5s ease-in-out;
  }
}
/* ESTILOS PARA PÁGINA INDEX - CARDS DE PRODUCTOS */
.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px 10px 0 0;
}

.btn-comprar {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(8, 92, 90, 0.9);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 2;
}
.btn-comprar:hover {
  background-color: rgb(8, 92, 90);
}

/*# sourceMappingURL=style.css.map */
