/* ============================================
   LAYOUT - TruScale Conheça TruScale
   ============================================ */

.container {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.bg_video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  position: absolute;
}

#truscale-lp .logofix {
  position: fixed;
  right: 0;
  top: 19%;
  width: 60px;
  z-index: 9;
}

.logolenovo {
  position: absolute;
  width: 40px;
  right: 0;
  top: 100px;
}

.desktop {
  display: block;
}

.mobile {
  display: none !important;
}

.divbutton {
  display: block;
  width: 100%;
  margin: 34px 0;
}

.divbutton a {
  font-family: var(--font-gotham-book);
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  color: var(--color-white);
  width: 800px;
  padding: 20px 0;
  text-decoration: none;
  background-color: var(--color-primary-red);
  text-transform: uppercase;
  display: block;
}

h2 {
  font-family: var(--font-gotham-book);
}

p {
  font-family: var(--font-gotham-book);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block !important;
  }

  .logolenovo {
    width: 35px;
    top: 60px;
  }
}

@media screen and (max-width: 766px) {
  .divbutton a {
    font-size: 16px;
    width: 100%;
    display: block;
    height: auto;
    padding: 12px 0px;
  }
}

@media screen and (min-width: 766px) and (max-width: 1024px) {
  .divbutton a {
    width: 351px;
  }
}

