@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap");
body {
  background: #f4f2e8;
  font-family: "Karla", sans-serif;
}

.show-mob {
  display: none;
}

a {
  text-decoration: none;
}

p {
  font-family: "Karla", sans-serif;
  font-weight: 400;
  font-size: 18px;
}

h2 {
  font-family: "Karla", sans-serif;
  font-weight: 400;
  font-size: 35px;
  color: #fff;
  margin: 30px 0;
  display: block;
}
h2 span {
  color: #FFF8D4;
}

.subtitulo {
  color: #f4f2e8;
  font-size: 14px;
  padding: 10px 10px 10px 13px;
  width: fit-content;
  font-family: "Karla", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  border: 1px solid #f4f2e8;
  border-top: none;
  border-right: none;
}

::selection {
  background: #A3B087;
  color: #f4f2e8;
}

.container {
  max-width: 1210px;
  margin: 0 auto;
  width: auto;
  padding: 0 20px;
}

.botao {
  display: block;
  margin: 0 auto;
  padding: 14px 20px;
  font-family: "Karla", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #f4f2e8;
  background: #A3B087;
  position: relative;
  width: fit-content;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 8px;
  overflow: hidden;
}
.botao:hover {
  background: rgba(255, 255, 255, 0);
}
.botao::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(45deg, #435663 20%, #313647 70%);
  z-index: -1;
  width: 0%;
  transition: all 0.4s;
}
.botao:hover::before {
  width: 100%;
}

header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 20px;
  top: 20px;
  z-index: 5;
  width: 100%;
  box-sizing: border-box;
}
header .container {
  max-width: 1210px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 17px 20px;
  background: #313647;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  list-style: none;
}
header nav a {
  font-family: "Karla", sans-serif;
  color: #f4f2e8;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  padding: 5px 5px;
  transition: all 0.5s;
  display: block;
  position: relative;
}
header nav a::after {
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  background-image: linear-gradient(15deg, #fff 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.5s;
}
header nav a:hover {
  color: #fff;
}
header nav a:hover::after {
  width: 100%;
}

#inicio {
  min-height: 55vh;
  height: 100%;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#inicio h2 {
  font-family: "Karla", sans-serif;
  font-weight: 500;
  font-size: 23px;
  color: #313647;
}
#inicio h1 {
  font-family: "Karla", sans-serif;
  font-weight: 600;
  font-size: 90px;
  color: #A3B087;
  margin: 2px auto 8px auto;
}
#inicio hr {
  height: 0.7px;
  background: #435663;
  width: 100%;
  max-width: 80px;
  margin: 20px auto;
  border: 0;
}

#sobremim {
  scroll-margin-top: 100px;
}

.sobre {
  padding: 90px 0;
  background: #435663;
}
.sobre .info {
  display: flex;
  align-items: center;
  gap: 50px;
}
.sobre .info img {
  border-radius: 12px;
  max-width: 400px;
  height: 370px;
  object-fit: cover;
  object-position: center;
}
.sobre .info p {
  font-family: "Karla", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  max-width: 600px;
}

#projetos {
  scroll-margin-top: 100px;
}

.projetos {
  padding: 70px 0;
}
.projetos h3 {
  color: #313647;
  border-color: #313647;
  margin: 0 auto;
}
.projetos .grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}
.projetos .grid a {
  background: #435663;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.5s;
}
.projetos .grid a:hover {
  background: #313647;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.projetos .grid a:hover .box-img img {
  transform: scale(1.05);
}
.projetos .grid a .box-img {
  width: 100%;
  height: 160px;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 10px;
}
.projetos .grid a .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s;
  border-radius: 7px;
}
.projetos .grid a .data {
  color: #f4f2e8;
  font-size: 10px;
  opacity: 0.7;
  text-transform: uppercase;
}
.projetos .grid a h4 {
  color: #f4f2e8;
  font-family: "Karla", sans-serif;
  font-size: 20px;
  margin: 10px 0;
}
.projetos .grid a .descricao {
  color: #f4f2e8;
  font-size: 14px;
  line-height: 130%;
}

#contato {
  scroll-margin-top: 100px;
}

.contato {
  margin-bottom: 60px;
}
.contato .box {
  background: #313647;
  padding: 60px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.contato .box .left {
  flex: 0 0 30%;
  align-self: center;
}
.contato .box .left p.descricao {
  color: #f4f2e8;
  font-family: "Karla", sans-serif;
  font-size: 14px;
  margin: 40px 0;
  text-transform: uppercase;
}
.contato .box .left .icones {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contato .box .left .icones a {
  border: 1px solid #f4f2e8;
  border-radius: 100px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.contato .box .left .icones a:hover {
  background: #f4f2e8;
}
.contato .box .left .icones a path {
  transition: all 0.5s;
}
.contato .box .left .icones a:hover path {
  fill: #313647;
}
.contato .box .linha {
  width: 1px;
  background: #f4f2e8;
  opacity: 0.2;
}
.contato .box form {
  flex: 1;
}
.contato .box form input,
.contato .box form textarea {
  background: #fff;
  padding: 15px 10px;
  border-radius: 5px;
  border: 0;
  width: stretch;
  font-family: "Karla", sans-serif;
  margin-bottom: 10px;
}
.contato .box form input::placeholder,
.contato .box form textarea::placeholder {
  color: #435663;
  font-family: "Karla", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}
.contato .box form textarea {
  height: 90px;
}
.contato .box form .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}
.contato .box form .bottom .checkbox {
  display: flex;
  align-items: center;
  opacity: 0.8;
}
.contato .box form .bottom .checkbox input {
  display: none;
}
.contato .box form .bottom .checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  margin-right: 14px;
}
.contato .box form .bottom .checkbox input:checked + .checkmark {
  background-color: rgba(255, 255, 255, 0);
  border-color: #fff;
}
.contato .box form .bottom .checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contato .box form .bottom .checkbox:hover .checkmark {
  border-color: rgb(229.5, 229.5, 229.5);
}
.contato .box form .bottom .checkbox p {
  font-family: "Karla", sans-serif;
  font-size: 13px;
  color: #fff;
  line-height: 120%;
}
.contato .box form .bottom .checkbox a {
  color: #fff;
  text-decoration: underline;
  display: block;
}
.contato .box form .bottom .checkbox a:hover {
  text-decoration: none;
}
.contato .box form .bottom input[type=submit] {
  width: fit-content;
  background: rgba(255, 255, 255, 0);
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 20px;
  transition: all 0.5s;
  cursor: pointer;
  font-weight: 500;
}
.contato .box form .bottom input[type=submit]:hover {
  background: #fff;
  color: #435663;
}

footer {
  background-color: #435663;
  padding: 15px 0;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
footer .container p {
  color: #fff;
  font-size: 15px;
}
footer .container a {
  color: #fff;
  text-decoration: underline;
  transition: all 0.5s;
}
footer .container a:hover {
  opacity: 0.7;
}
footer .icon-wpp {
  background: #38b138;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transition: all 0.5s;
  position: fixed;
  z-index: 3;
  right: 20px;
  bottom: 20px;
}
footer .icon-wpp:hover {
  transform: scale(1.05);
}
.default {
  min-height: calc(100vh - 46px);
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.default h1 {
font-family: "Karla", sans-serif;
    font-weight: 900;
    letter-spacing: -14px;
    font-size: 200px;
    color: #313647;
    text-align: center;
    line-height: 70%;
    margin: 0;
}

.default.obrigado h1 {
line-height: 110%;
font-size: 150px;
}

.default h1 span {
  color: #A3B087;
}

.default p {
font-family: "Karla", sans-serif;
    font-weight: 400;
    font-size: 19px;
    color: #435663;
    text-align: center;
    max-width: 500px;
    margin: 30px auto;
}

.politicaprivacidade {
  padding: 120px 0;
}

.politicaprivacidade h1 {
  font-family: "Karla", sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #435663;
    text-transform: uppercase;
    margin: 30px 0;
    display: block;
}

.politicaprivacidade h2 {
    font-family: "Karla", sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #435663;
    margin: 30px 0 20px 0;
    display: block;
}

.politicaprivacidade p {
  font-family: "Karla", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #313647;
}

.politicaprivacidade .botao {
  margin: 50px 0 0 0;
}

@media (max-width: 991px) {
  .show-desk {
    display: none;
  }
  .show-mob {
    display: block;
  }
  .politicaprivacidade h1 {
    font-size: 30px;
  }
  .politicaprivacidade h2 {
    font-size: 25px;
  }
  h2 {
    font-size: 30px;
    line-height: 100%;
    margin: 24px 0;
  }
  header {
    top: 15px;
  }
  header .container {
    padding: 15px 20px;
  }
  header .logo-fb {
    width: 130px;
  }
  header nav {
    position: absolute;
    right: -100%;
    top: -15px;
    min-height: 100vh;
    padding: 40px 25px;
    width: 90vw;
    background-color: #313647;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
  }
  header nav.active {
    right: 0;
  }
  header nav .logo-fb {
    margin: 0 auto 40px auto;
  }
  header nav .icon-close {
    position: absolute;
    right: 39px;
    top: 30px;
    transition: all 0.5s;
  }
  header nav ul {
    flex-direction: column;
    gap: 17px;
  }
  #inicio {
    min-height: 65vh;
  }
  #inicio h1 {
    font-size: 39px;
  }
  #inicio h2 {
    line-height: 120%;
  }
  .sobre {
    padding: 60px 0;
  }
  .sobre .info {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .sobre .info img {
    width: 100%;
    height: 350px;
  }
  .projetos .grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 35px;
  }
  .contato .subtitulo {
    margin: 0 auto;
  }
  .contato .box {
    padding: 40px 20px;
    flex-direction: column;
    gap: 30px;
  }
  .contato .box .left {
    flex: auto;
    width: 100%;
  }
  .contato .box .left p.descricao {
    line-height: 110%;
    margin: 25px auto;
    text-align: center;
  }
  .contato .box .left .icones {
    justify-content: center;
  }
  .contato .box form .bottom {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .contato .box form .bottom input[type=submit] {
    width: 100%;
  }
  footer {
    text-align: center;
  }
  footer .container {
    flex-direction: column;
    gap: 10px;
  }

  .default {
    min-height: calc(100vh - 71px);
  }

  .default h1 {
    font-size: 60px;
    letter-spacing: -7px;
  }

  .default.obrigado h1 {
line-height: 110%;
font-size: 60px;
}

  .default p {
    max-width: 250px;
}
      .default.obrigado p {
        max-width: 350px;
    }
}

/*# sourceMappingURL=style.css.map */
