@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
.btn-top {
  display: block;
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #708783;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  z-index: 1001;
}
.btn-top:hover, .btn-top:focus {
  color: white;
  background: #A3B35C;
}
.btn-top.fixed {
  opacity: 1;
}
.btn-top span {
  display: none;
}

.footer {
  background: #3C3D37;
  padding: 0;
  color: #708783;
}
.footer .footer-row {
  border-top: 1px solid #708783;
  padding-top: 50px;
}
@media (min-width: 910px) {
  .footer .footer-row {
    padding-top: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
@media (min-width: 910px) {
  .footer .footer-row .col {
    width: 33.33%;
  }
}
.footer .realizacao {
  text-align: center;
  margin: 0 auto 2rem;
}
.footer .realizacao img {
  height: 80px;
  width: auto;
  max-width: 100%;
  margin-left: 1rem;
}
.footer .footer-menu ul {
  list-style: none;
}
.footer .footer-menu ul li a {
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #708783;
}
@media (min-width: 910px) {
  .footer .footer-menu ul li a {
    text-align: right;
  }
}
.footer .footer-menu ul li a:hover, .footer .footer-menu ul li a:focus {
  color: #A3B35C;
}
.footer .site-info {
  text-align: center;
  padding: 2rem 15px;
  margin: 0;
}
.footer .site-info p {
  margin: 0;
  font-size: 12px;
  color: #708783;
}
.footer .site-info p a {
  color: #708783;
  text-decoration: underline;
}
.footer .site-info p.legal-text {
  color: #708783;
  margin-bottom: 2rem;
  border: 1px solid #708783;
  border-width: 1px 0;
  padding: 2rem 0;
}

#masthead {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  z-index: 100;
}
#masthead.active {
  opacity: 1;
}
#masthead.internal-page {
  height: auto;
  opacity: 1;
  overflow: visible;
}
#masthead.internal-page .site-header-menu {
  overflow: hidden;
}
@media (min-width: 910px) {
  #masthead {
    position: relative;
    padding: 1rem 15px;
  }
}
#masthead .btn-next {
  display: none;
  color: #3C3D37;
  height: 60px;
  width: 110px;
  background: center center url(../img/arrow-down.png) no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
}
#masthead .btn-next i {
  display: none;
}
@media (min-width: 1200px) {
  #masthead .btn-next {
    display: block;
  }
}
#masthead .site-branding {
  margin: 0 2rem 0 0 !important;
  padding: 1rem;
}
#masthead .site-branding .site-title img {
  max-height: 80px;
  width: auto;
}
#masthead #site-header-menu {
  display: block;
  position: absolute;
  right: 10px;
  top: 50px;
}
@media (min-width: 910px) {
  #masthead #site-header-menu {
    right: 20px;
  }
}
#masthead #site-header-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}
#masthead #site-header-menu nav ul li a {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  color: #3C3D37;
  margin: 0 0 0.25rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  transform: translateX(calc(100% + 15px));
  transition: all 0.3s ease-in-out;
}
@media (min-width: 910px) {
  #masthead #site-header-menu nav ul li a {
    transform: translateX(calc(100% + 25px));
  }
}
#masthead #site-header-menu nav ul li:nwth-child(1) {
  animation-delay: 0.3s;
}
#masthead #site-header-menu nav ul li:nth-child(2) {
  animation-delay: 0.6s;
}
#masthead #site-header-menu nav ul li:nth-child(3) {
  animation-delay: 0.9s;
}
#masthead #site-header-menu nav ul li:nth-child(4) {
  animation-delay: 1.2s;
}
#masthead #site-header-menu nav ul li:nth-child(5) {
  animation-delay: 1.5s;
}
#masthead #site-header-menu nav ul li:nth-child(6) {
  animation-delay: 1.8s;
}
#masthead #site-header-menu nav ul li:nth-child(7) {
  animation-delay: 2.1s;
}
#masthead #site-header-menu nav ul li:nth-child(8) {
  animation-delay: 2.4s;
}
#masthead #site-header-menu.active nav ul li a {
  transform: translateX(0);
}
#masthead .nav-toggle {
  display: block;
  padding: 0;
  margin: 2.5rem 0 0 0;
  width: 36px;
  height: 4px;
  border: 0;
  box-sizing: content-box;
  background-clip: content-box;
  transition: background-color 500ms ease-in-out 250ms;
  background-color: white;
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  outline: none !important;
}
@media (min-width: 910px) {
  #masthead .nav-toggle {
    right: 20px;
  }
}
#masthead .nav-toggle:hover {
  cursor: pointer;
}
#masthead .nav-toggle:before, #masthead .nav-toggle:after {
  position: relative;
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  background-color: white;
  transition: transform 500ms ease-in-out;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
#masthead .nav-toggle:before {
  top: -12px;
}
#masthead .nav-toggle:after {
  bottom: -8px;
}
#masthead .nav-toggle .nav-toggle__text {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  width: 36px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  transform: translateY(-31px);
  background: rgba(60, 61, 55, 0);
  padding-bottom: 36px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 910px) {
  #masthead .nav-toggle .nav-toggle__text {
    display: none;
  }
}
#masthead .nav-toggle.nav-toggle--active {
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0);
  transition-delay: 0s;
}
#masthead .nav-toggle.nav-toggle--active:before {
  transform: translateY(12px) rotate(-225deg);
}
#masthead .nav-toggle.nav-toggle--active:after {
  transform: translateY(-12px) rotate(225deg);
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background: white;
  background: #D9DBC1 url(../img/bg-body.png) center top;
  margin: 0;
  padding: 0;
  color: #3C3D37;
  font-weight: normal;
}
body:before {
  display: none !important;
}
body:after {
  display: none !important;
}

.site {
  background: transparent;
}

a,
a:hover,
a:focus,
a:active,
a.active {
  outline: none;
  text-decoration: none;
}

a {
  color: #80BEA6;
  transition: 0.4s ease color, 0.4s ease background, 0.4s ease opacity;
  box-shadow: none;
}

a:hover,
a:focus,
a:active,
a.active {
  color: #A3B35C;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center !important;
}

.margin-top {
  margin-top: 40px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-5,
.pagination.mb-5 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-top: 2rem !important;
}

.pt-5 {
  padding-top: 4rem;
}

.spacer {
  height: 50px;
}

#page {
  margin: 0;
  padding: 0;
}
#page .entry-title.internal-page {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  color: #A3B35C;
  text-transform: uppercase;
  font-weight: bold;
}
#page .entry-title.internal-page::after {
  content: "";
  background: #80BEA6;
  height: 6px;
  width: 100px;
  margin: 1.5rem auto 0;
  display: block;
}
@media (910px) {
  #page .entry-title.internal-page {
    font-size: 2rem;
  }
}
#page .entry-content-boxed {
  max-width: 750px;
  margin: 0 15px 40px;
  color: #3C3D37;
}
@media (min-width: 1200px) {
  #page .entry-content-boxed.full-width {
    max-width: 1170px;
  }
}
@media (min-width: 930px) {
  #page .entry-content-boxed {
    margin: 0 auto 40px;
  }
}
#page .entry-content-boxed .entry-content {
  float: none;
  width: 100%;
  margin: 0;
}
#page .entry-content-boxed .entry-content a {
  box-shadow: none;
  text-decoration: underline;
  color: #A3B35C;
}
#page .entry-content-boxed .entry-content a.btn, #page .entry-content-boxed .entry-content a.wp-block-button__link {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}
#page .entry-content-boxed .entry-content .wp-block-button__link {
  text-decoration: none;
  margin: 0.75rem 0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}
#page .entry-content-boxed h1, #page .entry-content-boxed h2, #page .entry-content-boxed h3, #page .entry-content-boxed h4 {
  margin: 0 0 15px;
  font-weight: normal;
}
#page .entry-content-boxed h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media (min-width: 910px) {
  #page .entry-content-boxed h2 {
    font-size: 1.5rem;
  }
}
#page .entry-content-boxed h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
#page .entry-content-boxed h4 {
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
#page .entry-content-boxed p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-weight: 400;
  font-size: 0.875rem;
}
#page .entry-content-boxed ol {
  list-style-position: inside !important;
  font-weight: 300;
}
#page .entry-content-boxed .addtoany_share_save_container {
  margin-top: 1.5rem;
}
#page .entry-content-boxed ul:not(.blocks-gallery-grid) {
  padding-left: 20px;
  margin-bottom: 15px;
  font-weight: 300;
}
#page .entry-content-boxed ul:not(.blocks-gallery-grid).sanfona, #page .entry-content-boxed ul:not(.blocks-gallery-grid).representatives-accordion {
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-bottom: 3rem;
}
#page .entry-content-boxed ul:not(.blocks-gallery-grid).sanfona > li, #page .entry-content-boxed ul:not(.blocks-gallery-grid).representatives-accordion > li {
  font-size: 18px;
  color: #A3B35C;
  display: block;
  cursor: pointer;
  border: 1px solid #595959;
  border-width: 1px 0;
  padding: 0.5rem 2.5rem 0.5rem 0;
  margin-bottom: -1px;
  font-weight: normal;
  position: relative;
  text-transform: uppercase;
}
#page .entry-content-boxed ul:not(.blocks-gallery-grid).sanfona > li .activator, #page .entry-content-boxed ul:not(.blocks-gallery-grid).representatives-accordion > li .activator {
  display: block;
  padding: 0.5rem 0;
  margin: -0.5rem 0;
}
#page .entry-content-boxed ul:not(.blocks-gallery-grid).sanfona > li:after, #page .entry-content-boxed ul:not(.blocks-gallery-grid).representatives-accordion > li:after {
  content: "\f078";
  position: absolute;
  right: 0;
  top: 7px;
  font-family: "Font Awesome 6 Free";
  color: white;
  background: #A3B35C;
  border-radius: 3px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  transition: 0.3s transform ease-in-out;
  pointer-events: none;
  font-weight: bold;
}
#page .entry-content-boxed ul:not(.blocks-gallery-grid).sanfona > li.active:after, #page .entry-content-boxed ul:not(.blocks-gallery-grid).representatives-accordion > li.active:after {
  transform: scaleY(-1);
}
#page .entry-content-boxed ul:not(.blocks-gallery-grid).sanfona > li.active > ul, #page .entry-content-boxed ul:not(.blocks-gallery-grid).representatives-accordion > li.active > ul {
  max-height: 1000px;
  transition: all 0.3s ease-in-out;
}
#page .entry-content-boxed ul:not(.blocks-gallery-grid).sanfona > li > ul, #page .entry-content-boxed ul:not(.blocks-gallery-grid).representatives-accordion > li > ul {
  color: #3C3D37;
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  animation-delay: 0s;
  font-weight: normal;
  text-transform: none;
}
#page .entry-content-boxed ul:not(.blocks-gallery-grid).sanfona > li > ul > li, #page .entry-content-boxed ul:not(.blocks-gallery-grid).representatives-accordion > li > ul > li {
  margin: 0 0 10px;
}
#page .entry-content-boxed .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 15px;
  margin: 0;
  height: 0;
}
#page .entry-content-boxed .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#page .site-content-full-width {
  width: 100%;
}
#page .entry-header {
  max-width: 750px;
  margin: 1rem 15px 0;
  display: flex;
  justify-content: center;
}
#page .entry-header .entry-category {
  margin-top: -1rem;
  display: block;
  font-weight: bold;
}
#page .entry-header .post-date {
  margin-top: -1rem;
  display: block;
  font-weight: lighter;
  margin: 0 0 1rem;
  font-size: 0.75rem;
  color: #3C3D37;
}
#page .entry-header .post-date i {
  margin-right: 0.15rem;
}
#page .entry-header .post-date i:nth-child(2) {
  margin-left: 0.5rem;
}
@media (min-width: 1200px) {
  #page .entry-header.full-width {
    max-width: 1170px;
  }
}
@media (min-width: 930px) {
  #page .entry-header {
    margin: 0 auto;
  }
}
#page .entry-header.post {
  display: block;
}
#page .entry-header.post .entry-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  text-align: left;
  border: none;
  color: #3C3D37 !important;
  display: block;
}
@media (min-width: 910px) {
  #page .entry-header.post .entry-title {
    font-size: 1.75rem;
    margin: 0 auto 1rem;
  }
}
#page .entry-header.post .entry-title:after {
  display: none;
}
#page .entry-header.post .entry-title.single-title {
  text-transform: none;
  text-align: left;
  padding-bottom: 0;
}
#page .entry-header .entry-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.25;
  font-weight: bold;
  display: block;
}
@media (min-width: 910px) {
  #page .entry-header .entry-title {
    font-size: 1.75rem;
    margin: 0 auto 1rem;
  }
}

.home-section {
  text-align: center;
  /*
  &.intro {
  	display: flex;
  	align-items: flex-end;
  	padding: 82% 0 2rem !important;
  	background:#E6E6E6 url(../img/bg-intro-mobile.jpg) center top no-repeat;
  	background-size: 100% auto;

  	@media (min-width:1200px) {
  		background: url(../img/bg-intro.jpg) right center no-repeat;
  		background-size: auto 100%;
  		padding: 0 !important;
  		align-items: center;
  		height: 100vh;
  	}

  	.section-content {

  		@media (min-width:1200px) {
  			width:35%;
  		}

  		img {
  			width:180px;
  			margin: 0 auto 2rem;
  		}

  		p {
  			line-height: 1.25;
  			margin-bottom: 1rem;
  		}

  		h2 {
  			line-height: 1.25;
  			font-weight:300;
  			color:$theme-primary;
  		}

  		.btn-next {
  			display:none;
  			margin:2rem auto 0;
  			font-size:4rem;
  			color:$text-color;


  			@media (min-width:1200px) {
  				display: block;
  			}
  		}
  	}
  }
  */
}
.home-section.has-title {
  padding: 50px 0;
}
.home-section .grid-container {
  text-align: left;
}
@media (max-width: 909px) {
  .home-section .is-layout-flex {
    gap: 0;
  }
}
.home-section h1 {
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  font-size: 1.25rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  color: white;
  position: relative;
  padding: 1rem;
}
@media (min-width: 910px) {
  .home-section h1 {
    font-size: 2rem;
    padding: 1.5rem;
    margin: 0 0 2rem;
  }
}
.home-section h1 span {
  position: relative;
  z-index: 1;
}
.home-section h1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% - 25px);
  background: #80BEA6;
  z-index: 0;
  border-radius: 0 50px 50px 0;
}
@media (min-width: 910px) {
  .home-section h1:before {
    width: calc(100% - 50px);
  }
}
.home-section .container .section-content {
  text-align: left;
}
.home-section .container .section-content h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 910px) {
  .home-section .container .section-content h2 {
    font-size: 1.5rem;
  }
}
.home-section .container .section-content p {
  margin: 0;
}
.home-section .container .section-content address {
  margin: 0 0 0.5rem;
  font-weight: bold;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.25;
  text-indent: -1.15rem;
  margin-left: 1.15rem;
}
.home-section .container .section-content address::before {
  content: " \f3c5";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-weight: 900;
  height: 16px;
  line-height: 16px;
  text-rendering: auto;
  width: 16px;
  -webkit-font-smoothing: antialiased;
}
.home-section .container .section-content .wp-block-columns {
  align-items: center !important;
  margin-bottom: 0;
}
.home-section .container .section-content .wp-block-gallery figure.wp-block-image,
.home-section .container .section-content .wp-block-gallery.has-nested-images figure.wp-block-image {
  padding: 0.5rem;
}
.home-section .container .section-content .wp-block-gallery figure.wp-block-image img,
.home-section .container .section-content .wp-block-gallery.has-nested-images figure.wp-block-image img {
  border-radius: 50%;
}
.home-section .container .section-content .wp-block-gallery figure.wp-block-image figcaption,
.home-section .container .section-content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: #80BEA6;
  color: white;
  bottom: 1rem;
  border-radius: 25px;
  font-style: normal;
  font-weight: bold;
  padding: 0.75rem 0.25rem;
  width: calc(100% - 1rem);
  left: 0.5rem;
  line-height: 1.25;
  font-size: 1rem;
}
@media (max-width: 370px) {
  .home-section .container .section-content .wp-block-gallery figure.wp-block-image figcaption,
.home-section .container .section-content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    padding: 0.25rem;
    font-size: 0.75rem;
    line-height: 1;
    bottom: 0;
  }
}
.home-section.implantacao {
  color: white;
}
.home-section.implantacao .container .home-section-title {
  border-color: white !important;
}
.home-section.areas-de-lazer h1:before, .home-section.ficha-tecnica h1:before {
  left: auto;
  right: 0;
  background: #A3B35C;
  border-radius: 50px 0 0 50px;
}
.home-section.localizacao {
  padding-bottom: 0;
}
.home-section.localizacao .container .section-content p {
  margin: 0 0 2rem;
}
.home-section.localizacao .container .section-content ul li {
  list-style: none;
}
.home-section.localizacao .container .section-content ul li:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-left: -20px;
  margin-right: 0.5rem;
  background: center center url(../img/check.svg) no-repeat;
  position: relative;
  top: 5px;
}
.home-section.infraestrutura .container .section-content ul li {
  list-style: none;
}
.home-section.infraestrutura .container .section-content ul li:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-left: -20px;
  margin-right: 0.5rem;
  background: center center url(../img/check.svg) no-repeat;
  position: relative;
  top: 5px;
}
.home-section.mapa .container {
  max-width: none;
  padding: 0;
  margin: 0;
}
.home-section.mapa iframe {
  margin-bottom: 0;
}
.home-section.acompanhe-a-obra .section-content ul.steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.home-section.acompanhe-a-obra .section-content ul.steps-list li {
  margin: 0 0 1rem;
}
.home-section.acompanhe-a-obra .section-content ul.steps-list li.zero progress::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #80BEA6;
  border-radius: 4px;
  animation: bar 4s;
  animation-iteration-count: infinite;
}
@keyframes bar {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.home-section.acompanhe-a-obra .section-content ul.steps-list li label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: bold;
  margin: 0 0 -10px;
}
.home-section.acompanhe-a-obra .section-content ul.steps-list li progress {
  appearance: none;
  height: 8px;
  width: 100%;
  position: relative;
}
.home-section.acompanhe-a-obra .section-content ul.steps-list li progress[value]::-webkit-progress-bar {
  background-color: #969696;
  border-radius: 4px;
}
.home-section.acompanhe-a-obra .section-content ul.steps-list li progress[value]::-webkit-progress-value {
  background: #80BEA6;
  border-radius: 4px;
}
.home-section.ficha-tecnica .section-content p {
  margin: 0;
}
.home-section.ficha-tecnica .section-content hr.wp-block-separator {
  margin: 0.5rem 0;
}
.home-section.diferenciais .section-content ul {
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.home-section.diferenciais .section-content ul li {
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  padding: 0.5rem 0;
  margin: 0.25rem;
  line-height: 1.25;
  text-align: center;
}
@media (min-width: 440px) {
  .home-section.diferenciais .section-content ul li {
    width: calc(50% - 0.5rem);
  }
}
@media (min-width: 910px) {
  .home-section.diferenciais .section-content ul li {
    width: calc(25% - 0.5rem);
  }
}
.home-section.diferenciais .section-content ul li img {
  width: 160px;
  height: auto;
  margin-bottom: -1rem;
  position: relative;
  z-index: 1;
}
.home-section.diferenciais .section-content ul li span {
  background: #A3B35C;
  border-radius: 25px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  left: 0.5rem;
  line-height: 1.25;
  padding: 0.75rem 0.25rem;
  display: block;
  text-align: center;
}
@media (min-width: 440px) {
  .home-section.diferenciais .section-content ul li span {
    width: calc(100% - 1rem);
  }
}
@media (max-width: 370px) {
  .home-section.diferenciais .section-content ul li span {
    padding: 0.25rem;
    font-size: 0.75rem;
    line-height: 1;
    bottom: 0;
  }
}
.home-section.homes-cities {
  padding: 50px 0;
  background: white;
}
@media (min-width: 910px) {
  .home-section.homes-cities {
    padding: 100px 0;
  }
}
.home-section.homes-cities .wp-block-image {
  text-align: center;
}
.home-section.homes-cities .wp-block-image.size-full img {
  width: 350px;
  margin-bottom: 2rem;
}
@media (min-width: 910px) {
  .home-section.homes-cities .wp-block-image.size-full img {
    margin-bottom: 0;
  }
}
.home-section.contato {
  background: #3C3D37;
  color: white;
  padding: 100px 0;
}
.home-section.contato a {
  color: white;
}
.home-section.contato a:hover, .home-section.contato a:focus {
  color: rgba(255, 255, 255, 0.7);
}

.page-title {
  color: #A3B35C;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  text-transform: none;
}

.table-container {
  overflow: auto;
}

.table {
  background: white;
  min-width: 700px;
}
.table.table-full-width {
  min-width: auto;
  width: 100%;
}
.table.table-invisible {
  border: none;
}
.table.table-invisible a {
  text-decoration: none;
  box-shadow: none;
}
.table.table-invisible td,
.table.table-invisible th {
  border: none;
  padding: 20px 10px;
  font-size: inherit;
  border-top: 1px solid #EAEAEA;
  min-width: 120px;
}
.table.table-invisible td img,
.table.table-invisible th img {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.table.table-invisible tr:nth-child(odd) {
  background: transparent;
}
.table.table-invisible tr {
  border-top: 1px solid #EAEAEA;
}
.table tr:nth-child(odd) {
  background: #FAFAFA;
}
.table th,
.table td {
  font-size: 12px;
}
@media (min-width: 1024px) {
  .table th,
.table td {
    font-size: 14px;
  }
}
.table .text-center {
  text-align: center;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 1170px) {
  .container.forced {
    width: 1170px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.btn, #page .entry-content-boxed .entry-content .wp-block-button__link {
  background: black;
  position: relative;
  z-index: 100;
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0;
  border: none;
  text-transform: uppercase;
  font-size: 13px;
}
.btn:focus, #page .entry-content-boxed .entry-content .wp-block-button__link:focus, .btn:hover, #page .entry-content-boxed .entry-content .wp-block-button__link:hover {
  transform: scale(1.025);
  color: white;
}
.btn.btn-white, #page .entry-content-boxed .entry-content .btn-white.wp-block-button__link {
  background: white;
  color: #80BEA6;
  border-color: #80BEA6;
}
.btn.btn-white:focus, #page .entry-content-boxed .entry-content .btn-white.wp-block-button__link:focus, .btn.btn-white:hover, #page .entry-content-boxed .entry-content .btn-white.wp-block-button__link:hover {
  background: #A3B35C;
  color: white;
}
.btn.btn-green, #page .entry-content-boxed .entry-content .btn-green.wp-block-button__link {
  background: #80BEA6;
  color: white;
  border-color: #80BEA6;
}
.btn.btn-green:focus, #page .entry-content-boxed .entry-content .btn-green.wp-block-button__link:focus, .btn.btn-green:hover, #page .entry-content-boxed .entry-content .btn-green.wp-block-button__link:hover {
  background: #5ead8e;
  color: white;
}
.btn.btn-outline, #page .entry-content-boxed .entry-content .btn-outline.wp-block-button__link {
  background: transparent;
  border: 1px solid white;
  color: white;
}
.btn.btn-outline:focus, #page .entry-content-boxed .entry-content .btn-outline.wp-block-button__link:focus, .btn.btn-outline:hover, #page .entry-content-boxed .entry-content .btn-outline.wp-block-button__link:hover {
  background: white;
  color: #80BEA6;
}
.btn.btn-gray, #page .entry-content-boxed .entry-content .btn-gray.wp-block-button__link {
  background: #d3d6ba;
  color: white;
}
.btn.btn-gray:focus, #page .entry-content-boxed .entry-content .btn-gray.wp-block-button__link:focus, .btn.btn-gray:hover, #page .entry-content-boxed .entry-content .btn-gray.wp-block-button__link:hover {
  background: #bfc39a;
  color: white;
}
.btn.btn-sm, #page .entry-content-boxed .entry-content .btn-sm.wp-block-button__link {
  font-size: 14px;
}
.btn.btn-xs, #page .entry-content-boxed .entry-content .btn-xs.wp-block-button__link {
  font-size: 12px;
  padding: 5px 10px;
  margin-top: 5px;
}

.owl-carousel.single {
  margin-bottom: 2rem;
}

.grid {
  min-height: 100px;
}
.grid.carousel {
  padding: 10px;
}
.grid .owl-carousel .item {
  padding: 10px;
}
.grid .container {
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}
.grid .col-4:nth-child(3n+1) {
  clear: both;
}
.grid .grid-item {
  background: white;
  display: block;
  transition: 0.4s ease all;
}
.grid .grid-item h2 {
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.2;
  font-weight: bold !important;
  color: black !important;
  font-style: italic !important;
}
.grid .grid-item div {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease all;
  overflow: hidden;
  background: white;
}
.grid .grid-item div img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 910px) {
  .grid .grid-item:hover, .grid .grid-item:focus {
    transform: scale(0.98);
  }
  .grid .grid-item:hover figure, .grid .grid-item:focus figure {
    transform: scale(1.03);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
}

.edelweisshomes-row {
  position: relative;
}
@media (min-width: 910px) {
  .edelweisshomes-row {
    display: flex;
    margin: 0 -15px;
    width: calc(100% + 30px);
  }
}
.edelweisshomes-row .edelweisshomes-col-6 {
  width: 100%;
}
@media (min-width: 910px) {
  .edelweisshomes-row .edelweisshomes-col-6 {
    margin: 0 15px;
    width: 50%;
  }
}
.edelweisshomes-row .edelweisshomes-col-4 {
  width: 100%;
}
@media (min-width: 910px) {
  .edelweisshomes-row .edelweisshomes-col-4 {
    margin: 0 15px;
    width: 33.33%;
    overflow: hidden;
  }
}

@media only screen and (min-width: 45em) {
  .row {
    position: relative;
    width: 100%;
    margin-left: -15px;
    margin-right: -15px;
  }
  .row [class^=col] {
    float: left;
    margin: 0 15px 1rem;
    min-height: 0.125rem;
  }
  .row::after {
    content: "";
    display: table;
    clear: both;
  }
  .col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    width: 96%;
  }
  .col-1-sm {
    width: 6.1666666667%;
  }
  .col-2-sm {
    width: 14.3333333333%;
  }
  .col-3-sm {
    width: 22.5%;
  }
  .col-4-sm {
    width: 30.6666666667%;
  }
  .col-5-sm {
    width: 38.8333333333%;
  }
  .col-6-sm {
    width: 47%;
  }
  .col-7-sm {
    width: 55.1666666667%;
  }
  .col-8-sm {
    width: 63.3333333333%;
  }
  .col-9-sm {
    width: 71.5%;
  }
  .col-10-sm {
    width: 79.6666666667%;
  }
  .col-11-sm {
    width: 87.8333333333%;
  }
  .col-12-sm {
    width: 96%;
  }
}
@media only screen and (min-width: 45em) {
  .col-1 {
    width: 6.1666666667%;
  }
  .col-2 {
    width: 14.3333333333%;
  }
  .col-3 {
    width: 22.5%;
  }
  .col-4 {
    width: 30.6666666667%;
  }
  .col-5 {
    width: 38.8333333333%;
  }
  .col-7 {
    width: 55.1666666667%;
  }
  .col-6 {
    width: 47%;
  }
  .col-8 {
    width: 63.3333333333%;
  }
  .col-9 {
    width: 71.5%;
  }
  .col-10 {
    width: 79.6666666667%;
  }
  .col-11 {
    width: 87.8333333333%;
  }
  .col-12 {
    width: 96%;
  }
  .hidden-sm {
    display: block;
  }
}
.error-404 {
  margin: 0;
}

.owl-item figcaption {
  position: absolute;
  left: 0;
  bottom: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  font-size: 12px;
  padding: 3px 10px;
}

.owl-dots {
  margin-top: -30px;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1000;
}
.owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
  outline: none;
}
.owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  opacity: 1;
  border: 1px solid white;
  background: rgba(255, 255, 255, 0);
  transition: 0.4s ease All;
  display: inline-block;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}
.owl-dots .owl-dot.active span {
  background: white;
}

.owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  display: none;
  justify-content: space-between;
  padding: 0;
  color: white;
  font-size: 3rem;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .owl-nav {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .owl-nav {
    font-size: 5rem;
  }
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  /*
  background:transparent !important;
  padding: 0 10px 10px 10px !important;
     line-height: .5 !important;
  outline: none !important;
  text-shadow: 2px 2px 4px rgba(black, .3);
  */
  height: 110px;
  width: 60px;
  background: center center url(../img/arrow-right.png) no-repeat;
  background-size: cover;
  outline: none !important;
  transition: all 0.3s ease-in-out;
}
.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
  display: none !important;
}
.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-next:focus,
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-prev:focus {
  opacity: 0.7;
}

.owl-carousel .owl-nav button.owl-prev {
  transform: scaleX(-100%);
}

.wpcf7 {
  margin-bottom: 0;
  padding: 0 0 1rem;
}
.wpcf7 form {
  margin: auto;
}
@media (min-width 910px) {
  .wpcf7 form {
    max-width: 500px;
  }
}
.wpcf7 form label {
  font-weight: bold;
}
.wpcf7 form .form-control {
  font-family: "Roboto", sans-serif !important;
  font-weight: normal;
  border-radius: 0;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}
.wpcf7 form .form-control:focus {
  border-color: rgba(255, 255, 255, 0.9);
}
.wpcf7 form .form-control.wpcf7-not-valid {
  border-color: #A00;
}
.wpcf7 form .wpcf7-submit-wrapper {
  text-align: right;
}
.wpcf7 form .wpcf7-submit {
  border: none;
  position: relative;
  color: #3C3D37;
  border: none;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  font-size: 1rem;
  padding: 15px 20px;
  border-radius: 50px;
  background: white;
}
.wpcf7 form .wpcf7-submit span {
  position: relative;
  z-index: 1;
}
.wpcf7 form .wpcf7-submit i {
  display: none;
}
.wpcf7 form .wpcf7-submit:hover, .wpcf7 form .wpcf7-submit:focus {
  color: white;
  background: #A3B35C;
}
.wpcf7 form .wpcf7-list-item {
  display: block;
  margin: 0;
  cursor: pointer;
}
.wpcf7 form .wpcf7-list-item label {
  font-weight: normal;
}
.wpcf7 form .wpcf7-response-output {
  border-width: 1px;
  margin: 0;
  padding: 1em;
  line-height: 1.25;
}
.wpcf7 form .wpcf7-form-control-wrap.politica-de-privacidade {
  position: relative;
}
.wpcf7 form .wpcf7-form-control-wrap.politica-de-privacidade .wpcf7-list-item {
  cursor: default;
}
.wpcf7 form .wpcf7-form-control-wrap.politica-de-privacidade .wpcf7-list-item input {
  cursor: pointer;
}
.wpcf7 form .wpcf7-form-control-wrap.politica-de-privacidade .wpcf7-list-item-label {
  background: red;
  display: none;
}
.wpcf7 form .fake-label-check {
  display: block;
  margin: 0 0 -42px 20px;
  pointer-events: none;
  position: relative;
  z-index: 10;
}
.wpcf7 form .fake-label-check a {
  pointer-events: auto;
  display: inline-block;
}

.wpcf7 form {
  text-align: left;
}
.wpcf7 form label {
  font-weight: bold;
}
.wpcf7 form .form-control {
  font-family: "Roboto", sans-serif !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  background: transparent !important;
  display: block;
  padding: 0.5rem;
  width: 100%;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.wpcf7 form .form-control.wpcf7-not-valid {
  border-color: #A00 !important;
}
.wpcf7 form .form-control:focus {
  background: transparent !important;
  border-color: white !important;
}
.wpcf7 form .wpcf7-not-valid-tip {
  margin: -0.5rem 0 1rem;
}
.wpcf7 form .wpcf7-response-output {
  border-width: 2px;
  margin: 1rem 0 0;
  padding: 1rem;
  line-height: 1.25;
  background: white;
  color: #3C3D37;
}
.wpcf7 form textarea {
  height: 150px;
}

.wp-block-image.size-full {
  position: relative;
}
.wp-block-image.size-full img {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.wp-block-image.size-full figcaption {
  font-size: 13px;
  font-style: italic;
  margin-top: 3px;
}

.wp-block-separator {
  height: 0;
  border-bottom: none;
}

#cat-whatsapp {
  background: #00A800;
  border-radius: 30px;
  display: flex;
  position: fixed;
  bottom: 60px;
  right: 12px;
  z-index: 10;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease-out;
}
@media (min-width: 910px) {
  #cat-whatsapp:hover, #cat-whatsapp:focus {
    transform: scale(1.05, 1.05);
  }
}
#cat-whatsapp i {
  background: #008500;
  display: block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  padding-left: 2px;
  text-align: center;
  font-size: 28px;
  border-radius: 30px;
}

.galeria-escondida {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.grid-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.grid-container.imoveis {
  justify-content: center;
}
@media (min-width: 910px) {
  .grid-container {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.grid-container .grid-item {
  margin: 0 0 2.5rem;
  width: 100%;
}
@media (min-width: 600px) {
  .grid-container .grid-item {
    width: 50%;
    padding: 0 0 0 15px;
  }
  .grid-container .grid-item:nth-child(2n+1) {
    padding: 0 15px 0 0;
  }
}
@media (min-width: 910px) {
  .grid-container .grid-item {
    width: 33.3%;
    padding: 0 15px !important;
  }
}
.grid-container .grid-item a {
  display: block;
  text-decoration: none;
  color: black;
  position: relative;
}
.grid-container .grid-item a:hover figure, .grid-container .grid-item a:focus figure {
  background: black;
}
.grid-container .grid-item a:hover figure img, .grid-container .grid-item a:focus figure img {
  opacity: 0.5;
}
.grid-container .grid-item a figure {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  width: 100%;
  height: 0;
  margin-bottom: 0.5rem;
  background: black;
}
.grid-container .grid-item a figure img {
  max-width: none;
  width: calc(100% + 4px);
  height: auto;
  transition: 0.3s all ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.grid-container .grid-item h2 {
  margin: 0 0 0.25rem !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  color: #3C3D37 !important;
}
.grid-container .grid-item.imovel {
  position: relative;
}
@media (min-width: 600px) {
  .grid-container .grid-item.imovel {
    padding: 0 15px;
  }
}
.grid-container .grid-item.imovel .status {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0 20px 20px;
  text-transform: uppercase;
  z-index: 10;
}
.grid-container .grid-item.imovel figure {
  margin: 0;
  border-radius: 0 20px 0 0;
  overflow: hidden;
}
.grid-container .grid-item.imovel figure img {
  border-radius: 0 20px 0 0;
}
.grid-container .grid-item.imovel .grid-item-text {
  background: white;
  border-radius: 0 0 20px 20px;
  padding: 20px;
  color: #3C3D37;
}
.grid-container .grid-item.imovel .grid-item-text p {
  margin: 0 0 0.25rem !important;
  font-size: 0.75rem !important;
}
.grid-container .grid-item.imovel .grid-item-text p.resumo {
  font-weight: 600 !important;
}
.grid-container .grid-item.imovel .grid-item-text p.cidade {
  font-weight: 600 !important;
  color: #A3B35C;
}

.blocks-gallery-item figure a img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s all ease-in-out;
}
.blocks-gallery-item figure a:hover img, .blocks-gallery-item figure a:focus img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.menu-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0 15px;
  margin-bottom: 1.75rem;
}
.menu-categories li a {
  display: inline-block;
  font-size: 0.75rem;
  background: white;
  color: black;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.25rem 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0.25rem 0.25rem 0;
}
.menu-categories li a:hover, .menu-categories li a:focus {
  background: black;
  color: white;
}

.phone-menu {
  list-style: none;
  padding: 0 !important;
  margin: 1rem 0 1.25rem;
  text-align: left;
}
.phone-menu li {
  margin: 0 0 0.25rem;
  padding: 0;
}
.phone-menu li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  font-weight: bold;
  text-decoration: none !important;
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s ease-in-out;
}
.phone-menu li a i {
  width: auto;
  margin-right: 0.5rem;
  font-size: 1.5rem;
  text-align: center;
  background: #00A800;
  border-radius: 25px;
  width: 36px;
  height: 36px;
  line-height: 36px;
}
.phone-menu li a:hover, .phone-menu li a:focus {
  color: white;
  opacity: 0.7;
}

.social-menu {
  padding: 0;
  text-align: center;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  margin: 0 0 2rem;
}
.social-menu li a {
  display: block;
  width: 49px;
  height: 49px;
  text-align: center;
  line-height: 49px;
  font-size: 1.8rem;
  margin: 0 1rem 0 0;
  color: white;
  background: #708783;
  border: none;
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
}
.social-menu li a:hover, .social-menu li a:focus {
  background: #A3B35C;
}

.gt3-photo-gallery-pro--isotope_gallery .hover-default .gt3pg-isotope-item .img-wrapper:hover:after,
.gt3-photo-gallery-pro--isotope_gallery .hover-default .gt3pg-isotope-item .img-wrapper:hover:before {
  display: none;
  opacity: 0;
}

.navigation,
.pagination {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  border: none;
}
.navigation li,
.pagination li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.navigation li a,
.pagination li a {
  font-size: 1.75rem;
  color: #A3B35C;
}
.navigation li a:hover, .navigation li a:focus,
.pagination li a:hover,
.pagination li a:focus {
  color: #879646;
}
.navigation::before, .navigation::after,
.pagination::before,
.pagination::after {
  display: none;
}
.navigation .nav-links .page-numbers,
.pagination .nav-links .page-numbers {
  text-decoration: none !important;
  font-family: "Roboto", sans-serif;
  color: #A3B35C !important;
}
.navigation .nav-links .page-numbers:hover, .navigation .nav-links .page-numbers:focus,
.pagination .nav-links .page-numbers:hover,
.pagination .nav-links .page-numbers:focus {
  color: #A3B35C !important;
}
.navigation .nav-links .prev,
.navigation .nav-links .next,
.pagination .nav-links .prev,
.pagination .nav-links .next {
  color: white !important;
  border: 1px solid #A3B35C;
  color: #A3B35C !important;
  background: transparent;
}
.navigation .nav-links .prev:hover, .navigation .nav-links .prev:focus,
.navigation .nav-links .next:hover,
.navigation .nav-links .next:focus,
.pagination .nav-links .prev:hover,
.pagination .nav-links .prev:focus,
.pagination .nav-links .next:hover,
.pagination .nav-links .next:focus {
  border-color: #A3B35C;
}

.post-date {
  margin-top: -1rem;
  display: block;
  font-weight: lighter;
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #3C3D37;
}
.post-date i {
  margin-right: 0.15rem;
}
.post-date i:nth-child(2) {
  margin-left: 0.5rem;
}

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