@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&family=Outfit:wght@100..900&display=swap");
html {
  scroll-behavior: smooth !important;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  width: 100dvw;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

img {
  max-width: 100%;
}

svg {
  max-width: 100%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

#header {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10002;
}
#header .container-fluid {
  position: relative;
  display: flex;
  padding-left: 20px;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #header .container-fluid {
    padding-left: 10px;
  }
}
#header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  #header .logo {
    gap: 0px;
  }
}
#header .logo .icon {
  margin-right: 10px;
}
#header .logo .icon svg {
  height: 50px;
}
@media screen and (max-width: 768px) {
  #header .logo .icon svg {
    height: 40px;
  }
}
#header .logo .texto {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  #header .logo .texto {
    flex-direction: column;
    gap: 3px;
  }
}
#header .logo .texto h1 {
  font-family: "Oswald", sans-serif;
  color: #b99755;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  #header .logo .texto h1 {
    font-size: 18px;
    line-height: 19px;
  }
}
#header .logo .texto p {
  color: #000;
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  #header .logo .texto p {
    font-size: 18px;
    line-height: 19px;
  }
}
#header .contato {
  display: flex;
  padding: 10px 15px;
  align-items: center;
  gap: 10px;
  background: #b99755;
  min-height: 50px;
  color: #fff;
  text-decoration: none;
}
#header .contato .icon {
  display: flex;
  width: 50px;
  height: 50px;
  padding: 3px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 70px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #header .contato .icon {
    height: 40px;
    width: 40px;
  }
}
#header .contato .icon svg {
  height: 35px;
}
@media screen and (max-width: 768px) {
  #header .contato .icon svg {
    height: 25px;
  }
}
@media screen and (max-width: 768px) {
  #header .contato .texto {
    display: none;
  }
}
#header .contato span {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#header .contato p {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

#conteudo {
  position: relative;
  z-index: 12;
}
#conteudo .hero {
  padding: 160px 10px 80px 10px;
  background: #f7f4f1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #conteudo .hero {
    padding: 140px 10px 40px 10px;
  }
}
#conteudo .hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  #conteudo .hero .container {
    flex-direction: column;
    gap: 0px;
  }
}
#conteudo .hero .titulo h2 {
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}
#conteudo .hero .titulo h2.destaque {
  color: #b99755;
}
@media screen and (max-width: 768px) {
  #conteudo .hero .titulo h2 {
    font-size: 32px;
    text-align: center;
  }
}
#conteudo .hero h4 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #conteudo .hero h4 {
    font-size: 20px;
    text-align: center;
  }
}
#conteudo #imoveis {
  background: #fff;
  padding: 80px 10px;
}
@media screen and (max-width: 768px) {
  #conteudo #imoveis {
    padding: 40px 10px;
  }
}
#conteudo #imoveis .container {
  display: grid;
  grid-template-columns: repeat(1fr);
  gap: 100px;
}
@media screen and (max-width: 768px) {
  #conteudo #imoveis .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
#conteudo #imoveis .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
#conteudo #imoveis .item img {
  border-radius: 8px;
}
#conteudo #imoveis .item h4 {
  color: #000;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 10px;
}
#conteudo #imoveis .item p {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  line-height: 1.4;
}
#conteudo #imoveis .item a {
  display: flex;
  padding: 7px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 2px solid #b99755;
  color: #b99755;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
#conteudo #imoveis .item a:hover {
  background: #b99755;
  color: #fff;
}
#conteudo #ImovelDomPedro,
#conteudo #ImovelCafe {
  padding: 80px 10px;
}
@media screen and (max-width: 768px) {
  #conteudo #ImovelDomPedro,
  #conteudo #ImovelCafe {
    padding: 40px 10px;
  }
}
#conteudo #ImovelDomPedro h2,
#conteudo #ImovelCafe h2 {
  color: #b99755;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #conteudo #ImovelDomPedro h2,
  #conteudo #ImovelCafe h2 {
    font-size: 32px;
    line-height: 34px;
  }
}
#conteudo #ImovelDomPedro h4,
#conteudo #ImovelCafe h4 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
  margin-top: 30px;
}
#conteudo #ImovelDomPedro p,
#conteudo #ImovelCafe p {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
}
#conteudo #ImovelDomPedro .resumo,
#conteudo #ImovelCafe .resumo {
  margin: 30px 0;
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #conteudo #ImovelDomPedro .resumo,
  #conteudo #ImovelCafe .resumo {
    grid-template-columns: 1fr;
    margin: 10px 0;
  }
}
#conteudo #ImovelDomPedro .resumo .item,
#conteudo #ImovelCafe .resumo .item {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #conteudo #ImovelDomPedro .resumo .item,
  #conteudo #ImovelCafe .resumo .item {
    padding: 20px 0;
  }
}
#conteudo #ImovelDomPedro .resumo .item h4,
#conteudo #ImovelCafe .resumo .item h4 {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 5px;
}
#conteudo #ImovelDomPedro .resumo .item h5,
#conteudo #ImovelCafe .resumo .item h5 {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
#conteudo #ImovelDomPedro .resumo .item p,
#conteudo #ImovelCafe .resumo .item p {
  color: #333333;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}
#conteudo #ImovelDomPedro .resumo .item a,
#conteudo #ImovelCafe .resumo .item a {
  color: #b99755;
  text-decoration: none;
}
#conteudo #ImovelDomPedro .resumo .locar,
#conteudo #ImovelCafe .resumo .locar {
  border-left: 1px solid #b99755;
  border-right: 1px solid #b99755;
}
@media screen and (max-width: 768px) {
  #conteudo #ImovelDomPedro .resumo .locar,
  #conteudo #ImovelCafe .resumo .locar {
    border-left: none;
    border-right: none;
    border-top: 1px solid #b99755;
    border-bottom: 1px solid #b99755;
  }
}
#conteudo #ImovelDomPedro {
  background: #f7f4f1;
}
#conteudo #ImovelCafe {
  background: #fff;
  padding: 40px 10px;
}
@media screen and (max-width: 768px) {
  #conteudo #ImovelCafe {
    padding: 20px 10px;
  }
}
#conteudo #ImovelCafe .espacos {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 768px) {
  #conteudo #ImovelCafe .espacos {
    grid-template-columns: 1fr 1fr;
  }
}
#conteudo #ImovelCafe .espacos .item {
  display: flex;
  border-radius: 8px;
  display: flex;
  padding: 10px 15px;
  flex: 1 0 0;
  background: #f7f4f1;
}
#conteudo #ImovelCafe .espacos .item h4 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#conteudo #ImovelCafe .espacos .item p {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
#conteudo #ImovelCafe a {
  color: #b99755;
  text-decoration: none;
}

#rodape {
  background: #b99755;
  color: #fff;
}
#rodape .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
}
@media screen and (max-width: 768px) {
  #rodape .container {
    flex-direction: column;
    gap: 20px;
  }
}
#rodape .links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.roller {
  height: 60px;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .roller {
    justify-content: center;
    height: 40px;
    margin-bottom: 10px;
  }
}

.roller #rolltext {
  position: absolute;
  top: 0;
  animation: slide 5s infinite;
}
@media screen and (max-width: 768px) {
  .roller #rolltext {
    animation: slide2 5s infinite;
  }
}

@keyframes slide {
  0% {
    top: 0;
  }
  30% {
    top: 0;
  }
  50% {
    top: -80px;
  }
  80% {
    top: -80px;
  }
}
@keyframes slide2 {
  0% {
    top: 0;
  }
  30% {
    top: 0;
  }
  50% {
    top: -50px;
  }
  80% {
    top: -50px;
  }
}

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