* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-style: italic;
}

/* Scroll Reveal - CSS */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/*WHATSAPP*/
.Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 75px;
  height: 75px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  overflow: hidden;
  bottom: 20px;
  right: 20px;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
  z-index: 1000;
}

.sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 40px;
}

.sign svg path {
  fill: white;
}

.text {
  position: absolute;
  right: -2%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.3em;
  font-weight: 400;
  transition-duration: 0.3s;
}

.Btn:hover {
  width: 170px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.Btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

.Btn:active {
  transform: translate(2px, 2px);
}

/*WHATSAPP*/

header {
  width: 100%;
  height: 15%;
  padding: 10px 250px;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
  position: fixed;
  top: 0;
  text-align: center;
  align-items: center;
  transition: all ease .3s;
  background: #fff;
  box-shadow: 100px 10px 100px rgba(0, 0, 0, 0.1);
}

header ul {
  padding: 10px;
  list-style: none;
  display: flex;
  transition: padding ease .2s;
}

header ul li a {
  padding: 10px 40px;
  color: #055fad;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 800;
}

header ul li a:hover {
  color: #7ed217;
  text-decoration: underline;
}

li a, .dropbtn{
  display: inline-block;
  color: #055fad;
  text-align: center;
  text-decoration: none;
}

li .dropdawn{
  display: inline-block;
}

.dropdawn-content{
  display: none;
  position: absolute;
  background: #fff;
  min-width: 160px;
  box-shadow: 10px 10px 15px rgba(0,0,0,0.1);
  z-index: 1;
}

.dropdawn-content a{
  color: #055fad;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdawn-content a:hover{background-color: #f1f1f1;}

.dropdawn:hover .dropdawn-content{
  display: block;
}

#menu-icon {
  color: #7ed217;
  font-size: 30px;
  z-index: 10001;
  cursor: pointer;
  display: none;
}

header .logo img {
  width: 200px;
  transition: all ease-in-out .1s;
}

header .logo img:hover {
  scale: 1.02;
}

header.compact {
  height: 9%;
  padding: 5px 50px;
}

header.compact .logo img {
  width: 150px;
}

header.compact ul {
  padding: 10px;
}

.container .container-inicio {
  display: block;
  height: 100vh;
  width: 100%;
  margin-top: 0;
}

.container .container-inicio img {
  height: 100vh;
  width: 100%;
  z-index: -10;
  position: absolute;
}

.container .container-inicio .texto {
  align-items: center;
  width: 70%;
  padding: 300px 100px;
}

.container .container-inicio h1 {
  padding: 10px;
  font-size: 4em;
  color: #1c1c1c;
  line-height: 65px;
}

.container .container-inicio h1 span {
  color: #055fad;
}

.container .container-inicio h1 samp {
  color: #7ed217;
}

.container .container-inicio a {
  display: inline-block;
  color: #fff;
  background: #7ed217;
  text-decoration: none;
  padding: 10px;
  font-size: 3em;
  font-weight: 800;
  animation: bounce 2s infinite ease-out;
  position: relative;
  margin-top: 20px;
  border-radius: 10px;
}

.container .container-inicio a:hover {
  background: #7eaf42;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(0);
  }

  70% {
    transform: translateY(-5px);
  }

  90% {
    transform: translateY(0);
  }
}

/* Card */
.card {
  position: relative;
  width: 600px;
  height: 300px;
  background-color: #1c1c1c;
  font-size: 1em;
  color: #7ed217;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  box-shadow: 0 0 0 5px #ffffff80;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.card__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #1c1c1c;
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .card__content {
  transform: rotateX(0deg);
}

.card__description {
  margin: 10px 0 0;
  font-size: 1em;
  font-weight: 600;
  color: #7ed217;
  line-height: 1.4;
}
/* Card */

.sub-container {
  display: block;
  padding: 20px 200px;
  background: #fff;
  color: #1c1c1c;
}

.container-titulo {
  padding: 20px 0;
  color: #055fad;
  font-size: 1.8em;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.container-texto-img {
  align-items: center;
  display: flex;
  width: 100%;
  padding: 20px 0;
  gap: 30px;
}

.container-texto {
  width: 100%;
}

.container-texto h3 {
  font-size: 1.8em;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  font-style: normal;
}

.container-cards {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}

.solucoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 0;
}

.solucoes .box {
  margin: 15px 0;
  width: 600px;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 10px;
  align-items: center;
  border: solid 1px #dce3e9;
  display: flex;
  transition: ease-in-out .2s;
  text-decoration: none;
  color: #1c1c1c;
}

.solucoes .box:hover {
  scale: 1.05;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
}

.solucoes .box .texto {
  padding: 0 15px;
}

.solucoes .box .texto h1 {
  line-height: 32px;
  font-weight: 500;
  font-style: normal;
}

.solucoes .box img {
  width: 70px;
  height: 70px;
}

.projetos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}

.projetos .box {
  background-color: #ffffff;
  border: 1px solid #dce3e9;
  border-left: 8px solid #055fad;
  /* destaque industrial */
  border-radius: 10px;
  color: #055fad;
  padding: 25px;
  width: 100%;
  margin: 20px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projetos .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.projetos .box p {
  font-size: 1.1em;
  color: #1c1c1c;
  margin-bottom: 15px;
  line-height: 1.5;
}

.projetos .box a {
  text-decoration: none;
  color: #fff;
  background-color: #7ed217;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.projetos .box a:hover {
  background-color: #7eaf42;
}

.contato-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contato-direita .whatsapp {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}

.contato-direita {
  width: 100%;
}

.contato-direita .whatsapp ul {
  display: flex;
  list-style: none;
}

.contato-direita .whatsapp ul li {
  padding: 15px;
}

.contato-direita ul li a {
  background: #7ed217;
  display: inline-block;
  border-right: solid 4px #32744098;
  border-bottom: solid 5px #32744098;
  border-top: solid 2px #bdf168;
  border-left: solid 1px #bdf168;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  font-size: 1.3em;
  width: 310px;
  font-weight: 500;
  border-radius: 5px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, .2);
  transition: ease-in-out .2s;
}

.contato-direita ul li:hover a {
  transform: translate(-2px, -5px);
  box-shadow: 7px 7px 20px rgba(0, 0, 0, .15);
  background: #7eaf42;
  border-top: solid 2px #7eaf42;
  border-left: solid 1px #7eaf42;
  border-bottom: solid 5px #325e4898;
  border-right: solid 4px #325e4898;
}

.contato-direita .maps {
  width: 100%;
  padding: 10px;
}

/* CONTATO PREENCHER */
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 450px;
  height: 650px;
  margin-right: 100px;
  background-color: #055fad;
  padding: 20px;
  position: relative;
  border-radius: 10px;
}

.form h3 {
  text-align: center;
  color: #7ed217;
  font-size: 2em;
  word-spacing: 5px;
}

.message {
  color: #055fad;
  font-size: 14px;
}

.flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

.form label {
  position: relative;
  width: 100%;
}

.form label .input {
  width: 100%;
  padding: 10px;
  font-size: 1.1em;
  outline: 0;
  border: 1px solid #055fad;
  border-radius: 5px;
}

.form label span {
  position: relative;
  color: #7ed217;
  font-size: 1em;
  font-weight: 600;
  cursor: text;
  transition: 0.1s ease;
}

.form label .input:focus span {
  font-size: .2em;
  color: #7ed217;
  background: #fff;
  border-radius: 3px;
  padding: 2px;
  font-weight: 500;
}

.form label .input:valid+span {
  top: 5px;
  opacity: 0;
}

.input01 {
  min-width: 410px;
  max-width: 410px;
  min-height: 190px;
  max-height: 190px;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid #055fad;
  border-radius: 5px;
}

.form label .input01+span {
  position: absolute;
  left: 10px;
  top: 50px;
  color: #055fad;
  font-size: 0.9em;
  cursor: text;
  transition: 0.1s ease;
}

.form label .input01:placeholder-shown+span {
  top: 10px;
  font-size: 0.9em;
}

.form label .input01:focus+span,
.form label .input01:valid+span {
  opacity: 0;
}

.fancy {
  background-color: #7ed217;
  border: 2px solid #055fad;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  margin: 0;
  width: 100%;
  height: 50px;
  padding: 6px 30px;
  text-align: center;
  transition: 0.3s ease-in-out;
  font-size: 1.4em;
}

.fancy:hover {
  background: #7eaf42;
}

/* CONTATO PREENCHER */


.clientes{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 60px 100px;
}

.clientes a{
  width: 25%;
}

.clientes a img{
  width: 100%;
  padding: 10px 30px;
  transition: ease-in .2s;
}

.clientes a:hover img{
  scale: 1.02;
}

.footer {
  background-color: #1c1c1c;
  color: #fff;
  width: 100%;
  padding: 0;
  box-shadow: -10px -10px 10px rgba(0, 0, 0, .1);
}

.footer-container {
  align-items: start;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 100px;
}

.footer-section {
  width: 49%;
  height: 100%;
}

.footer-section h3 {
  font-size: 1.8em;
  color: #7ed217;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  display: flex;
}

.footer-section ul li a {
  padding: 0 25px;
}

.footer-section ul li a img {
  width: 80px;
  height: 80px;
  transition: ease .2s;
}

.footer-section ul li:hover a img {
  transform: scale(1.1);
}

.footer-section p,
.footer-section a {
  font-size: 0.95em;
  color: #fff;
}

.footer-section a:hover {
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  border-top: 1px solid #555;
  padding-top: 15px;
  font-size: 0.85em;
  color: #ccc;
}

.footer-bottom a {
  color: #ccc;
}

.footer-bottom a:hover {
  color: #fff;
}


@media (max-width: 1600px) {
  header {
    width: 100%;
    height: 15%;
    padding: 10px 120px;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    position: fixed;
    top: 0;
    text-align: center;
    align-items: center;
    transition: all ease .3s;
    background: #fff;
    box-shadow: 100px 10px 100px rgba(0, 0, 0, 0.1);
  }

  header ul {
    padding: 5px;
    list-style: none;
    display: flex;
    transition: padding ease .2s;
  }

  header ul li a {
    padding: 5px 30px;
    color: #055fad;
    text-decoration: none;
    font-size: .9em;
    font-weight: 700;
  }

  header .logo img {
    width: 150px;
    transition: all ease-in-out .1s;
  }

  header.compact .logo img {
    width: 100px;
  }

  .container .container-inicio {
    display: block;
    height: 100vh;
    width: 100%;
    margin-top: 0;
  }

  .container .container-inicio img {
    height: 100vh;
    width: 100%;
    z-index: -10;
    top: 0;
    left: 0;
    position: absolute;
  }

  .container .container-inicio .texto {
    align-items: center;
    width: 70%;
    padding: 200px 100px;
  }

  .container .container-inicio h1 {
    padding: 6px;
    font-size: 2.8em;
    line-height: 50px;
  }

  .container .container-inicio a {
    display: inline-block;
    color: #fff;
    background: #7ed217;
    text-decoration: none;
    padding: 10px;
    font-size: 2em;
    font-weight: 700;
    animation: bounce 2s infinite ease-out;
    position: relative;
    margin-top: 15px;
    border-radius: 10px;
  }

  /* Card */
  .card {
    position: relative;
    width: 450px;
    height: 250px;
    background-color: #1c1c1c;
    font-size: .8em;
    color: #7ed217;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    box-shadow: 0 0 0 5px #ffffff80;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
  }

  .card__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    box-sizing: border-box;
    background-color: #1c1c1c;
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .card:hover .card__content {
    transform: rotateX(0deg);
  }

  .card__description {
    margin: 10px 0 0;
    font-size: .9em;
    font-weight: 600;
    color: #7ed217;
    line-height: 1.2;
  }

  /* Card */

  .sub-container {
    display: block;
    max-width: 100%;
    padding: 15px 130px;
    background: #fff;
    color: #1c1c1c;
  }

  .container-titulo {
    padding: 15px 0;
    color: #055fad;
    font-size: 1.2em;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .container-texto-img {
    align-items: center;
    display: flex;
    width: 100%;
    padding: 15px 0;
    gap: 20px;
  }

  .container-texto {
    width: 100%;
  }

  .container-texto h3 {
    font-size: 1.2em;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    font-style: normal;
  }

  .container-cards {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
  }

  .solucoes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 0;
  }

  .solucoes .box {
    margin: 10px 0;
    width: 450px;
    height: 80px;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 8px;
    border: solid 1px #dce3e9;
    display: flex;
    transition: ease-in-out .2s;
    text-decoration: none;
    color: #1c1c1c;
    align-items: center;
  }

  .solucoes .box .texto {
    padding: 0 10px;
  }

  .solucoes .box .texto h1 {
    line-height: 20px;
    font-weight: 500;
    font-size: 1.3em;
    font-style: normal;
  }

  .solucoes .box img {
    width: 45px;
    height: 45px;
  }

  .projetos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px 0;
  }

  .projetos .box {
    background-color: #ffffff;
    border: 1px solid #dce3e9;
    border-left: 8px solid #055fad;
    /* destaque industrial */
    color: #055fad;
    border-radius: 10px;
    padding: 13px;
    width: 100%;
    margin: 15px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .projetos .box p {
    font-size: .9em;
    color: #1c1c1c;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .projetos .box h2 {
    font-size: 1em;
    color: #055fad;
  }

  .projetos .box a {
    text-decoration: none;
    color: #fff;
    background-color: #7ed217;
    padding: 8px 17px;
    font-weight: 500;
    font-size: .8em;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  .contato-direita .whatsapp ul li {
    padding: 12px;
  }
  
  .contato-direita ul li a {
    border-right: solid 3px #32744098;
    border-bottom: solid 4px #32744098;
    padding: 6px;
    font-size: .8em;
    width: 210px;
    font-weight: 500;
  }
  
  .contato-direita ul li:hover a {
    border-bottom: solid 4px #325e4898;
    border-right: solid 3px #325e4898;
  }
  
  .contato-direita .maps {
    width: 100%;
    padding: 7px;
  }
  
  /* CONTATO PREENCHER */
  .form {
    gap: 7px;
    width: 380px;
    height: 570px;
    margin-right: 70px;
    padding: 16px;
  }

  .form h3 {
    font-size: 1.5em;
    word-spacing: 4px;
  }

  .flex {
    gap: 7px;
  }

  .form label .input {
    padding: 8px;
  }

  .input01 {
    min-width: 100%;
    max-width: 100%;
    min-height: 180px;
    max-height: 180px;
    outline: 0;
    border: 1px solid #055fad;
    border-radius: 5px;
  }

  .form label .input01+span {
    position: absolute;
    left: 10px;
    top: 50px;
    color: #055fad;
    font-size: 0.9em;
    cursor: text;
    transition: 0.1s ease;
  }

  .form label .input01:placeholder-shown+span {
    top: 10px;
    font-size: 0.9em;
  }

  .form label .input01:focus+span,
  .form label .input01:valid+span {
    opacity: 0;
  }

  .fancy {
    background-color: #7ed217;
    border: 2px solid #055fad;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
    width: 100%;
    height: 50px;
    padding: 6px 30px;
    text-align: center;
    transition: 0.3s ease-in-out;
    font-size: 1.4em;
  }

  .fancy:hover {
    background: #7eaf42;
  }
  
}

@media (max-width: 990px) {
  #menu-icon {
    display: block;
  }

  header ul {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 220px;
    height: auto;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 10px;
    transition: all .55s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 99;
    gap: 10px;
  }

  header ul li a {
    display: block;
    width: 100%;
    padding: 8px 12px;
    margin: 5px 0;
    text-align: center;
  }

  .nav-list.open {
    right: 0;
    opacity: 1;
    pointer-events: all;
  }

  .container {
    width: 100%;
  }
}

@media (max-width: 550px) {
  header {
    width: 100%;
    justify-content: space-between;
    padding: 10px 20px;
  }

  header ul{
    width: 180px;
    padding: 20px 10px;
  }

  header ul li a {
    display: block;
    width: 100%;
    padding: 5px 12px;
    margin: 5px 0;
    text-align: center;
    font-size: 1.3em;
    font-weight: 800;
  }

  .container .container-inicio .texto {
    align-items: center;
    width: 100%;
    padding: 300px 10px;
  }

  .container-inicio .texto h1 {
    font-size: 2em;
    line-height: 40px;
  }

  .container .container-inicio a {
    display: inline-block;
    color: #fff;
    background: #7ed217;
    text-decoration: none;
    padding: 15px;
    font-size: 1.6em;
    font-weight: 600;
    animation: bounce 2s infinite ease-out;
    position: relative;
    margin-top: 20px;
    border-radius: 10px;
  }

  .sub-container {
    padding: 10px 30px;
  }

  .container-cards {
    display: block;
  }

  .card {
    margin-bottom: 30px;
    width: 100%;
    height: 400px;
    background-color: #1c1c1c;
    font-size: .9em;
    color: #7ed217;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    box-shadow: 0 0 0 5px #ffffff80;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .card h1 {
    font-size: 1.6em;
  }

  .card p {
    font-size: 1.1em;
  }

  .projetos .box h2{
    font-size: 1em;
  }

  .contato-cont {
    display: block;
  }

  .contato-direita .whatsapp ul {
    display: block;
  }

  .contato-direita .whatsapp ul li a{
    width: 300px;
  }

  /* CONTATO PREENCHER */
  .form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: 850px;
    padding: 15px;
    position: relative;
    border-radius: 6px;
  }

  .form h3 {
    text-align: center;
    color: #7ed217;
    font-size: 1.8em;
    word-spacing: 5px;
  }

  .flex {
    display: block;
    gap: 10px;
  }

  .form label {
    position: relative;
    width: 100%;
  }

  .form label .input {
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    outline: 0;
    border: 1px solid #055fad;
    border-radius: 5px;
  }

  .form label span {
    position: relative;
    color: #7ed217;
    font-size: 1em;
    font-weight: 600;
    cursor: text;
    transition: 0.1s ease;
  }

  .form label .input:focus span {
    font-size: .2em;
    color: #7ed217;
    background: #fff;
    border-radius: 3px;
    padding: 2px;
    font-weight: 500;
  }

  .form label .input:valid+span {
    top: 5px;
    opacity: 0;
  }

  .input01 {
    min-width: 100%;
    max-width: 100%;
    min-height: 350px;
    max-height: 350px;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid #055fad;
    border-radius: 5px;
  }

  .form label .input01+span {
    position: absolute;
    left: 10px;
    top: 50px;
    color: #055fad;
    font-size: 0.9em;
    cursor: text;
    transition: 0.1s ease;
  }

  .form label .input01:placeholder-shown+span {
    top: 10px;
    font-size: 0.9em;
  }

  .form label .input01:focus+span,
  .form label .input01:valid+span {
    opacity: 0;
  }

  .fancy {
    background-color: #7ed217;
    border: 2px solid #055fad;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
    width: 100%;
    height: 50px;
    padding: 6px 30px;
    text-align: center;
    transition: 0.3s ease-in-out;
    font-size: 1.4em;
  }

  .fancy:hover {
    background: #7eaf42;
  }

  /* CONTATO PREENCHER */

  .clientes{
    padding: 10px 15px;
  }

  .clientes a{
    width: 33%;
  }

  .clientes a img{
    width: 100%;
    padding: 5px 10px;
    transition: ease-in .2s;
  }

  .footer {
    padding: 10px 20px;
  }

  .footer-section {
    flex: 1;
    width: 100%;
  }

  .footer-container {
    display: block;
    padding: 10px 20px;
  }

  .footer-section ul li a {
    padding: 0 15px;
  }


  .Btn {
    bottom: 70px;
    width: 60px;
    height: 60px;
  }

  .sign svg {
    width: 35px;
  }
}

@media (max-width: 450px) {
  .projetos .box h2{
    font-size: .8em;
  }

  .projetos .box p{
    font-size: .8em;
  }
}