.logo-container {
  display: flex;
  justify-content: center;
  border-top: solid goldenrod;
  border-bottom: solid goldenrod;
  margin-bottom: 1.5rem;
}
.logo-container .logo {
  height: 7rem;
  width: auto;
}

@media only screen and (max-width: 991px) {
  .ocultarheader {
    display: none;
  }
}
.ocultarheader .header .hamburguesa {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: solid 1PX goldenrod;
}
.ocultarheader .header .hamburguesa .menu {
  height: 30px;
  width: auto;
}
.ocultarheader body {
  font-family: sans-serif;
}
.ocultarheader ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}
.ocultarheader ul .animacion-nav {
  list-style: none;
}
.ocultarheader ul .animacion-nav a {
  position: relative;
  display: block;
  margin: 20px 0;
  padding: 10px 20px;
  text-decoration: none;
  color: goldenrod;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.5s;
  z-index: 1;
}
.ocultarheader ul .animacion-nav a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 2px solid goldenrod;
  border-bottom: 2px solid goldenrod;
  transform: scaleY(2);
  opacity: 0;
  transition: 0.3s;
}
.ocultarheader ul .animacion-nav a:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: goldenrod;
  transform: scale(0);
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}
.ocultarheader ul .animacion-nav a:hover {
  color: black;
}
.ocultarheader ul .animacion-nav a:hover:before {
  transform: scaleY(1);
  opacity: 1;
}
.ocultarheader ul .animacion-nav a:hover:after {
  transform: scaleY(1);
  opacity: 1;
}

.body {
  background-color: rgb(25, 26, 25);
  margin: 0%;
  padding: 0%;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: goldenrod;
  border-radius: 10px;
  border: solid 3px rgb(25, 26, 25);
}

.whatsapp {
  display: flex;
  height: 5.5rem;
  width: auto;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 1rem;
  transition: 0.3s;
}
.whatsapp:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
@media only screen and (max-width: 480px) {
  .whatsapp {
    display: none;
  }
}

.subir-foto {
  border: solid 1px goldenrod;
  border-radius: 100%;
  background-color: goldenrod;
  height: 2.5rem;
  width: auto;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  position: fixed;
  bottom: 5rem;
  right: 0;
  opacity: 50%;
  transition: 0.3s;
}
.subir-foto:hover {
  opacity: 100%;
  transition: 0.3s;
}
@media only screen and (max-width: 480px) {
  .subir-foto {
    display: none;
  }
}

.boton-cards, .boton-container .boton {
  border: solid goldenrod;
  color: goldenrod;
  border-radius: 30px;
  padding-right: 3.5rem;
  padding-left: 3.5rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  text-decoration: none;
}
@media only screen and (max-width: 479px) {
  .boton-cards, .boton-container .boton {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.boton-cards:hover, .boton-container .boton:hover {
  background-color: goldenrod;
  color: rgb(25, 26, 25);
}

.h1-index {
  margin-top: 3rem;
  color: goldenrod;
  display: flex;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
}

.carrouselxd {
  display: flex;
  justify-content: center;
}
.carrouselxd .carousel-container {
  width: 1280px;
  height: 600px;
}
@media only screen and (max-width: 1328px) {
  .carrouselxd .carousel-container {
    width: 1200px;
    height: auto;
  }
}
@media only screen and (max-width: 1327px) {
  .carrouselxd .carousel-container {
    width: 640px;
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .carrouselxd .carousel-container {
    width: 320px;
    height: 150px;
  }
}
@media only screen and (max-width: 320px) {
  .carrouselxd .carousel-container {
    width: 320px;
    height: 150px;
  }
}

.boton-container {
  display: flex;
  justify-content: center;
  background-color: rgb(25, 26, 25);
  color: goldenrod;
  margin-top: 1rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .boton-container {
    margin-top: 3rem;
  }
}
.boton-container .boton {
  transition: 0.3s;
}
.boton-container .boton:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

@media only screen and (max-width: 1328px) {
  .tamano-carrousel {
    width: 1200px;
    height: auto;
  }
}
@media only screen and (max-width: 1326px) {
  .tamano-carrousel {
    width: 640px;
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .tamano-carrousel {
    width: 320px;
    height: 150px;
  }
}
@media only screen and (max-width: 320px) {
  .tamano-carrousel {
    width: 320px;
    height: 150px;
  }
}

.footer {
  margin-top: 3.5rem;
  border-top: solid goldenrod;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}
@media only screen and (max-width: 479px) {
  .footer {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin-bottom: 1rem;
  }
}
.footer .tipo-footer {
  color: goldenrod;
  text-decoration: none;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-left: 3rem;
  margin-right: 3rem;
  border-radius: 10px;
  transition: 0.3s;
}
.footer .tipo-footer:hover {
  background-color: goldenrod;
  color: rgb(25, 26, 25);
  transition: 0.7s;
}

.subfooter .subfooter-container .redes-container {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .subfooter .subfooter-container .redes-container {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.subfooter .subfooter-container .redes-container .redesw {
  display: flex;
  height: 3rem;
  width: auto;
  margin-left: 0.3rem;
  border-radius: 100%;
  background-color: goldenrod;
  border: solid 1px goldenrod;
  transition: 0.3s;
}
.subfooter .subfooter-container .redes-container .redesw:hover {
  background-color: goldenrod;
  background-color: #25D366;
  border-radius: 100%;
  border: solid 3px #25D366;
  transition: 0.3;
}
.subfooter .subfooter-container .redes-container .redesl {
  display: flex;
  height: 3rem;
  width: auto;
  margin-left: 0.3rem;
  border-radius: 100%;
  background-color: goldenrod;
  border: solid 1px goldenrod;
  transition: 0.3s;
}
.subfooter .subfooter-container .redes-container .redesl:hover {
  background-color: goldenrod;
  background-color: #0e76a8;
  border: solid 3px #0e76a8;
  border-radius: 100%;
  transition: 0.3s;
}
.subfooter .subfooter-container .redes-container .redesi {
  display: flex;
  height: 3rem;
  width: auto;
  margin-left: 0.3rem;
  border-radius: 100%;
  background-color: goldenrod;
  border: solid 1px goldenrod;
  transition: 0.3s;
}
.subfooter .subfooter-container .redes-container .redesi:hover {
  background-color: goldenrod;
  background-color: #DD2A7B;
  border: solid 3px #DD2A7B;
  border-radius: 100%;
  transition: 0.3s;
}
.subfooter .subfooter-container .redes-container .redesf {
  display: flex;
  height: 3rem;
  width: auto;
  margin-left: 0.3rem;
  border-radius: 100%;
  background-color: goldenrod;
  border: solid 1px goldenrod;
  transition: 0.3s;
}
.subfooter .subfooter-container .redes-container .redesf:hover {
  background-color: goldenrod;
  background-color: #3b5998;
  border: solid 3px #3b5998;
  border-radius: 100%;
  transition: 0.3s;
}
.subfooter .subfooter-container .copyright {
  color: rgb(59, 61, 59);
  display: flex;
  justify-content: center;
  text-decoration: underline;
}

.boton-cards, .boton-container .boton {
  border: solid goldenrod;
  color: goldenrod;
  border-radius: 30px;
  padding-right: 3.5rem;
  padding-left: 3.5rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  text-decoration: none;
}
@media only screen and (max-width: 479px) {
  .boton-cards, .boton-container .boton {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.boton-cards:hover, .boton-container .boton:hover {
  background-color: goldenrod;
  color: rgb(25, 26, 25);
}

.boton-cards, .boton-container .boton {
  border: solid goldenrod;
  color: goldenrod;
  border-radius: 30px;
  padding-right: 3.5rem;
  padding-left: 3.5rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  text-decoration: none;
}
@media only screen and (max-width: 479px) {
  .boton-cards, .boton-container .boton {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.boton-cards:hover, .boton-container .boton:hover {
  background-color: goldenrod;
  color: rgb(25, 26, 25);
}

main .estilo-h1 {
  margin-top: 3rem;
  color: goldenrod;
  font-size: 2rem;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: center;
}
@media only screen and (max-width: 1300px) {
  .cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1000px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.cards .cards-style {
  background-color: rgb(59, 61, 59);
  border: solid 10px rgb(59, 61, 59);
  border-radius: 15px;
  margin: 1rem;
}
.cards .cards-style .titulo-card {
  color: rgb(25, 26, 25);
  display: flex;
  justify-content: center;
  background-color: goldenrod;
  border-radius: 10px;
  padding: 5px;
}
.cards .cards-style .tipo-card {
  margin-top: 2rem;
  color: rgb(247, 203, 152);
}

.boton-cards {
  transition: 0.3s;
  display: flex;
  justify-content: center;
}
.boton-cards:hover {
  display: flex;
  transform: scale(1.1);
  transition: 0.3s;
}

.card-img-top {
  border: solid 3px goldenrod;
  border-radius: 10px;
  background-color: goldenrod;
}

.boton-container .boton, .boton-cards {
  border: solid goldenrod;
  color: goldenrod;
  border-radius: 30px;
  padding-right: 3.5rem;
  padding-left: 3.5rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  text-decoration: none;
}
@media only screen and (max-width: 479px) {
  .boton-container .boton, .boton-cards {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.boton-container .boton:hover, .boton-cards:hover {
  background-color: goldenrod;
  color: rgb(25, 26, 25);
}

.main-redes .h1-redes {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  text-align: center;
  color: goldenrod;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.main-redes .redes-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.main-redes .redes-container .imagenes-nuestras-redes {
  height: 4rem;
  width: auto;
  background-color: goldenrod;
  border-radius: 100px;
  border: solid 3px goldenrod;
}
.main-redes .info-redes {
  display: flex;
  justify-content: center;
  text-align: center;
  color: rgb(247, 203, 152);
}
.main-redes .boton-redes {
  margin-top: 1rem;
  margin-bottom: 6rem;
}

.main-nosotros .h1-nosotros {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  text-align: center;
  color: goldenrod;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.main-nosotros .titulo-nosotros {
  color: goldenrod;
  font-size: 1.5rem;
  margin-left: 2rem;
}
@media only screen and (max-width: 768px) {
  .main-nosotros .titulo-nosotros {
    display: flex;
    justify-content: center;
  }
}
.main-nosotros .texto-nosotros {
  color: rgb(247, 203, 152);
  font-size: 1rem;
  margin-left: 1rem;
  margin-bottom: 4rem;
  margin-top: 2rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .main-nosotros .texto-nosotros {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}

.h1-ubicacion {
  margin-top: 3rem;
  color: goldenrod;
  display: flex;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
}

.main-ubicacion {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
}
@media only screen and (max-width: 1800px) {
  .main-ubicacion {
    display: flex;
    display: inline-block;
    width: 100%;
  }
}
.main-ubicacion .mapa-container {
  margin-left: 7rem;
  border-right: solid 3px goldenrod;
  padding-right: 4rem;
}
@media only screen and (max-width: 1800px) {
  .main-ubicacion .mapa-container {
    margin: 0%;
    padding: 0%;
    border-right: none;
    border-bottom: solid 3px goldenrod;
    width: auto;
    display: flex;
    justify-content: center;
    padding-bottom: 3rem;
  }
}
.main-ubicacion .mapa-container .mapa {
  height: 500px;
  width: 800px;
}
@media only screen and (max-width: 1800px) {
  .main-ubicacion .mapa-container .mapa {
    width: 100%;
    margin: 0%;
    padding: 0%;
  }
}
.main-ubicacion .text-container {
  display: flex;
  color: goldenrod;
  font-size: 1.2rem;
  height: 400px;
  width: 700px;
  margin-left: 5rem;
  text-align: center;
}
@media only screen and (max-width: 1800px) {
  .main-ubicacion .text-container {
    width: auto;
    margin: 0%;
    padding: 0%;
    display: flex;
    justify-content: center;
  }
}
.main-ubicacion .text-container .text {
  margin-top: 8rem;
  color: rgb(247, 203, 152);
}
@media only screen and (max-width: 450px) {
  .main-ubicacion .text-container .text {
    margin-top: 4rem;
  }
}

.error-container {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.error-container .fondo {
  z-index: 1;
  position: absolute;
  overflow: hidden;
}
.error-container .textos {
  z-index: 1;
  background-color: rgba(218, 165, 32, 0.466);
  width: 700px;
  height: 350px;
  margin-top: 400px;
  margin-right: 1000px;
  align-items: center;
  box-shadow: 1px 9px 39px 6px rgba(0, 0, 0, 0.64);
  -webkit-box-shadow: 1px 9px 39px 6px rgba(0, 0, 0, 0.64);
  -moz-box-shadow: 1px 9px 39px 6px rgba(0, 0, 0, 0.64);
  border-radius: 30px;
}
.error-container .textos .texto1 {
  margin-left: 10px;
  font-size: 7rem;
  color: goldenrod;
}
.error-container .textos .texto2 {
  font-size: 2rem;
  color: white;
  text-align: center;
}
.error-container .textos .texto3 {
  font-size: 1.5rem;
  color: white;
  text-align: center;
}
.error-container .textos .estilo-inicio {
  color: goldenrod;
  transition: 0.2s;
}
.error-container .textos .estilo-inicio:hover {
  color: rgb(25, 26, 25);
  text-align: center;
}
.error-container .boton-error {
  z-index: 1;
  display: flex;
  height: 5.5rem;
  width: auto;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 1rem;
  margin-right: 40rem;
  margin-bottom: 4rem;
  align-items: center;
}
.error-container .boton-error .boton2 {
  border: solid goldenrod;
  color: goldenrod;
  border-radius: 30px;
  padding-right: 3.5rem;
  padding-left: 3.5rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  text-decoration: none;
  transition: 0.2s;
}
.error-container .boton-error .boton2:hover {
  background-color: goldenrod;
  color: rgb(25, 26, 25);
}

.logo-container {
  display: flex;
  justify-content: center;
  border-top: solid goldenrod;
  border-bottom: solid goldenrod;
}
.logo-container .logo {
  height: 7rem;
  width: auto;
}

.ocultarheader2 {
  display: none;
}
@media only screen and (max-width: 991px) {
  .ocultarheader2 {
    display: contents;
  }
}
.ocultarheader2 .header2 .hamburguesa {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: solid 1PX goldenrod;
}
.ocultarheader2 .header2 .hamburguesa .menu {
  height: 30px;
  width: auto;
}
.ocultarheader2 .header2 .nav-link-container .tipo-header {
  color: goldenrod;
  border-radius: 20px;
  transition: 0.3s;
  padding: 0.5rem;
}
.ocultarheader2 .header2 .nav-link-container .tipo-header:hover {
  color: rgb(25, 26, 25);
  background-color: goldenrod;
  border-radius: 10px;
  transition: 0.3;
  transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
  .ocultarheader2 .header2 .nav-link-container .tipo-header:hover {
    transform: none;
  }
}
@media screen and (max-width: 1000px) {
  .ocultarheader2 .header2 .nav-link-container .tipo-header {
    display: flex;
    justify-content: center;
    border-bottom: solid 1px goldenrod;
    border-radius: 0%;
  }
}
@media screen and (max-width: 1000px) {
  .ocultarheader2 .header2 .nav-link-container {
    border-radius: 10px;
    border: solid 1px goldenrod;
  }
}

.productos-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  place-items: center;
}
.productos-container:hover {
  margin-bottom: 2rem;
}
.productos-container .href-productos {
  text-decoration: none;
}
.productos-container .animacion {
  margin-top: 3rem;
  transition: 0.7s;
}
.productos-container .animacion:hover {
  transform: translateY(-30px);
  transition: 0.5s;
  box-shadow: 1px 16px 37px -2px rgba(0, 0, 0, 0.78);
  -webkit-box-shadow: 1px 16px 37px -2px rgba(0, 0, 0, 0.78);
  -moz-box-shadow: 1px 16px 37px -2px rgba(0, 0, 0, 0.78);
}
@media only screen and (max-width: 1500px) {
  .productos-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1300px) {
  .productos-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1000px) {
  .productos-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .productos-container {
    grid-template-columns: 1fr;
  }
}
.productos-container .tipo-productos {
  color: goldenrod;
  display: flex;
  justify-content: center;
}
.productos-container .base-productos {
  background-color: rgb(59, 61, 59);
}

.contenedor-principal {
  display: flex;
  margin-top: 3rem;
}
@media only screen and (max-width: 1000px) {
  .contenedor-principal {
    display: inline-block;
  }
}
.contenedor-principal .imagen {
  width: 500px;
  height: 500px;
}
@media only screen and (max-width: 1000px) {
  .contenedor-principal .imagen {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 550px) {
  .contenedor-principal .imagen {
    width: 300px;
    height: 300px;
  }
}
@media only screen and (max-width: 350px) {
  .contenedor-principal .imagen {
    width: 230px;
    height: 230px;
  }
}
.contenedor-principal .estilo-titulo {
  color: goldenrod;
  margin-left: 3rem;
  font-size: 2rem;
}
@media only screen and (max-width: 1000px) {
  .contenedor-principal .estilo-titulo {
    display: none;
  }
}
.contenedor-principal .estilo-titulo-mobile {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .contenedor-principal .estilo-titulo-mobile {
    display: contents;
    color: goldenrod;
    font-size: 1.5rem;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 600px) {
  .contenedor-principal .estilo-titulo-mobile {
    font-size: 1rem;
  }
}
.contenedor-principal .estilo-caracteristicas {
  color: goldenrod;
  margin-top: 2rem;
  margin-left: 5rem;
  font-size: 1.5rem;
}
@media only screen and (max-width: 1000px) {
  .contenedor-principal .estilo-caracteristicas {
    margin-left: 0rem;
  }
}
.contenedor-principal .caracteristicas {
  color: rgb(247, 203, 152);
  margin-left: 6rem;
}
@media only screen and (max-width: 1000px) {
  .contenedor-principal .caracteristicas {
    margin-left: 0rem;
  }
}

.boton-container {
  margin-top: 2rem;
  width: auto;
}

.boton-productos {
  transition: 0.3s;
  color: goldenrod;
  background-color: rgb(25, 26, 25);
  padding: 0.5rem;
  border: solid 1px goldenrod;
  border-radius: 3px;
  font-size: 2rem;
}
.boton-productos:hover {
  transition: 0.3s;
  color: rgb(25, 26, 25);
  background-color: #25d366;
  border-radius: 10px;
  border: solid 1px #25d366;
}

.estilo-descripcion {
  color: goldenrod;
  margin-top: 3rem;
}

.estilo-productos {
  color: rgb(247, 203, 152);
}

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