/*  
    ROJO #961C38
    GUINDA #8C2048
    GRIS #404040
    NEGRO #262626
*/

@font-face {
  font-family: 'HighlandGothicFLF Regular';
  font-style: normal;
  font-weight: normal;
  src: local('HighlandGothicFLF Regular'), url('../fonts/HighlandGothicFLF.woff') format('woff');
}

body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background-color: #fff;
  position: relative;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar:vertical {
  display: block;
  width: 5px;
}
  
::-webkit-scrollbar-track:vertical {
  background: transparent;
}

::-webkit-scrollbar-thumb:vertical {
  background: #5c5c5c;
}

/**** ELEMENTOS GENERALES  */

.contenido {
  width: 100%;
  margin-top: 90px;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
}

.contenedor-general {
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 70px;
  /* margin-bottom: 160px; */
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.contenedor-wrap-reverse {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap-reverse;
}

.sombra {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 49;
  display: none;
}

.sombra.active {
  display: block;
}

.sombra-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

/**** NAVEGADOR */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #fff;
  box-shadow: 0px 0px 4px 2px #cecece;
  z-index: 50;
}

.nav-logo {
  width: 80px;
}

.nav-logo img {
  width: 100%;
}

.nav-ops {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.nav-op {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #404040;
  cursor: pointer;
}

.nav-ham {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 28px;
  color: #404040;
  display: none;
  cursor: pointer;
}

.nav-ops-mob {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  transition: 1s all ease;
  -webkit-transition: 1s all ease;
  -moz-transition: 1s all ease;
  -ms-transition: 1s all ease;
  -o-transition: 1s all ease;
}

.nav-ops-mob.alt {
  right: 0;
}

.close-nav-ops-mob {
  font-size: 20px;
  position: absolute;
  top: 30px;
  left: 30px;
  color: #6e6e6e;
  cursor: pointer;
}

.nav-op-mob {
  width: 90%;
  margin: 15px auto;
  text-align: right;
  font-family: 'Nexa-Heavy', sans-serif;
  font-size: 18px;
  color: #6e6e6e;
  font-weight: 600;
  cursor: pointer;
}

.nav-redes-mob {
  width: 90%;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1319px) {
  .nav-ham {
    display: block;
  }

  .nav-ops {
    display: none;
  }
}

/**** HOME */

.portada {
  width: 100%;
  height: 100vh;
  margin-top: 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../img/portada.jpg');
}

@media (max-width: 500px) {
  .portada {
    background-image: url('../img/portada_movil.jpg');
  }
}

.seccion-home {
  width: 90%;
  min-height: 500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.titulo-seccion {
  width: 100%;
  margin: 30px auto;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 40px;
  color: #961C38;
  text-align: center;
  z-index: 3;
}

.textos-seccion {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  z-index: 3;
}

.texto-seccion {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  line-height: 35px;
}

.elementos-home {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.elemento-home {
  width: 250px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  cursor: pointer;
}

.img-elemento-home {
  width: 200px;
  height: 200px;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  box-shadow: 0px 0px 4px 2px #cecece;
}

.nombre-elemento-home {
  width: 100%;
  margin-top: 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #404040;
  font-size: 20px;
}

.img-nosotros-home {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btn-textos-home {
  width: 120px;
  height: 40px;
  line-height: 40px;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #961C38;
  text-align: center;
  font-size: 14px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  z-index: 4;
}

.contenedor-video {
  width: 100%;
  max-width: 500px;
  height: 300px;
  margin: 30px auto;
}

.contenedor-video iframe {
  width: 100%;
  height: 100%;
}

/**** PRODUCTOS */

.productos {
  width: 90%;
  margin: 90px auto;
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.titulo-productos {
  width: 90%;
  margin: 30px auto;
  font-family: 'Montserrat', sans-serif;
  color: #961C38;
  font-size: 26px;
}

.producto {
  width: 90%;
  max-width: 300px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  cursor: pointer;
}

.img-producto {
  width: 100%;
}

.img-producto img {
  width: 100%;
}

.tipo-producto {
  width: 100%;
  margin-top: 5px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #969696;
  font-size: 13px;
}

.nombre-producto {
  width: 100%;
  margin-top: 8px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #262626;
  font-size: 20px;
}

/**** PRODUCTO */

.contenedor-producto {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
}

.contenedor-swiper-producto {
  width: 100%;
  max-width: 600px;
}

.contenedor-info-producto {
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.producto-name {
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  color: #961C38;
  font-weight: bold;
}

.producto-type {
  width: 100%;
  margin-top: 5px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #969696;
  font-size: 15px;
}

.producto-price {
  width: 100%;
  margin-top: 15px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #404040;
  font-size: 19px;
  font-style: italic;
  font-weight: bold;
}

.producto-beneficios {
  width: 90%;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.producto-beneficio {
  width: 200px;
  /* height: 60px; */
  text-align: center;
  padding: 8px;
  background-color: #961C38;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-size: 15px;
  transform-origin: 0 0;
  transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
}

/**** CONTACTO */

.mapa-contacto {
  width: 90%;
  max-width: 500px;
  height: 400px;
  margin: 10px auto;
}

@media (max-width: 900px) {
  .mapa-contacto {
    margin-bottom: 80px;
  }
}

.mapa-contacto iframe {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.contenedor-redes-contacto {
  width: 180px;
  height: auto;
  margin: 20px 0;
  display: flex;
}

.red-contacto {
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
}

.formulario-contacto {
  width: 90%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
  padding-bottom: 70px;
  position: relative;
}

@media (max-width: 500px) {
  .formulario-contacto {
    margin-bottom: 40px;
  }
}

.leyenda-formulario-contacto {
  width: 90%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 6px;
  margin-top: 5px;
  font-size: 16px;
  color: #5b5b5b;
  font-family: 'Montserrat', sans-serif;
}

.campo-formulario-contacto {
  width: 90%;
  height: 40px;
  margin: 0 auto;
  margin-top: 6px;
  margin-bottom: 5px;
  border: none;
  outline: none;
  appearance: none;
  border: 1px solid #961C38;
  background-color: transparent;
  font-family: 'Montserrat', sans-serif;
  color: #5b5b5b;
  font-size: 15px;
  padding-left: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.textarea-formulario-contacto {
  width: 90%;
  height: 164px;
  margin: 0 auto;
  border: none;
  outline: none;
  appearance: none;
  resize: none;
  border: 1px solid #961C38;
  background-color: transparent;
  padding-left: 10px;
  padding-top: 10px;
  font-family: 'Montserrat', sans-serif;
  color: #5b5b5b;
  font-size: 15px;
  padding-left: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.btn-formulario-contacto {
  position: absolute;
  bottom: 10px;
  right: 3%;
  width: 165px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #961C38;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.panel-mensaje-contacto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  background-color: #404040;
  z-index: 2;
  transition: ease-in-out 1s;
  -webkit-transition: ease-in-out 1s;
  -moz-transition: ease-in-out 1s;
  -ms-transition: ease-in-out 1s;
  -o-transition: ease-in-out 1s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.panel-mensaje-contacto.active {
  display: flex;
}

.logo-panel-mensaje-contacto {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}

.texto-panel-mensaje-contacto {
  width: auto;
  height: auto;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/**** FOOTER */

.footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-evenly;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #cecece;
}

.section-footer {
  width: 80%;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.title-footer {
  width: 100%;
  margin: 5px auto;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.element-footer {
  width: 100%;
  margin: 8px auto;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  cursor: pointer;
}

.element-footer a {
  text-decoration: none;
  outline: none;
  color: #000;
}

.element-footer img {
  width: 175px;
}

.logo-footer {
  margin: 10px auto;
}

.logo-footer img {
  height: 90px;
}

.somm-footer {
  font-size: 13px;
  font-family: 'HighlandGothicFLF Regular';
  cursor: pointer;
}

@media (max-width: 1100px) {
  .section-footer {
    margin: 20px auto;
  }
}

@media (max-width: 1199px) {
  .title-footer,
  .element-footer {
    text-align: center;
  }
}