* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-size: 16px;
  color: #111;
}
p {
  line-height: 24px;
  margin-bottom: 14px;
}
body {
  overflow-x: hidden;
}
.container {
  width: 1140px;
  margin: 0 auto;
}
.img {
  display: block;
  width: 100%;
}
.btn {
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #31af36;
  padding: 10px 15px;
  max-width: 500px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 5px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.btn:hover {
  transform: scale(1.01);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 80px;
  align-items: center;
  padding: 0 80px;
}
.titulo {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 32px;
}
.sub {
  font-size: 18px;
  color: rgb(100, 100, 100);
  margin-bottom: 40px;
}
.titulo::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #fe8301;
  margin-top: 7px;
}

/* bairro */
.bairro,
.form {
  background: #fff;
}
.bairro {
  padding: 60px 20px;
}
.content_img {
  box-shadow: 4px 4px 8px rgba(17, 17, 17, 0.296),
    -4px -4px 8px rgba(17, 17, 17, 0.296);
  border-radius: 40px 0 40px 0;
  overflow: hidden;
}
.bairro .img {
  transform: scale(1.1);
  transition: 4s;
}
.bairro .img:hover {
  transform: scale(1);
}
.content .btn {
  margin-top: 60px;
}
.bairro ul li {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 20px;
}

/* imoveis */
.imoveis {
  background: #0b1d2d;
  padding: 60px 0;
}
.imoveis .itens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.imoveis * {
  color: #f2f2f2;
  text-align: center;
}
.imoveis .item_img {
  max-width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
}
.imoveis img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.7s;
}
.imoveis img:hover {
  transform: scale(1.1);
}
.nome {
  font-size: 32px;
  font-weight: 500;
  margin: 40px auto 10px auto;
  line-height: 40px;
}
.desc {
  font-size: 14px;
  margin-top: 10px;
  line-height: 21px;
}
.item {
  position: relative;
}
.item .btn {
  width: 100%;
  margin-top: 20px;
}
.imoveis .titulo::after {
  margin: 0 auto;
}
/* footer */
footer {
  background: #000;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;  
}
footer * {
  color: #f2f2f2;
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer a {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.apresentacao {
  background: #f2f2f2;
  padding: 60px 0;
}

.preco {
  color: #31af36;
  font-weight: 900;
  font-size: 32px;
}
.preco span {
  font-weight: 400;
}
.unidades {
  padding-top: 60px;
}

.fotos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.foto_ {
  flex: 1 1 300px;
  max-height: 400px;
}
.foto_ img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1140px) {
  .container {
    width: 90%;
  }
  .imoveis .itens {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  form {
    flex-direction: column;
    gap: 10px;
  }
  .btn_form {
    max-width: 100%;
  }
  .hero {
    height: auto;
    padding: 80px 0 120px 0;
  }
  .hero h1 {
    font-size: 28px;
    line-height: 34px;
  }
  .bairro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .content .btn {
    margin-top: 30px;
  }
  footer a {
    padding-top: 15px;
  }
}
@media (max-width: 769px) {
  .imoveis .itens {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .item {
    min-height: auto;
    margin: 0 auto;
    text-align: center;
  }
  .btns {
    position: static;
  }
  .imoveis .item_img {
    max-width: 300px;
    margin: 0 auto;
  }
  .grid {
    padding: 20px;
  }
  .modal img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  .modal {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }
  .bairro.unidades {
    padding: 40px 20px;
  }
}
@media (max-width: 426px) {
  .bairro {
    padding-bottom: 40px;
  }
  .logo {
    height: 45px;
  }
  .titulo {
    font-size: 18px;
    line-height: 24px;
  }
  footer * {
    font-size: 14px;
    line-height: 20px;
  }
  .modal {
    width: 80%;
  }
  .preco {
    font-size: 24px;
  }
  .modal img {
    width: 150px;
    height: 150px;
  }
}
