@import url('https://fonts.googleapis.com/css?family=Work+Sans');
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

body {
  font-family: 'Work Sans', sans-serif;
  width: 100%;
  background-color: #ccc;
}

::-webkit-scrollbar {
  width: 7px;
}


/*la barra entera, el fondo */

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
}


/*lo que sube y baja */

::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
}

.nav {
  padding-left: 40px;
  padding: 10px;
  position: fixed;
  width: 100%;
  background-color: transparent;
}

.nav.scroll {
  background-color: #19202e;
  z-index: 9999;
  height: 58px;
}

.nav.scroll img {
  width: 87px;
  height: 38px;
}

.nav.scroll a {
  padding-top: 8px;
}

.nav.scroll button {
  padding-top: 8px;
}

.logo {
  float: left;
  margin-top: 0px;
  margin-left: 10px;
  margin-right: 20px;
}

.logo img {
  width: 122px;
  height: 52px;
}

.navbar {
  overflow: hidden;
}

.nav a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding-left: 30px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 3px;
  text-decoration: none;
}

.nav button {
  padding-top: 16px;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding-left: 30px;
  padding-right: 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
  text-decoration: underline;
}

.dropdown-content {
  background-color: #19202e;
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: white;
  padding: 10px;
  padding-left: 30px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown:hover .dropdown-content {
  display: block;
}

header {
  background-color: #19202e;
  background-image: url(Imagenes/Importantes/landing.png);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 65px;
  padding-left: 100px;
  /*parallax*/
  background-attachment: fixed;
}

header .frase {
  width: 330px;
  font-size: 43px;
  color: white;
}

.frase .color {
  color: #86194A;
  font-weight: bold;
}

/*botones de la cabecera*/
header .botones {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  width: 320px;
}

/*cada botón*/

.button {
  font-family: 'Work Sans', sans-serif;
  border: 1px solid white;
  padding: 10px;
  width: 130px;
  background-color: transparent;
  color: white;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.button:hover {
  background-color: #fff;
  color: #000;
}

.contain {
  width: 100%;
}


/*lo del triangulo*/
.tituloVendidos {
  display: block;
  margin: auto;
  margin-top: 35px;
}

.clippy {
  display: block;
  margin: auto;
  margin-top: -160px;
  -webkit-clip-path: polygon(86% 79%, 6% 100%, 100% 100%);
  clip-path: polygon(86% 79%, 6% 100%, 100% 100%);
  width: 280px;
  height: 280px;
  background-color: #6BD1D9;
  position: relative;
  z-index: -1;
}

.contain p {
  font-weight: bold;
  font-size: 25px;
  text-align: center;
  margin-top: -36px;
  z-index: 1;
}


/*productos más vendidos*/
.fila {
  overflow: hidden;
  width: 100%;
}

.fila_interna {
  font-size: 0;
  white-space: nowrap;
  margin: 70px 0;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.producto {
  position: relative;
  display: inline-block;
  width: 250px;
  height: 175.625px;
  margin-right: 35px;
  font-size: 20px;
  transition: 350ms all;
  transform-origin: center;
}

.producto__img {
  width: 250px;
  height: 175.625px;
  object-fit: cover;
}

.producto__details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  font-size: 10px;
  opacity: 0;
  background: linear-gradient(to top, rgba(134, 25, 74, 0.3) 6%, rgba(0, 0, 0, 0) 100%);
  transition: 450ms opacity;
  display: flex;
  justify-content: center;
  align-items: center;
}

.producto:hover .producto__details {
  opacity: 1;
}

.producto__title {
  bottom: 0;
  padding: 10px;
}

.producto_link {
  color: white;
  text-decoration: none;
  background-color: #19202e;
  padding: 13px;
  font-size: 13px;
  transition: all .3s ease-in-out;
}

.producto_link:hover {
  color: #6BD1D9;
}

.fila_interna:hover .producto:hover {
  z-index: 2;
  transform: scale(1.2);
  opacity: 1;
}

hr {
  border: 1px solid #b2b2b2;
  width: 90%;
  margin: auto;
}

/*informacion extra*/
.container {
  width: 100%;
  margin-top: 55px;
  display: flex;
  align-content: center;
  justify-content: center;
  padding-bottom: 75px;
}

.info {
  text-align: center;
  width: 260px;
  margin-left: 45px;
}

.info img {
  display: block;
  margin: auto;
  width: 74px;
  height: 74px;
}

.titleInfo {
  font-weight: bold;
  font-size: 21px;
  color: #5FC1C8;
  letter-spacing: 2px;
}

.containter p {
  margin-top: 10px;
  font-size: 15px;
}

footer {
  color: white;
  width: 100%;
  height: 150px;
  background-color: #19202e;
  border-top: 6px solid #86194A;
  display: flex;
  align-content: center;
  justify-content: center;
}

.columna {
  text-align: center;
  padding: 20px;
  width: 300px;
}

.columna .tituloColumna {
  font-size: 18px;
  font-weight: bold;
}

.columna .telefono {
  width: 50px;
  height: 50px;
  margin-top: 15px;
  margin-left: 40px;
}

.columna .logofooter {
  width: 110px;
  height: 47px;
  display: block;
  margin: auto;
  margin-bottom: 10px;
}

.columna .numero {
  margin-top: -44px;
  display: block;
  margin-left: 102px;
}

.columna p {
  text-align: left;
}

ul {
  padding: 0;
  list-style: none;
  text-align: center;
}

.footer-social-icons {
  width: 350px;
  display: block;
  margin: 0 auto;
}

.social-icon {
  color: #fff;
}

ul.social-icons {
  margin-top: 10px;
}

.social-icons li {
  vertical-align: top;
  display: inline;
  height: 100px;
}

.social-icons a {
  color: #fff;
  text-decoration: none;
}

.fa-facebook {
  padding: 10px 14px;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
  background-color: #86194A;
}

.fa-facebook:hover {
  background-color: #3d5b99;
}

.fa-twitter {
  padding: 10px 12px;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
  background-color: #86194A;
}

.fa-twitter:hover {
  background-color: #00aced;
}

.fa-instagram {
  padding: 10px 14px;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
  background-color: #86194A;
}

.fa-instagram:hover {
  background-color: #eb8231;
}

.fa-youtube {
  padding: 10px 14px;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
  background-color: #86194A;
}

.fa-youtube:hover {
  background-color: #e64a41;
}