/* --> Global <-- */
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  color: black;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}

/* --> Defaults <-- */
.container {
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 1240px) {
  .container {
    margin: 0 24px;
  }
}

.container2 {
  max-width: 1110px;
  margin: 0 auto;
}

h2 {
  font-size: 35px;
  font-weight: 500;
}

.btnDefault {
  padding: 16px 10px;
  background-color: #01dd23;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  border-radius: 6px;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
}

.btnDefault:hover {
  opacity: 0.8;
}

.btnDefault p {
  color: white;
  text-transform: uppercase;
  padding-left: 16px;
}

.blueLine {
  width: 127px;
  height: 4px;
  background-color: #00a6ee;
  border-radius: 2px;
  margin: 0 auto;
}

/* --> Header <-- */
header {
  padding-top: 17px;
  text-align: center;
}

header .logo {
  width: 470px;
  height: 142px;
}

@media (max-width: 1120px) {
  header .logo {
    width: 270px;
    height: 92px;
  }
}

header .container {
  position: relative;
}

header .menuSocial {
  display: flex;
  align-items: center;
  position: absolute;
  top: 39px;
  right: 0;
}

@media (max-width: 1120px) {
  header .menuSocial {
    display: none;
  }
}

header .menuSocial a {
  margin-right: 8px;
}

header .menuSocial .btn {
  display: flex;
  align-items: center;
  background-color: #00a6ee;
  text-transform: uppercase;
  color: white;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 6px;
  margin-left: 15px;
  margin-right: 0;
  transition: 0.5 ease-in-out;
}

header .menuSocial .btn:hover {
  opacity: 0.9;
}

header .menuSocial .btn img {
  padding-right: 10px;
}

/* --> Main <-- */
main {
  background-color: #00a6ee;
}

main .container {
  padding: 110px 0 78px 90px;
  position: relative;
}

@media (max-width: 1120px) {
  main .container {
    padding: 110px 0 78px 0;
    position: relative;
  }
}

main p {
  color: white;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 24px;
  padding-bottom: 6px;
  max-width: 440px;
}

@media (max-width: 1120px) {
  main p {
    margin: 0 auto;
    text-align: center;
  }
}

main h1 {
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  padding-bottom: 30px;
  max-width: 559px;
}

@media (max-width: 1120px) {
  main h1 {
    margin: 0 auto;
    text-align: center;
  }
}

main .btns {
  display: flex;
}

@media (max-width: 1120px) {
  main .btns {
    justify-content: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  main .btns {
    flex-direction: column;
  }
}

main .btns a {
  padding: 14px 23px;
  text-transform: uppercase;
  color: white;
  border-radius: 6px;
  transition: 0.5 ease-in-out;
}

main .btns a:hover {
  opacity: 0.9;
}

main .btns .btn1 {
  background-color: #09c66b;
  margin-right: 20px;
}

@media (max-width: 640px) {
  main .btns .btn1 {
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }
}

main .btns .btn2 {
  border: solid 1px white;
}

@media (max-width: 640px) {
  main .btns .btn2 {
    text-align: center;
  }
}

main .form1 {
  max-width: 385px;
  padding: 20px;
  background-color: white;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 7px 11px 23px -12px #707070;
}

@media (max-width: 1120px) {
  main .form1 {
    max-width: 100%;
  }
}

@media (max-width: 1120px) {
  main .form1 {
    position: relative;
  }
}

.form1 h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 8px;
  font-size: 26px;
}

.form1 input {
  padding: 23px 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  width: 100%;
  border: solid 1px #efefef;
  margin-bottom: 10px;
}

.form1 input::placeholder {
  color: #bcbcbc;
}

.form1 textarea {
  padding: 23px 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  width: 100%;
  border: solid 1px #efefef;
  margin-bottom: 10px;
  resize: none;
}

.form1 textarea::placeholder {
  color: #bcbcbc;
}

.form1 .g-recaptcha {
  display: flex;
  justify-content: space-around;
  padding-bottom: 10px;
}

.form1 button {
  padding: 26px 0;
  width: 100%;
  color: white;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background-color: #09c66b;
  transition: 0.5 ease-in-out;
  font-family: "Barlow", sans-serif;
  font-weight: 900;
}

.form1 button:hover {
  opacity: 0.9;
}

/* --> Clientes <-- */
.clientes {
  padding: 126px 0 0;
}

.clientes h2 {
  text-align: center;
  padding-top: 14px;
}

.clientesBlock {
  padding: 31px 0 112px;
  display: grid;
  grid-gap: 15px 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 1174px) {
  .clientesBlock {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 880px) {
  .clientesBlock {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 578px) {
  .clientesBlock {
    grid-template-columns: 1fr;
  }
}

.clientesItem {
  width: 270px;
  height: 150px;
  box-shadow: 1px 0px 26px 1px #f0f0f0;
  text-align: center;
  align-content: center;
  align-items: center;
  justify-content: center;
  display: flex;
}

@media (max-width: 880px) {
  .clientesItem {
    margin: 0 auto;
  }
}

/* --> Block1 <-- */
.block1 {
  padding-bottom: 120px;
}

@media (max-width: 594px) {
  .block1 {
    padding: 0 24px 120px;
  }
}

.block1 h2 {
  text-align: center;
  max-width: 562px;
  margin: 0 auto;
  padding: 27px 0 9px;
}

.block1 .text {
  text-align: center;
  max-width: 608px;
  margin: 0 auto;
  color: #575757;
  padding-bottom: 55px;
}

/* --> Serviços <-- */
.servicos {
  padding-bottom: 55px;
}

@media (max-width: 1185px) {
  .servicos {
    padding: 0 24px 55px;
  }
}

.servicos .container2 {
  padding-bottom: 60px;
  display: grid;
  grid-gap: 35px 30px;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 951px) {
  .servicos .container2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 590px) {
  .servicos .container2 {
    grid-template-columns: 1fr;
  }
}

.servicos .container2 .servicoItem {
  padding: 20px 18px 28px;
  box-shadow: 1px 0px 26px 1px #f0f0f0;
}

.servicos .container2 .servicoItem img {
  width: 100%;
}

.servicos .container2 .servicoItem .text {
  text-align: center;
  font-weight: 500;
  color: #000003;
  font-size: 20px;
  padding-top: 33px;
}

/* --> Sanitização <-- */
.sanitizacao {
  background-color: #f8f8f8;
  padding: 30px 0 103px;
}

.sanitizacao .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1193px) {
  .sanitizacao .container {
    flex-direction: column;
  }
}

.sanitizacao .blueLine {
  margin: 15px 0 19px 0;
}

.sanitizacao .text {
  padding-bottom: 15px;
  font-size: 14px;
  color: #575757;
  width: 588px;
  font-size: 20px;
}

@media (max-width: 659px) {
  .sanitizacao .text {
    width: 100%;
  }
}

@media (max-width: 1193px) {
  .sanitizacao .imgs {
    padding-top: 20px;
  }
}

.sanitizacao .imgs img {
  width: 556px;
}

@media (max-width: 596px) {
  .sanitizacao .imgs img {
    width: 100%;
  }
}

.sanitizacao .imgs .imgsB2 {
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 596px) {
  .sanitizacao .imgs .imgsB2 {
    flex-direction: column;
  }
}

.sanitizacao .imgs .imgsB2 img {
  width: 275px;
}

@media (max-width: 596px) {
  .sanitizacao .imgs .imgsB2 img {
    width: 100%;
    padding-bottom: 23px;
  }
}

.sanitizacao .btnDefault img {
  width: 29px;
}

/* --> À Lenha Lanches  <-- */
.aLenhaLanches {
  padding: 48px 0 115px;
  border-top: solid 20px #00a6ee;
}

@media (max-width: 1173) {
  .aLenhaLanches {
    padding: 48px 24px 115px;
  }
}

.aLenhaLanches h2 {
  text-align: center;
  padding-bottom: 21px;
}

.aLenhaLanchesBlock {
  display: flex;
  justify-content: space-between;
  padding-top: 70px;
  align-items: center;
}

@media (max-width: 1136px) {
  .aLenhaLanchesBlock {
    flex-direction: column;
    padding: 70px 24px 0;
  }
}

.aLenhaLanchesBlock .mainImg {
  width: 100%;
  height: 407px;
}

@media (max-width: 1136px) {
  .aLenhaLanchesBlock .mainImg {
    max-width: 770px;
  }
}

@media (max-width: 522px) {
  .aLenhaLanchesBlock .mainImg {
    height: 250px;
  }
}

.aLenhaLanchesBlock .info {
  padding-left: 73px;
}

@media (max-width: 1136px) {
  .aLenhaLanchesBlock .info {
    padding-left: 0px;
    padding-top: 20px;
  }
}

.aLenhaLanchesBlock .info .text {
  font-size: 20px;
  padding-bottom: 20px;
  font-weight: 400;
  color: #575757;
}

.aLenhaLanchesBlock .info .blockImgs {
  display: flex;
  padding-bottom: 71px;
}

@media (max-width: 1136px) {
  .aLenhaLanchesBlock .info .blockImgs {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .aLenhaLanchesBlock .info .blockImgs {
    flex-direction: column;
  }
}

.aLenhaLanchesBlock .info .blockImgs img {
  max-width: 140px;
  padding-right: 11px;
}

@media (max-width: 480px) {
  .aLenhaLanchesBlock .info .blockImgs img {
    max-width: 100%;
    padding: 20px 0;
    height: 250px;
  }
}

.aLenhaLanchesBlock .btnDefault {
  margin: 0;
}

@media (max-width: 1136px) {
  .aLenhaLanchesBlock .btnDefault {
    margin: 0 auto;
  }
}

.aLenhaLanchesBlock .btnDefault img {
  width: 29px;
}

/* --> Map <-- */
.map {
  background-image: url("../src/bg-map.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}

@media (max-width: 712px) {
  .map {
    padding: 100px 24px;
  }
}

.map h2 {
  font-size: 45px;
  color: white;
  text-align: center;
  padding-bottom: 10px;
}

.map .text {
  color: white;
  font-size: 30px;
  text-align: center;
  padding-bottom: 49px;
  font-weight: 400;
}

/* --> Fale com a Lava Show <-- */
.faleComALavaShow {
  display: flex;
  flex-direction: column;
  background-color: #00a6ee;
  padding: 84px 0;
}

.faleComALavaShow .blueLine {
  background-color: white;
}

.faleComALavaShow h2 {
  color: white;
  font-weight: 400;
  text-align: center;
  padding-bottom: 15px;
}

.faleComALavaShow .miniLogo {
  border: solid 6px #00a6ee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-content: center;
  width: 132px;
  height: 132px;
  align-items: center;
  margin: 0 auto;
  background-color: white;
  margin-top: 40px;
  margin-bottom: -66px;
  position: relative;
  z-index: 2;
}

.faleComALavaShow .info {
  padding: 97px 36px 24px;
  background-color: #fff;
  border-radius: 8px;
}

.faleComALavaShow .info .text {
  color: #4e4e4e;
  text-align: center;
  padding-bottom: 10px;
  font-weight: 400;
}

.faleComALavaShow .info .btnDefault {
  padding: 26px 10px;
  margin-top: 21px;
  font-weight: bold;
  font-size: 14px;
}

.faleComALavaShow .info .btnDefault p {
  padding-left: 0;
}

/* --> Contact <-- */
.contact {
  background-color: #00a6ee;
  padding: 63px 0 43px;
  border-top: solid 2px white;
}

.contact .container {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 745px) {
  .contact .container {
    flex-direction: column;
  }
}

.contact .title {
  font-size: 35px;
  padding-bottom: 24px;
  color: white;
}

.contact .subtitle {
  font-size: 25px;
  padding-bottom: 4px;
  color: white;
}

.contact p {
  color: white;
  padding-bottom: 24px;
  max-width: 387px;
}

@media (max-width: 745px) {
  .contact p {
    max-width: 100%;
  }
}

.contact img {
  width: 29px;
  height: 29px;
}

.contact a {
  margin-right: 13px;
}

.contact .social {
  display: flex;
  align-items: center;
}

.contact .contactBtn {
  display: flex;
  align-items: center;
  width: 196px;
  padding: 12px 0;
  text-transform: uppercase;
  border: solid 2px white;
  justify-content: center;
  border-radius: 8px;
  transition: 0.3 ease-in-out;
  color: white;
}

@media (max-width: 745px) {
  .contact .contactBtn {
    width: 100%;
  }
}

.contact .contactBtn:hover {
  opacity: 0.8;
}

.contact .contactBtn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.contact form {
  width: 435px;
  padding-left: 20px;
}

@media (max-width: 745px) {
  .contact form {
    width: 100%;
    padding: 50px 0 0;
  }
}

.contact form h2 {
  color: white;
  padding-bottom: 20px;
  font-size: 25px;
}

.contact form label {
  color: white;
}

.contact form input {
  border: none;
  width: 100%;
  border: solid 1px white;
  margin: 6px 0;
  padding: 14px;
  background-color: transparent;
  color: white;
}

.contact textarea {
  border: none;
  resize: none;
  width: 100%;
  border: solid 1px white;
  margin: 6px 0;
  padding: 14px;
  background-color: #00a6ee;
}

.contact form button {
  width: 100%;
  border: none;
  cursor: pointer;
  background-color: #01dd23;
  color: white;
  padding: 18px 0;
  transition: 0.3 ease-in-out;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
}

.contact form button:hover {
  opacity: 0.9;
}

/* --> Footer <-- */
footer {
  background-color: #00a6ee;
  padding: 26px 0;
  border-top: solid 2px white;
}

footer p {
  color: white;
  text-align: center;
}

footer .copyrights {
  text-transform: uppercase;
}
