* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  font-family: 'Calibri';
  background-color: #eee;
  user-select: none;
}

.header {
  /* border-left: solid 5px #55a569; */
  width: 100%;
  color: #222;
  font-size: 40px;
  margin-top: 15px;
  overflow: hidden;
  border-right: .15em solid rgb(0, 0, 0);
  white-space: nowrap;
  letter-spacing: .01em;
  animation:escrevendo-home 2.5s steps(35) both,
            cursor-home 0.8s steps(35)  infinite both;
  }
  
  /* animacao escrevendo o texto*/
  
  @keyframes escrevendo-home {
    from { width: 0}
    to {width: 100%}
  }
  
  /* animacao do cursor */
  
  @keyframes cursor-home {
  
    from, to { border-color: transparent end;}
    50% {border-color: #eee;}
  }

.page-container {
  padding: 0px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.page-main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
/* Navbar ------------------------------------------------------------------*/

.navbar {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8%;
  width: 100%;
  background-image: linear-gradient(35deg, rgb(17, 128, 50), rgb(17, 58, 22), rgb(17, 128, 50), rgb(17, 50, 50));
  background-size: 500% 500%;
  animation: cores 20s ease-in-out infinite; 
}

@keyframes cores {
  0% {background-position: 0% 75%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 75%;}
}

.logo {
  width: auto;
  height: 100%;
  margin: 0px 20px;
}

.nav-itens {
  width: 75%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0px 10px;
}

.nav-item {
  width:50%;
  text-align: center;
  border: solid 1px transparent;
  margin: auto, 50px;
  background-color:none;
  text-decoration: none;
  font-weight: bold;
  color: rgb(255, 255, 255);
  opacity: 0.5;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  border-radius: 10px;
}

.nav-item:hover {
  transition: all 0.6s ease-in-out;
  opacity: 1;
  color: black;
  background-color: #ddd;
  /* border: solid 0.1px; */
  border-radius: 8px;
}

.nav-item.active {
  opacity: 1;

}

/* nav mobile ---------------------------------------------------------*/

.mobile-menu{
  margin-right: 25px;
  display: none;
  cursor: pointer;
}

.mobile-menu div{
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 8px;
  transition: 0.3s;
}


@media (max-width: 1350px) {

body {
  overflow-x: auto;
}

.nav-itens{
  position: absolute;
  top: 9%;
  right: 0%;
  width: 50%;
  height: 40%;
  background: rgb(17, 125, 50);
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transform: translatey(-140%);
  transition: transform 0.3s ease-in;
  transition-property: opacity;
  transition-duration: 0.1s;
  /* margin-right: 10%; */
  border-radius: 10px;
  color:#eee
}

.nav-itens a{
  margin-left: 0;
  opacity: 0.5;
}

.mobile-menu{
  display: block;
}

.nav-itens.active {
  z-index: 1;
  transform: translatey(0%);
  transition-property: opacity;
  transition-duration: 2s;
  margin-right: 10%;
}

@keyframes navLinkFade {

  from {
    opacity: 1;
    transform: translateX(50px);
  }
  to{
    opacity: 0;
    transform: translateX(0);
  }
  
}

}

@media (max-width: 857px) {
  
  .header {
    display: none;
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}

/* ------------------------------------------------------------------- */

.page-scroll {
  width: 65%;
  height: 100%;
}

.form-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  height: 92%;
  
}

.form-card {
  width: 65%;
  height: 90%;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 2px 25px rgb(180, 221, 179), -2px -2px 50px rgb(26, 66, 15);
  border: transparent;
  border-radius: 8px;
}

/* ----------------accordions--------------------------------------------------------------- */

.accordion-item input {
  display:none;
}

.accordion-item label {
  border-radius: 8px;
  background-color: #eee;
  font-size: 40px;
  display: block;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  cursor: pointer;  
  color:rgb(11, 95, 56);
  box-shadow: 1px 1px rgb(104, 167, 138);
  padding: 5px 3px;
}

.accordion-content {
  background-color: #ddd;
  margin-bottom: 13px;
  border-radius: 8px;
  margin-left: 0px 5px;
  padding: 0px 4px;
  height: 0px;
  text-align: justify;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-in-out;
  -moz-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  -ms-transition: height 0.3s ease-in-out;
  transition: height  0.3s ease-in-out;
}

[id^=accordion]:checked ~ .accordion-content {
  height: 80px;
}


h1{
  font-family: 'Calibri';
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: none;
  font-size: 25px;
  color:#444;
  background-color: rgb(180, 221, 179);
  border-radius: 08px;
  height: 10%;
  box-shadow: 0px 0px 0.5em rgb(255, 255, 255);
  margin: 25px;
  text-align: center;
}

.botoes {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.button {
  font-family: 'Calibri';
  display: flex;
  justify-content: center;
  align-items: center;
  background-color:rgb(180, 221, 179);
  border: none;
  width: 60%;
  color: #444;
  font-size: 14px;
  border-radius: 10px;
  height: 50px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.5s;
}

.button:hover {
  color: white;
  background-color: rgb(17, 125, 50);
  text-shadow: 0px 0px 20px #ddd;
  font-size: 20px;
}

/* Whatsapp Button */
.whatsapp-button {
  align-self: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  color: white;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  animation: pulsando 1.6s ease-in-out infinite both;
}

/* animacao do botao whatsapp */

 @keyframes pulsando {
  from {
    background-color: #666;
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
 
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}


.wa-icon {
  color: white;
  font-size: 55px;
}

.whatsapp-button:hover {
  background-color: #11ad4b;
  text-shadow: 0px 0px 20px rgb(146, 146, 146);
  animation: none;
}

.ft-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 30px;
}

.ft-icon {
  font-size: 20px;
}

.dados {
  padding: 15px;
  margin-left: 7.5px;
  margin-right: 7.5px;
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
  color:black;
  font-size: 16px;
}

.dados input{
  margin-bottom: 5px;
  padding-left: 5px;
}

.dados label{
  margin-bottom: 5px;
  font-family: 'Calibri';
  font-size: 14px;
}

.obs {
  font-size: 10px;
}

.campo{
  border: solid 1px #eee;
  height: 35px;
  font-size: 14px;
  border-radius: 8px;
  font-family: 'Calibri';
}

.mensagem {
  font-family: 'Calibri';
  padding:3px;
  font-size: 14px;
  border-radius: 8px;
}

::placeholder {
  font-family:'Calibri';
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 12px;
}

/* footer */

.footer {
  font-family: 'Calibri';
  width: 100%;
  height: 5%;
  background-color: rgb(17, 125, 50);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eee;
  font-size: 12px;
  font-weight: bold;
}

