@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");

:root {
  --Preto: #0e1315;
  --BrancoB: #eff3f5;
  --Branco: #f9f9f9;
  --Cinza: #252525;
  --Laranja: #f76100;
  --Lar-escuro: #cc5200ec;

  --Fonte-1: "Lato", sans-serif;
}
a {
  text-decoration: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--Fonte-1);
}

/* section menu */
header {
  width: 100%;
}

.rolagem {
  background: var(--Preto);
}

.container {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  max-width: 1080px;
  background-color: var(--Preto);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  transition: 0.5s;
}

.logo img {
  margin-left: 18px;
  height: 45px;
}

#burguer {
  margin-right: 18px;
  color: var(--Branco);
  cursor: pointer;
  font-size: 2.5em;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked ~ .menu {
  transform: translateX(-100%);
  transition: 0.5s;
}

.menu {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0px;
  right: -100%;

  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--Preto);

  transition: 0.5s;
  z-index: -1;
  padding-top: 80px;
}

.menu-item {
  display: block;
  text-decoration: none;
  text-align: end;
  color: var(--Branco);
  font-weight: 700;
  font-size: 14px;
  padding-right: 30px;
  transition: 0.5s;
}

.menu-botao {
  margin: 0 auto;
  width: 250px;
  border-top: 1px solid var(--Branco);
}

.botao-contrate,
.botao-login {
  display: block;
  text-decoration: none;
  color: var(--Branco);
  font-weight: 700;
  font-size: 14px;
}

.botao-contrate > a,
.botao-login > a {
  text-decoration: none;
  color: var(--Branco);
}

.botao-contrate {
  background: var(--Laranja);
  border: 1px solid var(--Laranja);
  border-radius: 20px;
  padding: 10px;
  width: 180px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.25);
  transition: 0.5s;
  cursor: pointer;
}

.botao-login {
  border: 1px solid var(--Branco);
  border-radius: 20px;
  padding: 10px;
  width: 130px;
  text-align: center;
  margin: 0 auto;
  margin-top: 14px;
  transition: 0.5s;
  cursor: pointer;
}
/* fim Menu */

/* main */
main {
  min-height: 80vh;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  background: #ffffff;
}

input,
button {
  border: none;
  outline: none;
  background: none;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
main {
  margin-top: 100px;
}
.help-block {
  color: red;
  font-weight: bold;
}
.tip {
  font-size: 20px;
  margin: 40px auto 50px;
  text-align: center;
}

.cont {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 900px;
  height: 550px;
  margin: 0 auto 100px;
  background: #fff;
  box-shadow: -10px -10px 15px rgba(255, 255, 255, 0.3),
    10px 10px 15px rgba(70, 70, 70, 0.15),
    inset -10px -10px 15px rgba(255, 255, 255, 0.3),
    inset 10px 10px 15px rgba(70, 70, 70, 0.15);
}

.form {
  position: relative;
  width: 640px;
  height: 100%;
  -webkit-transition: -webkit-transform 1.2s ease-in-out;
  transition: -webkit-transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
  padding: 50px 30px 0;
}

.sub-cont {
  overflow: hidden;
  position: absolute;
  left: 640px;
  top: 0;
  width: 900px;
  height: 100%;
  padding-left: 260px;
  background: #fff;
  -webkit-transition: -webkit-transform 1.2s ease-in-out;
  transition: -webkit-transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
}

.cont.s--signup .sub-cont {
  -webkit-transform: translate3d(-640px, 0, 0);
  transform: translate3d(-640px, 0, 0);
}

.submit {
  display: block;
  margin: 0 auto;
  width: 260px;
  height: 36px;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.img {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 260px;
  height: 100%;
  padding-top: 360px;
}

.img:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 900px;
  height: 100%;
  background-image: url("ext.jpg");
  opacity: 0.8;
  background-size: cover;
  -webkit-transition: -webkit-transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
}

.img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 17, 20);
}

.cont.s--signup .img:before {
  -webkit-transform: translate3d(640px, 0, 0);
  transform: translate3d(640px, 0, 0);
}

.img__text {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  color: #fff;
  -webkit-transition: -webkit-transform 1.2s ease-in-out;
  transition: -webkit-transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
}

.img__text h2 {
  margin-bottom: 10px;
  font-weight: normal;
}

.img__text p {
  font-size: 14px;
  line-height: 1.5;
}

.cont.s--signup .img__text.m--up {
  -webkit-transform: translateX(520px);
  transform: translateX(520px);
}

.img__text.m--in {
  -webkit-transform: translateX(-520px);
  transform: translateX(-520px);
}

.cont.s--signup .img__text.m--in {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.img__btn {
  overflow: hidden;
  z-index: 2;
  position: relative;
  width: 100px;
  height: 36px;
  margin: 0 auto;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
}

.img__btn:after {
  content: "";
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 30px;
}

.img__btn span {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 1.2s;
  transition: -webkit-transform 1.2s;
  transition: transform 1.2s;
  transition: transform 1.2s, -webkit-transform 1.2s;
}

.img__btn span.m--in {
  -webkit-transform: translateY(-72px);
  transform: translateY(-72px);
}

.cont.s--signup .img__btn span.m--in {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cont.s--signup .img__btn span.m--up {
  -webkit-transform: translateY(72px);
  transform: translateY(72px);
}

h2 {
  width: 100%;
  font-size: 26px;
  text-align: center;
}

label {
  display: block;
  width: 260px;
  margin: 16px auto 0;
  text-align: center;
}

label span {
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
}

input {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  text-align: center;
}

.forgot-pass {
  margin-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #000;
}

.submit {
  margin-top: 20px;
  margin-bottom: 20px;
  background: var(--Laranja);
  text-transform: uppercase;
  z-index: 29;
}

.fb-btn {
  border: 2px solid #d3dae9;
  color: #8fa1c7;
}

.fb-btn span {
  font-weight: normal;
  color: #455a81;
}

.sign-in {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.cont.s--signup .sign-in {
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
  -webkit-transform: translate3d(640px, 0, 0);
  transform: translate3d(640px, 0, 0);
}

.sign-up {
  -webkit-transform: translate3d(-900px, 0, 0);
  transform: translate3d(-900px, 0, 0);
}

.cont.s--signup .sign-up {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.logo-form {
  margin-top: 185px;
}
.link__text {
  color: white;
  text-decoration: underline;
}
/*fim do main*/
/* section info */
.info {
  margin: 0 auto;
  width: 100%;
  padding: 32px;
  background: var(--Preto);
  color: #fff;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.info-contato {
  letter-spacing: 0.1em;
  font-weight: 400;
  max-width: 325px;
}

.info-titulo {
  padding-top: 20px;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.contato-box {
  display: flex;
  flex-direction: column;
}

.contato-item {
  text-decoration: none;
  color: #fff;
  margin-bottom: 10px;
}

.info-social > a {
  text-decoration: none;
}

.contato-link {
  vertical-align: top;
}

.info-detalhe {
  letter-spacing: 0.1em;
  font-weight: 300;
  max-width: 325px;
}

.info-detalhe > p {
  font-size: 16px;
}

.info-link {
  display: flex;
  flex-direction: column;
  text-align: start;
}

.info-links {
  text-decoration: none;
  color: #fff;
  padding-bottom: 10px;
}
/* fim info */

/* rodape */
footer {
  padding: 32px;
  background: var(--Branco);
  font-size: 16px;
  text-align: center;
}
/* fim rodape */

@media screen and (min-width: 900px) {
  .container {
    justify-content: space-around;
    padding: 18px;
    max-width: 100vw;
    height: 80px;
  }

  .menu {
    position: static;
    flex-direction: row;
    justify-content: end;
    padding: 0;
    height: 0;
    margin-bottom: 5px;
    gap: 20px;
  }

  .menu-botao {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    border: none;
    width: 270px;
  }

  .botao-login {
    margin-top: 20px;
  }

  .click-menu {
    display: none;
  }

  .menu-item:hover {
    color: var(--Laranja);
  }

  .botao-contrate:hover {
    background: var(--Lar-escuro);
  }

  .botao-login:hover {
    background: var(--Branco);
    color: var(--Preto);
  }

  .slider-titulo {
    width: 610px;
    margin-top: 15%;
    text-align: start;
  }

  .slider-titulo button {
    margin: 10px 0;
  }

  .img-desktop {
    display: block;
  }

  .img-mobile {
    display: none;
  }

  .nav-auto,
  .nav-manual {
    margin-top: 40%;
  }

  .card-texto {
    padding-left: 30px;
  }

  .card-texto > button {
    margin: 15px 0;
  }

  .info-container {
    justify-content: space-around;
  }
}

@media screen and (min-width: 1366px) {
  .slider-titulo {
    width: 680px;
    margin-top: 15%;
    text-align: start;
  }

  .slider-titulo button {
    margin: 25px 0;
  }
}
