body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background-color:#fafafa;
  display: flex;
  flex-wrap: wrap;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

* {
  user-select: none;
}

/**** PORTADA */
.portada {
  width: 100%;
  height: 100vh;
  margin: 0;
  position: relative;
}

.sombra-portada {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 4;
}

.img-portada {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/foto_portada_new.jpg');
  background-size: cover;
  background-position: center 100%;
  background-repeat: no-repeat;
  z-index: 3;
}

@media (max-width: 500px) {
  .img-portada {
    background-image: url('../img/foto_portada_movil.jpg');
    background-position: center;
  }
}

/**** MATERIAL UNIVERSAL  */

.seccion {
  width: 100%;
  height: auto;
  margin: 50px auto;
  position: relative;
}

.contenido-seccion {
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
}

.vector {
  width: 500px;
  height: 800px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -150px;
  left: -30px;
  z-index: 1;
  opacity: 0.3;
}

@media (max-width: 500px) {
  .vector {
    top: -270px;
    left: -90px;
  }
}

.textos-seccion {
  width: 90%;
  max-width: 600px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: center;
  margin: 10px auto;
  z-index: 2;
}

.img-seccion {
  width: 90%;
  max-width: 600px;
  height: 450px;
  margin: 10px auto;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.titulo-seccion {
  width: 100%;
  height: auto;
  margin: 10px auto;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  font-family: 'Merriweather', serif;
  color: #f1c40f;
  z-index: 2;
}

.icono-elemento-seccion {
  width: 100%;
  height: 90px;
  line-height: 90px;
  margin: 0 auto;
  text-align: center;
  background-color: #f1c40f;
  color: #fff;
  font-size: 40px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.texto-seccion {
  width: 100%;
  height: auto;
  margin: 20px auto;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  color: #5b5b5b;
  z-index: 2;
}

.btn-seccion {
  width: 150px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background-color: #f1c40f;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  z-index: 2;
  cursor: pointer;
}

.elemento-seccion {
  width: 90%;
  max-width: 310px;
  height: 400px;
  margin: 20px auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0px 20px 20px #d6d6d6;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
}

.nombre-elemento-seccion {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 125px);
  width: 250px;
  height: 30px;
  line-height: 30px;
  display: flex;
  justify-content: center;
  background-color: #f1c40f;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  z-index: 2;
  transition: 1s ease;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
}

.nombre-elemento-seccion i {
  padding-left: 10px;
}

.nombre-elemento-seccion.active {
  width: 40px;
  bottom: calc(100% - 40px);
  left: calc(50% - 20px);
}

.nombre-elemento-seccion.active i {
  padding-left: 0;
}

.descripcion-elemento-seccion {
  position: absolute;
  top: 400px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.80);
  z-index: 1;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 1s ease;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
}

.descripcion-elemento-seccion.active {
  top: 0;
}

.texto-descripcion-elemento-seccion {
  width: 90%;
  height: auto;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  z-index: 1;
}

/**** PRODUCTOS */

.producto-seccion {
  width: 90%;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
  cursor: pointer;
}

.nombre-producto-seccion {
  width: 90%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

.nombre-producto-seccion i {
  padding-left: 10px;
  font-size: 16px;
}

.nombre-producto-seccion:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.form-seccion {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 90%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
}

.carousel-slider {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 200px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.carousel-list {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.carousel-item {
  width: 150px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  cursor: pointer;
}

.carousel-item:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.img-carousel {
  width: 100%;
  height: 150px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.texto-carousel {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif;
  color: #5b5b5b;
  font-size: 16px;
  text-align: center;
}

/**** NOSOTROS */

.elemento-seccion-nosotros {
  width: 90%;
  max-width: 310px;
  height: auto;
  margin: 20px auto;
  position: relative;
  box-shadow: 0px 20px 20px #d6d6d6;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.titulo-seccion-nosotros {
  width: 100%;
  height: auto;
  margin: 10px auto;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  font-family: 'Merriweather', serif;
  color: #5b5b5b;
  z-index: 2;
}

.icono-elemento-seccion-nosotros {
  width: 100%;
  height: 90px;
  line-height: 90px;
  margin: 0 auto;
  text-align: center;
  background-color: #f1c40f;
  color: #fff;
  font-size: 40px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.texto-seccion-nosotros {
  width: 90%;
  height: auto;
  margin: 20px auto;
  text-align: center;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: #5b5b5b;
  z-index: 2;
}


/**** FOOTER */

.footer {
  width: 100%;
  height: auto;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  align-content: center;
  background-color: #000;
  padding-top: 10px;
  padding-bottom: 10px;
}

.texto-footer {
  width: auto;
  height: auto;
  font-size: 12px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.somm-footer {
  font-size: 10px;
  font-family: 'HighlandGothicFLF Regular';
  cursor: pointer;
}