* {
  margin: 0;
  padding: 0;
}
body {
  color: #888;
  background-color: #fff;
  font-family: "Lato", "Roboto", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100vh;
  width: 100%;
}

/* INÍCIO HEADER */

:root{
  --azul : #0059aa;
  --azul-claro: #3d9bda;
}

#header {
  position: relative;
  width: 100%;
  background: #FFFFFF;
}

#header .social-bar{
  width: 100%;
  background-color: var(--azul);
}

.info{
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.info-contact{
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.info-contact i{
  margin-right: 5px;
}

.info-contact p {
  margin-bottom: 0;
}

.info-contact>*{
  color: #FFFFFF;
  font-size: 12px;
}

.social{
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
}

.social a{
  text-decoration: none;
  color: #008ed4;
  background-color: #F8F8F8;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  border-radius: 3px;
  font-size: 14px;
  transition: 0.3s ease-in-out;
}

.social a:hover{
  color: white;
  background-color: #008ed4;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

#header .container {
  width: min(90%, 1200px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 10px 0;
}

#header .container:nth-child(1){
  padding: 5px 0;
}

.logoecliente {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 60px;
}

.logoecliente img {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 60px;
  object-fit: contain;
}

.logomenu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  opacity: 0.5;
}

.logomenu img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu{
  height: 100%;
  width: 0px;
  background-color: #0059aa ;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  transition: width 0.3s;
  text-shadow: 0.2px 0.2px 0.2px white;
}

.menu a{
  color: white;
  font-size: 18px;
  display: block;
  padding: 12px 10px 12px 32px;
  text-decoration: none;
  font-family:sans-serif;
  
}

.menu a:hover{
  color: #0059aa;
  background-color: white;
  text-decoration: none;
}

.menu i{
  margin-right: 7px;
}

.mail, .mail:hover {
  color: #FFF;
  text-decoration: none;
}

/* FIM HEADER */

@keyframes floating {
  0% { transform: translate(0,  0px); }
  50%  { transform: translate(0, 15px); }
  100%   { transform: translate(0, -0px); }   
}

.whats {
  font-size: 4.5rem;
  color: #03A9F4;
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.icon-whats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 3.5rem;
  align-items: center;
}

.text-center {
  text-align: center;
}
.left, .right {
  height: 100%;
  position: absolute;
  width: 50%;
}
.left {
  background-color: #ffffff;
  left: 0;
  background-attachment: fixed;
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  background: url(back.jpg);
}
.right {
  right: 0;
  background-color: #050505;
  background: url(bg.jpg);
}
.right h2 {
  text-align: center;
  font-size: 35px;
  font-family: 'Roboto', sans-serif;
  color: white;
  margin-bottom: 45px;
  font-weight: 900;
}
.conteudo {
  max-width: 720px;
  margin: 120px auto 0 auto;
  padding: 0 40px;
}
.left .conteudo {
  margin: 110px auto 0 auto;
}
img#logo {
  width: 345px;
  margin-bottom: 30px;
}
p#descricao {
  margin-top: 30px;
  line-height: 23px;
  font-weight: 500;
  color: #525252;
  font-size: 13px;
}
ol {
  counter-reset: section;
  list-style-type: none;
}
ol#lista li {
  font-size: 20px;
  color: #585858;
  position: relative;
  counter-increment: items;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
}
ol#lista li::before {
  counter-increment: section;
  content: counters(section,".") " ";
  width: 40px;
  height: 40px;
  background-color: #03A9F4;
  border-radius: 50%;
  color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  flex: none;
  font-weight: 600;
}
.grupo_form {
  margin-bottom: 20px;
  width: 100%;
}
.grupo_form label {
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 5px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.formulario button {
    background: #03A9F4;
    border: none;
    padding: 15px 40px;
    text-align: center;
    display: block;
    margin: 0 auto;
    color: white;
    text-transform: unset;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    border-radius: 30px;
    margin-bottom: 30px;
    cursor: pointer;
}
.formulario button:hover {
      background: #3162ab;
}
input#celular, input#mensagem {
  background: #ffffff;
  width: 100%;
  border: #050505;
  padding: 20px;
  margin-top: 5px;
  border-radius: 34px;
}
p.aviso-form {
  color: #c1c1c1;
}
.assinatura {
    position: absolute;
    width: 100%;
    margin-top: 70vh;
    background: #050505;
    top: 330px;
    text-align: center;
    padding: 8px;
    color: aliceblue;
}
.assinatura a{
    color: #ffffff;
}

.assinatura a:hover {
  text-decoration: none;
  color: #008ed4;
}

.button-gerar-novamente:hover {
    background: #e0990b;
}

@media screen and (max-width : 1370px) {
  .assinatura {
    position: absolute;
    width: 100%;
    margin-top: 20vh;
    background: #050505;
    top: 640px;
    text-align: center;
    padding: 8px;
    color: aliceblue;
  }
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
  .left, .right {
    height: auto;
    padding: 70px 30px 50px 30px;
    position: relative;
    width: 100%;
    left: initial;
    right: inherit;
  }
  .left .conteudo {
    margin: 30px auto 0 auto;

  }

  .assinatura {
    top: 0;
    margin-top: 0;
    position: static;
  }

  .logoecliente img {
    width: 80%;
  }

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
  .left, .right {
    height: auto;
    padding: 70px 30px 50px 30px;
    position: relative;
    width: 100%;
    left: initial;
    right: inherit;
  }
  .left .conteudo {
    margin: 30px auto 0 auto;
  }
  .conteudo {
    padding: 0;
  }

  .assinatura {
    top: 0;
    margin-top: 0;
    position: static;
  }

  .logoecliente img {
    width: 70%;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
  .left, .right {
    height: auto;
    padding: 70px 30px 50px 30px;
    position: relative;
    width: 100%;
    left: initial;
    right: inherit;
  }
  .conteudo {
    max-width: 660px;
    margin: 0 auto 0 auto;
    padding: 0;
  }

  img#logo {
    width: 260px;
    text-align: center;
    display: block;
    margin: 0 auto 40px;
  }
  .left .conteudo {
    margin: 0 auto 0 auto;
  }

  .assinatura {
    top: 0;
    position: static;
    margin-top: 0;
    font-size: 12px;
  }

  .logoecliente img {
    width: 60%;
  }

  .fa-brands {
    font-size: 2.5rem;
  }
  
  .icon-whats {
    margin-bottom: 2.5rem;
  }
}

div#social-ecliente p {
    color: #fafafa;
    font-size: 16px;
    font-weight: 400;
}
div#social-ecliente a i {
    background: #03a9f4;
    color: white;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    line-height: 30px;
    transition: 0.7s;
}
div#social-ecliente a i:hover {
    background: #3162ab;
}
.button-gerar-novamente {
    background: #03A9F4;
    border: none;
    padding: 15px 40px;
    text-align: center;
    display: block;
    margin: 0 auto;
    color: white;
    text-transform: unset;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    border-radius: 30px;
    margin-bottom: 30px;
    cursor: pointer;
     transition: 0.7s;
}
.button-gerar-novamente:hover {
    background: #3162ab;
}