/* RESET */
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  box-sizing: border-box;
  border: none;
  outline: none;
}

::placeholder {
  color: #00253f;
  font-size: 14px;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

h2 {
  font-size: 1em;
}

b {
  font-weight: 700;
}

/* SOCIAL ICONS */
.social-icons {
  float: right;
}

.fa-whatsapp {
  margin-right: 5px;
}

fa-exchange-alt {
  margin: auto;
}

fa-phone {
  margin: auto;
}

/* PRINCIPAL */
.principal {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f3f3f3;
  width: 100%;
  height: auto;
}

.wrapper {
  width: 80%;
  display: flex;
}

/* PRIMEIRA SEÇÃO */
.primeira-secao {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url(images/bg-1.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: bottom;
  box-shadow: inset 0 0 0 2000px rgba(31, 104, 49, 0.65);
}

/* ATENDIMENTO */
.atendimento {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.atendimento img {
  max-width: 200px;
  margin-bottom: 100px;
}

.msg-atend h1 {
  padding: 5px;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

.msg-atend h2 {
  font-size: 23px;
  color: #fff;
  margin-bottom: 100px;
}

.msg-atend h3 {
  margin: auto;
  width: 60%;
  background-color: red;
  padding: 10px;
  font-size: 30px;
  color: #fff;
  margin-bottom: 100px;
}

.telefone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 213px;
}

.border-wrapper {
  border-top: 4px solid;
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, #d7bf6f, #9e7a47, #d7b76f);
  border-image-slice: 1;
}

.telefone h1 {
  margin-top: 8px;
  font-family: "Montserrat";
  font-size: 14px;
  color: #fff;
  background: none;
}

.telefone .numero {
  display: flex;
  align-items: flex-start;
  width: 210px;
  margin-bottom: 8px;
  text-align: center;
  justify-content: center;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 21px;
  color: #fff;
}

/* CONTATO */

.contato-border-wrapper {
  position: relative;
  margin: 50px 0 0 50px;
  display: inline-block;
}

.contato-border-wrapper::after {
  content: "";
  position: absolute;
  width: 85%;
  height: 85%;
  border: 10px solid lightgrey;
  left: 80px;
  top: -30px;
  z-index: 1;
  animation-name: transition;
  animation-duration: 2s;
}

.contato {
  position: relative;
  background-color: #00253f;
  width: 495px;
  padding: 20px 40px 40px 40px;
  margin-bottom: 70px;
  z-index: 2;
}

.contato h1 {
  color: #bc9e5c;
  font-size: 30px;
  font-family: "Playfair Display";
  line-height: 1.1em;
  margin-bottom: 5px;
}

.contato h2 {
  color: #fff;
  font-size: 14px;
  font-family: "Montserrat";
  margin-bottom: 5px;
}

.contato b {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  font-family: "Montserrat";
}

input[type="text"],
select {
  border-color: #cdcdce;
  border-width: 1px;
  border-radius: 15px;
  border-style: solid;
  width: 100%;
  /* Full width */
  padding: 12px 12px 12px 20px;
  /* Some padding */
  box-sizing: border-box;
  /* Make sure that padding and width stays in place */
  margin-top: 10px;
  /* Add a top margin */
  margin-bottom: 10px;
  /* Bottom margin */
  resize: vertical;
  /* Allow the user to vertically resize the textarea (not horizontally) */
}

textarea {
  width: 100%;
  /* Full width */
  height: 150px;
  padding: 12px;
  /* Some padding */
  box-sizing: border-box;
  /* Make sure that padding and width stays in place */
  margin-top: 6px;
  /* Add a top margin */
  margin-bottom: 6px;
  /* Bottom margin */
  resize: vertical;
  /* Allow the user to vertically resize the textarea (not horizontally) */
}

input[type="tel"] {
  border-color: #cdcdce;
  border-width: 1px;
  border-style: solid;
  border-radius: 15px;
  width: 100%;
  /* Full width */
  padding: 12px 12px 12px 20px;
  /* Some padding */
  box-sizing: border-box;
  /* Make sure that padding and width stays in place */
  margin-top: 10px;
  /* Add a top margin */
  margin-bottom: 10px;
  /* Bottom margin */
  resize: vertical;
  /* Allow the user to vertically resize the textarea (not horizontally) */
}

input[type="email"] {
  border-color: #cdcdce;
  border-width: 1px;
  border-style: solid;
  border-radius: 15px;
  width: 100%;
  /* Full width */
  padding: 12px 12px 12px 20px;
  /* Some padding */
  box-sizing: border-box;
  /* Make sure that padding and width stays in place */
  margin-top: 10px;
  /* Add a top margin */
  margin-bottom: 10px;
  /* Bottom margin */
  resize: vertical;
  /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type="submit"] {
  width: 100%;
  font-size: 19px;
  border-radius: 15px;
  background-color: red;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  /* Add a top margin */
  margin-bottom: 6px;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #a7a7a8;
  font-size: 15px;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #a7a7a8;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #a7a7a8;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

/* SEGUNDA SEÇÃO */
.segunda-secao {
  display: flex;
  justify-content: center;
  position: relative;
  height: 400px;
}

.segunda-texto {
  width: 60%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  padding-right: 7%;
}

.segunda-texto-wrapper {
  background-color: white;
  border-radius: 15px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e5e5;
}

.segunda-texto p {
  color: #3a393c;
  font-size: 14px;
  font-family: "Montserrat";
  font-weight: 300;
  margin: 30px;
  text-align: justify;
}

.segunda-imagem {
  display: flex;
  width: 40%;
  margin: 30px;
  flex-direction: column;
  align-items: flex-end;
}

.segunda-imagem img {
  height: 80%;
  width: auto;
  margin: auto;
}

/* TERCEIRA SEÇÃO */
.terceira-secao {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 4% 0 7% 0;
}

.terceira-texto1 {
  display: flex;
  padding-right: 50px;
  flex-direction: row;
  width: 40%;
  height: auto;
}

.terceira-texto2 {
  display: flex;
  padding-left: 50px;
  flex-direction: row;
  width: 40%;
}

.terceira-secao div p {
  padding-left: 25px;
  font-size: 15px;
  font-weight: 200;
  color: #3a393c;
}

/* QUARTA SEÇÃO */
.quarta-secao {
  display: flex;
  background-color: white;
  justify-content: center;
  align-content: center;
  position: relative;
  width: 100%;
}

.wrapper-quarta {
  width: 80%;
  padding: 75px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.quarta-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.quarta-texto h1 {
  font-family: "Montserrat";
  font-size: 18px;
  margin-top: 50px;
  color: #00253f;
}

.quarta-texto h2 {
  font-family: "Playfair";
  font-size: 40px;
  color: #00253f;
  margin-bottom: 50px;
}

.conteudo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.conteudo-border-wrapper {
  position: relative;
  display: inline-block;
}

.conteudo-border-wrapper::after {
  border: 4px solid;
  border-image: linear-gradient(90deg, #9e7a47, #d7bf6f, #9e7a47);
  border-image-slice: 1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -15px;
  top: -15px;
  z-index: 1;
}

.icones-terr,
.texto-terr {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.terrenos,
.grandes-terrenos,
.permutas {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Montserrat";
  color: #214f30;
  padding: 0 5%;
}

.terrenos .icone-per {
  position: relative;
  align-items: center;
  z-index: 2;
  border-radius: 50%;
}

.terrenos .icone-per img {
  border-radius: 50%;
}

.terrenos h1 {
  font-size: 19px;
  font-weight: 900;
  margin-top: 40px;
  margin-bottom: 20px;
}

.terrenos h2 {
  width: 210px;
  font-size: 14px;
  text-align: left;
  color: #44393c;
}

.grandes-terrenos .icone-per {
  position: relative;
  z-index: 2;
}

.grandes-terrenos .icone-per img {
  border-radius: 50%;
}

.grandes-terrenos h1 {
  font-size: 19px;
  font-weight: 900;
  margin-top: 40px;
  margin-bottom: 20px;
}

.grandes-terrenos h2 {
  width: 260px;
  font-size: 14px;
  text-align: left;
  color: #44393c;
}

.permutas .icone-per {
  position: relative;
  z-index: 2;
}

.permutas .icone-per img {
  border-radius: 50%;
}

.permutas h1 {
  font-size: 19px;
  font-weight: 900;
  margin-top: 40px;
  margin-bottom: 20px;
}

.permutas h2 {
  width: 260px;
  font-size: 14px;
  text-align: left;
  color: #44393c;
}

.fade {
  margin: 50px;
  padding: 50px;
  opacity: 1;
}

/* QUINTA SEÇÃO */
.quinta-secao {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  position: relative;
  width: 100%;
  background-color: #00253f;
}

.quinta-texto {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 20px;
}

.quinta-texto h1 {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 35px;
  margin-right: 15px;
}

.quinta-texto h2 {
  color: #bc9e5c;
  font-family: "Playfair Display";
  font-size: 35px;
}

.mapa {
  display: flex;
  justify-content: center;
  align-content: center;
  margin-bottom: 70px;
}

/* SEXTA SEÇÃO */
.sexta-secao {
  display: flex;
  justify-content: center;
  align-content: center;
  position: relative;
  width: 100%;
}

.wrapper-sexta {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}

.sexta-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 50%;
}

.sexta-texto h1 {
  color: #214f30;
  font-size: 38px;
  font-weight: 900;
  width: 100%;
}

.sexta-texto p {
  color: #3a393c;
  font-size: 19px;
  width: 100%;
}

.sexta-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.contato2 {
  position: relative;
  background-color: white;
  color: #a7a7a8;
  width: 495px;
  padding: 20px 30px 30px 30px;
  margin-bottom: 53px;
  margin-top: 53px;
}

.contato2 p {
  margin: 10px 0 30px 0;
  font-size: 75%;
}

.sexta-form h1 {
  text-align: center;
  color: #214f30;
  font-weight: 700;
  font-size: 24px;
  padding: 30px 0;
}

/* RODAPÉ */
.rodape {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #214f30;
  color: white;
  text-align: center;
}

.rodape-left {
  display: flex;
  justify-content: left;
  flex-direction: row;
  width: 100%;
  background-color: #214f30;
  color: white;
  text-align: center;
  margin: auto;
}

.rodape-right {
  display: flex;
  justify-content: right;
  width: 100%;
  background-color: #214f30;
  color: white;
  text-align: center;
}

.rodape h1 {
  padding: 0 20px 0 15%;
  font-size: 20px;
}

.rodape-left img {
  max-height: 25px;
  padding: 0 15px;
}

.rodape-right img {
  max-height: 50px;
  margin: 2% 15% 2% 0;
}

/* MOBILE */
@media only screen and (max-device-width: 480px) {
  .principal {
    justify-content: center;
  }

  .primeira-secao {
    padding-top: 100px;
  }

  .atendimento img {
    max-width: 200px;
    margin-bottom: 15%;
  }

  .msg-atend h1 {
    padding: 5px;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
  }

  .wrapper {
    width: 90%;
    display: flex;
    flex-direction: column;
  }

  .atendimento {
    width: 100%;
  }

  .contato-border-wrapper {
    width: 100%;
    margin-left: 0px;
  }

  .contato-border-wrapper::after {
    width: 97%;
    height: 87%;
    border: 5px solid lightgrey;
    left: 15px;
    top: -15px;
  }

  .contato {
    width: 100%;
  }

  .contato h1 {
    font-size: 35px;
  }

  .contato h2,
  .contato b {
    font-size: 12px;
  }

  .segunda-secao {
    height: auto;
    padding-top: 10%;
  }

  .segunda-texto {
    width: 100%;
    padding: 0;
  }

  .segunda-texto p {
    text-align: left;
  }

  .segunda-imagem {
    display: flex;
    width: 80%;
    margin: 30px;
    flex-direction: column;
    align-items: flex-end;
  }

  .slideshow {
    display: none;
  }

  .terceira-secao {
    height: auto;
    margin: 50px 0;
    flex-direction: column;
  }

  .terceira-texto1 {
    margin: auto;
    padding: 0;
    width: 80%;
  }

  .terceira-texto2 {
    margin: auto;
    padding: 0;
    padding-top: 10%;
    width: 80%;
  }

  .quarta-secao {
    height: auto;
  }

  .wrapper-quarta {
    width: 90%;
    padding-bottom: 0;
  }

  .conteudo {
    flex-direction: column;
  }

  .conteudo-border-wrapper::after {
    border: 3px solid;
    border-image: linear-gradient(90deg, #9e7a47, #d7bf6f, #9e7a47);
    border-image-slice: 1;
    content: "";
    position: absolute;
    width: 98%;
    height: 98%;
    left: -10px;
    top: -10px;
    z-index: 1;
  }

  .quarta-texto h2 {
    text-align: center;
  }

  .terrenos,
  .grandes-terrenos,
  .permutas {
    width: 80%;
    margin: auto;
    padding-bottom: 10%;
  }

  .terrenos h2,
  .grandes-terrenos h2,
  .permutas h2 {
    width: 100%;
  }

  .quinta-secao {
    height: auto;
    padding: 0 5%;
  }

  .quinta-texto {
    flex-direction: column;
  }

  .wrapper-sexta {
    width: 90%;
    display: flex;
    flex-direction: column;
    padding: 10% 0;
  }

  .sexta-texto {
    padding: 0;
    padding-top: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .sexta-texto h1 {
    width: 100%;
  }

  .sexta-botoes {
    justify-content: space-between;
  }

  .botoes {
    margin: 0 0 0 3px;
  }

  .sexta-texto,
  .sexta-form {
    width: 100%;
  }

  .rodape {
    display: flex;
    flex-direction: column;
    padding-bottom: 10%;
  }

  .rodape h1 {
    padding: 0 5% 0 5%;
    font-size: 20px;
  }

  .rodape-left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 30%;
    padding: 10% 0;
  }

  .rodape-left img {
    width: auto;
    height: auto;
    padding: 0 10px
  }

  .rodape-right img {
    max-height: 50px;
    margin: auto;
  }

  /* SCREENS TILL 400PX */

  @media only screen and (max-device-width: 400px) {
    .botoes {
      margin: 0 0 0 3px;
    }

    .botao-fone,
    .botoes {
      font-size: 12px;
    }
  }
}