@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
}

html, body {
  background-color: #1a1b30;
  height: 100%;
  width: 100%;
  padding: 0;
}

body > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

div.mobile {
  display: block;
}
div.mobile div.texto {
  box-sizing: border-box;
  padding: 20px;
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 60vh;
  padding-bottom: 50px;
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(20, 21, 39, 0) 0%, rgba(20, 21, 39, 0) 30%, rgb(20, 21, 39) 50%, rgb(20, 21, 39) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
div.mobile div.texto img {
  width: 50%;
  margin: 0 auto 20px 0;
}
div.mobile div.texto a {
  text-decoration: none;
  font-family: "Roboto", system-ui;
  color: #fff;
  background-color: #ff5000;
  padding: 5px 30px;
  font-weight: 600;
  display: inline-block;
  border-radius: 5px;
  margin-top: 10px;
}
div.mobile div.texto p {
  font-family: "Roboto", system-ui;
  color: #fff;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px;
}

img {
  margin: 0 auto;
  display: block;
  max-height: 100%;
  max-width: 100%;
}

div.desktop {
  display: none !important;
}

img.desktop {
  display: none !important;
}

@media (min-width: 768px) and (orientation: portrait) {
  div.mobile div.texto {
    padding-top: 75vh;
    padding-bottom: 100px;
    background: linear-gradient(to bottom, rgba(20, 21, 39, 0) 0%, rgba(20, 21, 39, 0) 45%, rgb(20, 21, 39) 80%, rgb(20, 21, 39) 100%);
  }
}
@media (min-width: 981px) and (orientation: landscape) {
  div.desktop .texto {
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translate(-50%, -50%);
    width: 330px;
  }
  div.desktop .texto img {
    margin-bottom: 40px;
  }
  div.desktop .texto a {
    text-decoration: none;
    font-family: "Roboto", system-ui;
    color: #fff;
    background-color: #ff5000;
    padding: 5px 30px;
    font-weight: 600;
    display: inline-block;
    border-radius: 5px;
    margin-top: 10px;
  }
  div.desktop .texto p {
    font-family: "Roboto", system-ui;
    color: #fff;
    width: 100%;
    font-size: 15px;
    line-height: 140%;
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) and (orientation: landscape) {
  div.desktop .texto {
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translate(-50%, -50%);
    width: 390px;
  }
  div.desktop .texto img {
    margin-bottom: 40px;
  }
  div.desktop .texto a {
    text-decoration: none;
    font-family: "Roboto", system-ui;
    color: #fff;
    background-color: #ff5000;
    padding: 5px 30px;
    font-weight: 600;
    display: inline-block;
    border-radius: 5px;
    margin-top: 10px;
  }
  div.desktop .texto p {
    font-family: "Roboto", system-ui;
    color: #fff;
    width: 100%;
    font-size: 15px;
    line-height: 140%;
    margin-bottom: 10px;
  }
}
@media (min-width: 1366px) and (orientation: landscape) {
  div.desktop .texto {
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translate(-50%, -50%);
    width: 450px;
  }
  div.desktop .texto p {
    width: 95%;
  }
}
@media (min-width: 1440px) and (orientation: landscape) {
  div.desktop .texto {
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translate(-50%, -50%);
    width: 450px;
  }
}
@media (min-width: 1920px) and (orientation: landscape) {
  div.desktop .texto {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(-50%, -50%);
    width: 450px;
  }
}
@media (min-width: 2560px) and (orientation: landscape) {
  div.desktop .texto {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translate(-50%, -50%);
    width: 450px;
  }
}
@media (orientation: landscape) {
  div.mobile {
    display: none !important;
  }
  img.mobile {
    display: none !important;
  }
  div.desktop {
    display: flex !important;
  }
  img.desktop {
    display: block !important;
  }
}/*# sourceMappingURL=style.css.map */