*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* tipografias */
@font-face {
  font-family: "lorealpro-bold";
  src: url("../assets/tipografias/LOREALPRO-Bold.ttf");
}
@font-face {
  font-family: "lorealpro-book";
  src: url("../assets/tipografias/LOREALPRO-Book.ttf");
}
@font-face {
  font-family: "lorealpro-extralight";
  src: url("../assets/tipografias/LOREALPRO-ExtraLight.ttf");
}
@font-face {
  font-family: "lorealpro-medium";
  src: url("../assets/tipografias/LOREALPRO-Medium.ttf");
}
@font-face {
  font-family: "lorealpro-semibold";
  src: url("../assets/tipografias/LOREALPRO-SemiBold.ttf");
}
/* tipografias */

/* generales */
.subtituloBold {
  font-family: lorealpro-bold;
  font-size: 20px;
}
.subtitulo {
  font-family: lorealpro-book;
  font-size: 12px;
}
/* generales */

.containerTotal {
  height: 100vh;
  display: flex;
  position: relative;
}
.containerTotal section {
  width: 50%;
}
.sectionMetalDetox {
  background-image: url("../assets/images/metal_detox.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-right: solid 1px #fff;
  position: relative;
}
.sectionAbsolut {
  background-image: url("../assets/images/absolut_molecular.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.footer {
  position: fixed;
  bottom: 0;
  /* background-color: #fff; */
  height: 10vh;
  width: 100vw;
}
.logoBlancoFooter img {
  position: absolute;
  right: 3%;
  width: 150px;
  bottom: 6px;
}
.logoBlancoFooter .lineaBlanca {
  background-color: #fff;
  height: 17px;
  width: 100vw;
  position: absolute;
  bottom: 18px;
}
.containerTitulo {
  position: absolute;
  background-color: #fff;
  width: 90vw;
  height: 20vh;
  margin: auto;
  top: 3vh;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}
.containerTitulo h1 {
  font-size: 28px;
  font-family: lorealpro-bold;
  text-align: center;
  width: 60%;
  padding-bottom: 10px;
}
.containerTitulo p {
  font-family: lorealpro-medium;
  font-size: 16px;
}
.containerDescripcion {
  background-color: #fff;
  position: absolute;
  margin: auto;
  top: 26vh;
  z-index: 1;
  width: 315px;
  padding: 20px;
  left: 5vw;
}
.containerDescripcion .subtitulo {
  padding-bottom: 5px;
}
.articuloSeccion {
  margin: auto;
  top: 3vh;
  right: 0;
  left: 0;
  position: absolute;
  top: 44vh;
  width: 24vw;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.articuloSeccion img {
  max-width: 100%;
  max-height: 100%;
}
.botonComenzar {
  border-radius: 600px;
  border: 3px solid #4d4d4d;
  background: var(--primary-100, #fff);
  margin: auto;
  top: 3vh;
  right: 0;
  left: 0;
  position: absolute;
  top: 85vh;
  width: 200px;
  text-decoration: none;
  color: #4d4d4d;
  text-align: center;
  padding: 16px;
  font-family: lorealpro-book;
  transition: opacity ease 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.botonComenzar:hover {
  opacity: 0.8;
}

.articuloRepair {
  width: 18vw;
}
/* pantallas con poco height */
@media (max-height: 680px) {
  .botonComenzar {
    top: 79vh;
    padding: 9px;
  }
  .containerTitulo h1 {
    font-size: 23px;
  }
  .containerDescripcion {
    top: 25vh;
    padding: 15px;
  }
  .articuloSeccion {
    height: 190px;
  }
  .primerTituloProducto {
    padding-top: 4vh;
  }
  .containerDescripcionMetalDetox {
    top: 4vh;
  }
}
/* pantallas con poco height */

/* version mobile  */
@media (max-width: 800px) {
  .containerTitulo {
    position: relative;
    margin: 0 auto;
    top: 0;
  }
  .containerTitulo h1 {
    font-size: 16px;
    width: 90%;
  }
  .containerTotal {
    flex-direction: column;
  }
  .containerTotal section {
    width: auto;
    height: 50vh;
  }
  .containerDescripcion {
    top: 0;
    position: static;
    margin-top: 12px;
    padding: 8px;
    margin-bottom: 15px;
  }
  .articuloSeccion {
    top: 0;
    position: static;
    width: 25vw;
    margin-bottom: 24px;
  }
  .containerDescripcion .subtitulo {
    text-align: center;
    font-size: 12px;
  }
  .subtituloBold {
    text-align: center;
    font-size: 16px;
  }
  .botonComenzar {
    position: static;
    border-width: 2px;
    padding: 6px;
  }
  .footer {
    display: none;
  }
  .articuloSeccion {
    height: auto;
  }
  .sectionMetalDetox {
    border-right: transparent;
  }
  .articuloMetalDetox {
    width: 32vw;
  }
}
/* version mobile  */
