/*RESET*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*ANIMACION DE IMG DEL HERO DE GATOS:HTML/PERROS.HTML*/
.imgHeroSubcategoria {
  animation: aparecer-por-arriba 1s;
}

@keyframes aparecer-por-arriba {
  0% {
    transform: translateY(-30%);
    opacity: 0;
  }
  100% {
    transform: translate(0%);
    opacity: 1;
  }
}
/*NAVBAR*/
.styleNavbar {
  text-transform: uppercase;
  font-family: "Acme", sans-serif;
  font-size: 1rem;
}

/*MIXINS*/
/*SECTION*/
section {
  text-transform: uppercase;
  text-align: center;
}
section h1 {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 4rem;
}
section h2,
section h3 {
  font-family: "Exo", sans-serif;
  font-size: 3rem;
}
section h3 {
  font-size: 2rem;
}

/*SECTION:PREG FRECUENTES*/
.containerWidthText {
  width: 32rem;
}

.widthImg {
  width: 45%;
}

#preguntasFrecuentes h4 {
  color: black;
  font-family: "Anton", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}
#preguntasFrecuentes p {
  color: black;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  text-transform: initial;
}

/*SECTION:CONTACTO*/
.sobreNosotrosStyle p {
  font-family: "Kanit", sans-serif;
  text-align: justify;
  font-weight: bold;
  line-height: 1.8;
  font-size: 1rem;
  text-transform: initial;
}

.contactoStyle form {
  width: 80%;
  margin: auto;
  font-family: "Ruda", sans-serif;
  text-align: justify;
}
.contactoStyle form .btn, .contactoStyle form .btn--restablecer, .contactoStyle form .btn--aceptar {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border: solid 1px black;
  box-shadow: 5px 5px 5px black;
}
.contactoStyle form .btn:hover, .contactoStyle form .btn--restablecer:hover, .contactoStyle form .btn--aceptar:hover {
  box-shadow: 5px 5px 5px #999;
  border: solid 1px #999;
}
.contactoStyle form .btn--aceptar {
  background-color: rgb(105, 232, 105);
}
.contactoStyle form .btn--aceptar:hover {
  background-color: rgb(54, 235, 54);
}
.contactoStyle form .btn--restablecer {
  background-color: rgb(249, 103, 103);
}
.contactoStyle form .btn--restablecer:hover {
  background-color: rgb(254, 76, 76);
}

/*CARD CATEGORIA/SUBCATEGORIA*/
.containerCategoriaStyle {
  width: 15rem;
  padding: 10px 0 5px 0;
  border: solid 1px black;
  border-radius: 30%;
  margin: 20px 10px 10px 10px;
  box-shadow: 5px 5px 5px black;
}
.containerCategoriaStyle:hover {
  border: solid 1px #999;
  box-shadow: 5px 5px 5px #999;
}
.containerCategoriaStyle a,
.containerCategoriaStyle img {
  width: 80%;
}

.estiloEnlace {
  font-family: "Oswald", sans-serif;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: all 0.8s;
}
.estiloEnlace:hover {
  letter-spacing: 3px;
  color: black;
  transition: all 0.8s;
}

/*CARD PRODUCTOS*/
.card {
  width: 18rem;
  transition: transform 500ms ease;
}
.card:hover {
  transform: scale(1.05);
  transition: transform 500ms ease;
}
.card .card-body {
  font-family: "Acme", sans-serif;
}
.card .card-body h5 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.card .card-body .card-title {
  font-family: "Acme", sans-serif;
}
.card .card-body .card-text {
  text-transform: initial;
}
.card .card-body .btn, .card .card-body .contactoStyle form .btn--aceptar, .contactoStyle form .card .card-body .btn--aceptar, .card .card-body .contactoStyle form .btn--restablecer, .contactoStyle form .card .card-body .btn--restablecer {
  border: 1px solid black;
  color: black;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.8s;
}
.card .card-body .btn::before, .card .card-body .contactoStyle form .btn--aceptar::before, .contactoStyle form .card .card-body .btn--aceptar::before, .card .card-body .contactoStyle form .btn--restablecer::before, .contactoStyle form .card .card-body .btn--restablecer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(39, 204, 88);
  transform: translatex(-110%);
  transition: all 0.8s;
  z-index: -1;
}
.card .card-body .btn:hover, .card .card-body .contactoStyle form .btn--aceptar:hover, .contactoStyle form .card .card-body .btn--aceptar:hover, .card .card-body .contactoStyle form .btn--restablecer:hover, .contactoStyle form .card .card-body .btn--restablecer:hover {
  letter-spacing: 1.25px;
  color: white;
  transition: all 0.8s;
}
.card .card-body .btn:hover::before, .card .card-body .contactoStyle form .btn--aceptar:hover::before, .contactoStyle form .card .card-body .btn--aceptar:hover::before, .card .card-body .contactoStyle form .btn--restablecer:hover::before, .contactoStyle form .card .card-body .btn--restablecer:hover::before {
  transform: translatex(0%);
}

/*ASIDE*/
section aside h4 {
  font-family: "Exo", sans-serif;
  font-size: 1.5rem;
}
section aside .widthImgAside {
  width: 45%;
}
section aside img {
  transition: transform 500ms ease;
}
section aside img:hover {
  transform: scale(1.05);
  transition: transform 500ms ease;
}
section aside .estiloEnlaceAside {
  font-family: "Oswald", sans-serif;
  text-decoration: none;
  color: black;
  font-weight: bold;
}
section aside .estiloEnlaceAside:hover {
  color: #999;
}

/*FOOTER*/
footer {
  text-transform: uppercase;
  font-family: "Exo", sans-serif;
  font-size: 1rem;
}
footer .styleIcono {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: black;
}
footer #wtsp:hover {
  color: #01d833;
}
footer #face:hover {
  color: #114ed1;
}
footer #ig:hover {
  color: #c923c1;
}

/*CARRITO*/
.containerCarrito {
  position: fixed;
  width: 64px;
  height: 64px;
  bottom: 20px;
  right: 20px;
  padding: 5px;
  text-align: center;
  border: 1px solid black;
  background-color: white;
  padding: 10px;
  border-radius: 50px;
  z-index: 100;
}
.containerCarrito img {
  width: 100%;
}

/*MEDIA QUERIES*/
/*INDEX -> ASIDE*/
@media (min-width: 1200px) {
  #iconoAsideG1 {
    width: 100%;
  }

  #iconoAsideG2 {
    width: 100%;
  }

  #iconoAsideG3 {
    width: 100%;
  }

  #iconoAsideP1 {
    width: 100%;
  }

  #iconoAsideP2 {
    width: 100%;
  }

  #iconoAsideP3 {
    width: 100%;
  }
}

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