@import 'https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap';

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --color-elephant: #132c46;
    --color-light: #ffffff;
    --color-dark: #000000;
    --color-mandy: #EB5468;
    --color-tulip-tree: #f2ab3e;
    --color-casper: #b7c8d5;
    --color-bilbao: #148319;
    --color-malibu: #7fadf7;
    --color-regent-gray: #8894a1;
    --color-wild-sand: #f5f5f5;
    --color-forest-green: #2bb641;
    --color-shuttle-gray: #586a7d;
    --color-biscay: #1d4267;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    /* overflow-x: hidden; */
}

.container {
    max-width: 1200px;
    width: 100%;
}

p {
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: var(--color-elephant);
    font-weight: 500;
    margin-bottom: 0;
}

h2 {
    font-size: 3.6rem;
    line-height: 4.3rem;
    font-weight: 600;
    color: var(--color-elephant);
}

header {
    padding: 2.5rem 0 1.5rem;
}

header .menu {
    height: 100%;
    width: 100%;
}

header .menu ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    list-style: none;
    height: 100%;
    margin-bottom: 0;
}

header .menu ul li {
    position: relative;
    padding-bottom: 2rem;
    margin-top: 2.8rem;
}

header .menu ul li a {
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: var(--color-light);
    text-decoration: none;
    font-weight: 500;
    margin: 0 1.5rem;
    transition: all .2s ease-in-out;
}

header .menu ul li span {
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: var(--color-light);
    text-decoration: none;
    font-weight: 500;
    margin: 0 1.5rem;
    transition: all .2s ease-in-out;
    cursor: pointer;
    position: relative;
}

.list-dropbox {
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid var(--color-casper);
    background: var(--color-light);
    border-radius: 1rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1rem;
    display: none;
    z-index: 20;
    margin-top: 0;
}

header .menu ul li:hover .list-dropbox {
    display: flex;
}

header .col-12.col-md-7 {
    padding: 0;
}

header .col-12.col-md-3 {
    padding: 0;
}

header .button-yellow {
    font-size: 1.3rem;
    margin-left: 1.5rem;
    font-weight: 600;
}

.list-dropbox a {
    padding: 1rem 0;
    color: var(--color-elephant) !important;
}

.list-dropbox img {
    position: absolute;
    top: -10px;
    left: 3rem;
}

.list-dropbox .line:after {
    bottom: 0;
}

.line {
    position: relative;
    display: inline-block;
}

.line:hover:after {
    transform-origin: left center;
    transform: scale(1, 1) translate(0, 0);
}

.line:after {
    content: '';
    opacity: 1;
    transform-origin: right top;
    transform: scale(0, 1);
    bottom: 2px;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    transition: transform .3s cubic-bezier(.645,.045,.355,1);
    background: #f2ab3e;
    border-radius: 1rem;
}

.header-venda {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.header-venda div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.hearts {
    transition: all .2s ease-in-out;
}

.notificacoes {
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-weight: 500;
    background: var(--color-elephant);
    color: var(--color-light);
    padding: .5rem;
    border-radius: .3rem;
}

.hearts svg {
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.hearts svg:hover path {
    fill: var(--color-mandy);
    stroke: transparent;
    transition: all .2s ease-in-out;
}

.button-yellow {
    text-align: center;
    font-size: 1.6rem;
    background: var(--color-tulip-tree);
    color: var(--color-elephant);
    border-radius: .5rem;
    border: 1px solid transparent;
    transition: all .2s ease-in-out;
    font-weight: 400;
    padding: 1rem 2rem;
    margin-left: 2rem;
}

.button-yellow:hover {
    background: var(--color-elephant);
    color: var(--color-tulip-tree);
    text-decoration: none;
}

.button-yellow:hover svg path {
    fill: var(--color-tulip-tree);
}

.area-banner img {
    width: 100%;
}

h1 {
    font-size: 3.6rem;
    line-height: 4.2rem;
    color: var(--color-elephant);
    font-weight: 700;
    text-align: center;
    margin-bottom: 6rem;
}

h1 span {
    position: relative;
    display: inline-block;
}

h1 span img {
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
}

.area-white {
    padding: 4rem 0;
    background: var(--color-light);
}

.area-imoveis-choise {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.area-imoveis-choise .button-white {
    margin-right: 2rem;
}

.choise-city {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.choise-city .list-dropbox {
    display: none;
}

.choise-city .list-dropbox.active-dropbox {
    display: flex;
    right: -5.2rem !important;
    min-width: 200px;
    left: auto;
    top: 4rem !important;
}

.open-list {
    position: relative;
}

.open-list svg {
    position: absolute;
    top: 0;
    right: -1.5rem;
    bottom: 0;
    margin: auto;
}


.choise-city .list-dropbox a {
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: var(--color-elephant);
    text-decoration: none;
    font-weight: 500;
    margin: 0 1.5rem;
    transition: all .2s ease-in-out;
}

.choise-city .list-dropbox img {
    position: absolute;
    top: -10px;
    right: 3rem;
    left: auto;
}

.choise-city span {
    font-size: 1.8rem;
    line-height: 2.1rem;
    color: var(--color-elephant);
    margin-left: .5rem;
    cursor: pointer;
    font-weight: 700;
}

.button-white {
    height: 4.5rem;
    line-height: 4.5rem;
    background: var(--color-light);
    color: var(--color-elephant);
    border: 1px solid var(--color-casper);
    text-align: center;
    padding: 0 1.5rem;
    font-size: 1.6rem;
    transition: all .2s ease-in-out;
    cursor: pointer;
    display: inline-block;
    border-radius: .5rem;
    font-weight: 400;
    margin-left: 0;
}

.button-white:hover {
    background: var(--color-elephant);
    color: var(--color-light);
    border: 1px solid transparent;
}

.button-blue {
    height: 4.5rem;
    line-height: 4.5rem;
    background: var(--color-elephant);
    color: var(--color-light);
    border: 1px solid transparent;
    text-align: center;
    padding: 0 1.5rem;
    font-size: 1.6rem;
    transition: all .2s ease-in-out;
    cursor: pointer;
    display: inline-block;
    border-radius: .5rem;
    font-weight: 400;
    margin-left: 0;
}

.button-blue:hover {
    background: var(--color-light);
    color: var(--color-elephant);
    border: 1px solid var(--color-elephant);
    text-decoration: none;
}

.button-green {
    height: 4.5rem;
    line-height: 4.5rem;
    background: var(--color-forest-green);
    color: var(--color-light);
    border: 1px solid transparent;
    text-align: center;
    padding: 0 1.5rem;
    font-size: 1.6rem;
    transition: all .2s ease-in-out;
    cursor: pointer;
    display: inline-block;
    border-radius: .5rem;
    font-weight: 400;
    margin-left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.box-valores-totais .button-green svg {
    width: 2.4rem;
    height: 2.4rem;
}

.button-green:hover {
    background: var(--color-light);
    color: var(--color-forest-green);
    border: 1px solid var(--color-forest-green);
    text-decoration: none;
}

.button-green svg .whats-ball-white {
    fill: var(--color-light);
}

.button-green svg .whats-fone-green {
    fill: var(--color-forest-green);
}

.button-green:hover .whats-ball-white {
    fill: var(--color-forest-green);
}

.button-green:hover .whats-fone-green {
    fill: var(--color-light);
}

.box-imoveis {
    margin-bottom: 3rem;
}

.box-imoveis .box {
    border: 1px solid var(--color-casper);
    border-radius: 2rem;
    max-height: 45rem;
    height: 100%;
    transition: all .2s ease-in-out;
}

.box-imoveis .box .box-img {
    width: 100%;
    height: 100%;
    overflow: visible;
    position: relative;
    border-radius: 2rem 2rem 0 0;
}

.box-imoveis .box .box-img .destaque {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--color-tulip-tree);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: .5rem;
    font-size: 1.3rem;
    line-height: 1.5rem;
    color: var(--color-elephant);
    font-weight: 600;
    z-index: 10;
}

.box-imoveis .box .box-img .destaque img {
    margin-right: 1rem;
}

.swiper.swiper-img {
    border-radius: 2rem 2rem 0 0;
}

.swiper.swiper-internas {
    border-radius: 1rem;
}

.box-imoveis .box .box-img img {
    width: 101%;
    height: 100%;
    object-fit: cover;
}

.box-imoveis .box .box-description {
    padding: 2rem 2rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    border-radius: 0 0 2rem 2rem;
}

.box-imoveis .box:hover {
    text-decoration: none;
    box-shadow: 1rem 1rem 3rem rgb(0 0 0 / 10%);
    border: 1px solid var(--color-elephant);
}

.box-imoveis .box.special .box-description:hover {
    text-decoration: none;
    box-shadow: 0 0 0 rgb(0 0 0 / 10%);
}

.box-imoveis .box.special:hover {
    text-decoration: none;
    box-shadow: 1rem 1rem 3rem rgb(0 0 0 / 10%);
}

.box-imoveis .box .box-description strong {
    font-size: 1.8rem;
    line-height: 2.1rem;
    color: var(--color-elephant);
    font-weight: 700;
    margin-bottom: 1rem;
}

.box-imoveis .box .box-description .box-localization p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.box-imoveis .box .box-description .box-localization p svg {
    margin-right: .5rem;
}


.box-imoveis .box .box-description .box-quartos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.box-imoveis .box .box-description .box-quartos div {
    margin-right: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.box-imoveis .box .box-description .box-quartos div svg {
    margin-right: 1rem;
}

.box-imoveis .box .box-description .box-price {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.box-imoveis .box .box-description .box-price div {
    display: flex;
    flex-direction: column;
}

.yellow-box-special {
    height: 100%;
    max-height: 44.5rem;
}

.valor {
    font-size: 2.1rem;
    line-height: 2.4rem;
    font-weight: 700;
    color: var(--color-elephant);
    margin-bottom: 1rem;
}

.valor-total {
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: var(--color-bilbao);
    font-weight: 500;
}

.box.special {
    background: var(--color-tulip-tree);
    border: 1px solid transparent;
    padding: 2.5rem;
    /* max-height: 39.8rem; */
}

.box.special img {
    margin-bottom: 4rem;
}

.box.special strong {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-bottom: 2.5rem;
}

.more-pages {
    display: flex;
    justify-content: center;
}

.more-pages .button-blue {
    color: var(--color-light);
}

.more-pages .button-blue:hover {
    color: var(--color-elephant);
}

.area-blue {
    background: rgb(30,69,108);
    background: linear-gradient(180deg, rgba(30,69,108,1) 0%, rgba(28,64,100,1) 25%, rgba(25,57,90,1) 49%, rgba(22,51,81,1) 77%, rgba(20,46,73,1) 100%);
    margin: 0 3rem;
    border-radius: 3rem;
}

.area-venda {
    background: url(../images/yellow-curve.png) center no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 915px;
    padding: 9rem 12rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

.area-venda h2 {
    margin-bottom: 4rem;
}

.area-venda p {
    margin-bottom: 4rem;
    font-size: 2.2rem;
    line-height: 3rem;
}

.area-blue img {
    position: absolute;
    top: -2.5rem;
    right: 7rem;
}

.area-white .subtitle {
    font-size: 1.4rem;
    line-height: 1.7rem;
    font-weight: 500;
    color: var(--color-elephant);
    margin-bottom: 1rem;
    text-align: center;
    display: block;
}

.area-white h2 {
    text-align: center;
    display: block;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.box-noticias {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.box-noticias a:hover {
    text-decoration: none;
}

.box-noticias .noticia-img {
    width: 100%;
    height: 19rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.box-noticias .noticia-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

.box-noticias .noticia-date {
    margin-bottom: 1rem;
}

.box-noticias .noticia-date p {
    font-size: 1.4rem;
    line-height: 1.9rem;
    color: var(--color-elephant);
    font-weight: 500;
}

.box-noticias .noticia-description p {
    font-size: 1.8rem;
    line-height: 2.3rem;
    padding-right: 2rem;
}

.area-instagram {
    background: url(../images/bg-instagram.jpg) center no-repeat;
    background-size: cover;
    padding: 5rem 0;
    margin: 0 3rem;
    border-radius: 2rem;
}

.area-instagram .area-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
}

.area-instagram .area-title span {
    display: block;
    font-size: 1.8rem;
    line-height: 2.1rem;
    color: var(--color-elephant);
    font-weight: 500;
    margin-bottom: .5rem;
}

.box-postagens {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    transition: all .2s ease-in-out;
}

.box-postagens a {
    width: 100%;
    max-height: 30rem;
    transition: all .2s ease-in-out;
    overflow: hidden;
    position: relative;
}

.box-postagens a img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 2rem;
}

.box-postagens a div {
    background: rgb(23,46,73);
    background: linear-gradient(180deg, rgba(23,46,73,1) 0%, rgba(30,52,76,1) 25%, rgba(59,80,102,1) 49%, rgba(29,49,67,1) 77%, rgba(47,65,76,1) 100%);
    opacity: .8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    opacity: 0;
    padding: 3rem 0;
    border-radius: 2rem;
    transition: all .2s ease-in-out;
}

.box-postagens a:hover div {
    transition: all .2s ease-in-out;
    opacity: .7;
}

.box-postagens a div p {
    color: var(--color-light);
    text-align: center;
}

.area-instagram .more-pages .button-blue {
    color: var(--color-tulip-tree);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.area-instagram .more-pages .button-blue svg {
    margin-left: 2rem;
}

.box-bairros {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.bairros-duo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.bairros {
    position: relative;
    width: 100%;
    height: 22.5rem;
    overflow: hidden;
    border-radius: 2rem;
}

.bairros .bg-black {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.29735644257703087) 40%, rgba(0,0,0,0.9976365546218487) 100%);
    width: 100%;
    height: 100%;
}

.bairros span {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    margin: 0;
    text-align: center;
    font-size: 2.2rem;
    line-height: 2.6rem;
    color: var(--color-light);
    font-weight: 500;
}

.bairros img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    position: relative;
    z-index: 0;
}

.bairro-big {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 2rem;
}

.bairro-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

.bairro-big .bg-black {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.29735644257703087) 40%, rgba(0,0,0,0.9976365546218487) 100%);
    width: 100%;
    height: 100%;
}

.bairro-big span {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    margin: 0;
    text-align: center;
    font-size: 2.2rem;
    line-height: 2.6rem;
    color: var(--color-light);
    font-weight: 500;
}

.area-yellow-footer {
    background: var(--color-tulip-tree);
    padding: 8rem 0 3rem;
    position: relative;
    z-index: 1;
    margin: 0 1.5rem;
    border-radius: 2rem;
}

.bg-left-footer {
    position: absolute;
    bottom: 0;
    left: 0;
}

.bg-right-footer {
    position: absolute;
    bottom: 0;
    right: 0;
}

.area-yellow-footer .infos-empresa {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.area-yellow-footer .infos-empresa svg {
    margin-right: 4rem;
}

.area-yellow-footer .infos-empresa .big-text {
    font-size: 8rem;
    line-height: 6.2rem;
    color: var(--color-elephant);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    letter-spacing: -.5rem;
    display: block;
}

.area-yellow-footer .infos-empresa .big-text small {
    position: absolute;
    top: -1rem;
    right: 1rem;
    font-size: 5rem;
    font-weight: 700;
}

.area-yellow-footer .infos-empresa h2 {
    font-weight: 700;
    text-transform: uppercase;
}

.area-yellow-footer .infos-empresa p {
    font-size: 2rem;
    line-height: 2.4rem;
}

.swiper-imoveis {
    position: relative;
}

.imoveis-button {
    position: absolute;
    bottom: 0;
    right: 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.imoveis-button .swiper-imoveis-next {
    margin-left: 2rem;
}

footer {
    background: url(../images/bg-footer.jpg) center no-repeat;
    background-size: cover;
    padding: 7.5rem 0 6rem;
    margin: 0 1.5rem;
    border-radius: 0 0 2rem 2rem;
    position: relative;
    z-index: 0;
    margin-top: -1.5rem;
}

a.wpp-rodape {
    font-size: 14px;
    font-weight: 500;
    color: #2bb641;
    padding: 8px 15px;
    border-radius: 10px;
    margin-top: 30px;
    display: inline-block;
    border: 1px solid #2bb641;
    transition: all .2s ease-in-out;

}
a.wpp-rodape svg {
    margin-right: 5px;
}
a.wpp-rodape:hover {
    border-color: #f2ab3e;
    text-decoration: none;
    color:#f2ab3e;
}
a.wpp-rodape:hover svg .bgwpp {
    fill: #f2ab3e;
}
a.wpp-rodape:hover svg .bgwpp2 {
    fill: #011f39;
}

footer div span {
    font-size: 2.2rem;
    line-height: 2.5rem;
    color: var(--color-light);
    font-weight: 600;
    margin-bottom: 3.5rem;
    display: block;
}

footer div .footer-menu {
    list-style: none;
    padding: 0;
}
footer div li {
    margin-bottom: 1.5rem;
}

footer div li a {
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: var(--color-light);
    font-weight: 400;
    margin-bottom: 0;
    display: block;
    transition: all .2s ease-in-out;
}

footer div li a:hover {
    color: var(--color-light);
    text-decoration: none;
}

footer .form-footer .button-blue {
    margin-top: 1rem;
}

footer .form-footer .button-blue svg {
    margin-right: 1rem;
}

.google-meu-negocio {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.google-meu-negocio span {
    font-size: 2rem;
    line-height: 2.4rem;
    color: var(--color-malibu);
    font-weight: 500;
    margin-bottom: 0;
}

.google-meu-negocio svg {
    margin-right: 2rem;
}

.form-footer input {
    height: 4.5rem;
    line-height: 4.5rem;
    border-radius: .5rem;
    background: var(--color-light);
    color: var(--color-elephant);
    border: none;
    padding: 0 2rem;
    width: 100%;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.form-footer input::placeholder {
    color: var(--color-elephant);
    font-weight: 500;
}

.form-footer input:focus {
    outline: 0;
}

.form-footer button {
    margin-left: 0;
}

.footer-redes-sociais a {
    margin-right: 1rem;
    display: inline-block;
    transform: scale(0.8);
}

.footer-redes-sociais a:hover {
    text-decoration: none;
}

.copyright {
    padding: 1rem 0 2rem 0;
    background: var(--color-light);
}

.copyright .copyright-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.copyright .copyright-content div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.copyright .copyright-content div span {
    margin-left: 3rem;
    height: 6.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.copyright .copyright-content div p {
    color: #586775;
    margin-bottom: .5rem;
}

.swiper-box-img-button {
    position: unset;
}

.swiper-box-img-button .swiper-button-prev svg .arrow {
    fill: var(--color-elephant);
}

.swiper-box-img-button .swiper-button-prev:hover svg .arrow, .swiper-box-img-button .swiper-button-next:hover svg .arrow {
    fill: var(--color-tulip-tree);
}

.swiper-box-img-button .swiper-button-prev:hover svg .little-ball, .swiper-box-img-button .swiper-button-next:hover svg .little-ball {
    fill: var(--color-elephant);
}

.swiper-box-img-button .swiper-button-prev {
    width: 4.5rem;
    height: 4.5rem;
    left: auto;
    right: 6rem;
    transition: all .8s ease-in-out;
    top: 100%;
}

.swiper-box-img-button .swiper-button-next {
    width: 4.5rem;
    height: 4.5rem;
    left: auto;
    right: 2rem;
    transition: all .8s ease-in-out;
    top: 100%;
}


.swiper-box-img-button .swiper-button-prev:after, .swiper-box-img-button .swiper-button-next:after {
    display: none;
}


.swiper-box-img-button .second-swiper-button-prev svg .arrow {
    fill: var(--color-elephant);
}

.swiper-box-img-button .second-swiper-button-prev:hover svg .arrow, .swiper-box-img-button .second-swiper-button-next:hover svg .arrow {
    fill: var(--color-tulip-tree);
}

.swiper-box-img-button .second-swiper-button-prev:hover svg .little-ball, .swiper-box-img-button .second-swiper-button-next:hover svg .little-ball {
    fill: var(--color-elephant);
}

.swiper-box-img-button .second-swiper-button-prev {
    width: 4.5rem;
    height: 4.5rem;
    left: auto;
    right: 6rem;
    top: -20px;
    z-index: 10;
    position: absolute;
    transition: all .8s ease-in-out;
}

.swiper-box-img-button .second-swiper-button-next {
    width: 4.5rem;
    height: 4.5rem;
    left: auto;
    right: 2rem;
    top: -20px;
    z-index: 10;
    position: absolute;
    transition: all .8s ease-in-out;
}


.swiper-box-img-button .second-swiper-button-prev:after, .swiper-box-img-button .second-swiper-button-next:after {
    display: none;
}





.swiper-box-img-button .third-swiper-button-prev svg .arrow {
    fill: var(--color-elephant);
}

.swiper-box-img-button .third-swiper-button-prev:hover svg .arrow, .swiper-box-img-button .third-swiper-button-next:hover svg .arrow {
    fill: var(--color-tulip-tree);
}

.swiper-box-img-button .third-swiper-button-prev:hover svg .little-ball, .swiper-box-img-button .third-swiper-button-next:hover svg .little-ball {
    fill: var(--color-elephant);
}

.swiper-box-img-button .third-swiper-button-prev {
    width: 4.5rem;
    height: 4.5rem;
    left: auto;
    right: 6rem;
    top: -20px;
    z-index: 10;
    position: absolute;
    transition: all .8s ease-in-out;
}

.swiper-box-img-button .third-swiper-button-next {
    width: 4.5rem;
    height: 4.5rem;
    left: auto;
    right: 2rem;
    top: -20px;
    z-index: 10;
    position: absolute;
    transition: all .8s ease-in-out;
}


.swiper-box-img-button .third-swiper-button-prev:after, .swiper-box-img-button .third-swiper-button-next:after {
    display: none;
}



.swiper-box-img-button .fourth-swiper-button-prev svg .arrow {
    fill: var(--color-elephant);
}

.swiper-box-img-button .fourth-swiper-button-prev:hover svg .arrow, .swiper-box-img-button .fourth-swiper-button-next:hover svg .arrow {
    fill: var(--color-tulip-tree);
}

.swiper-box-img-button .fourth-swiper-button-prev:hover svg .little-ball, .swiper-box-img-button .fourth-swiper-button-next:hover svg .little-ball {
    fill: var(--color-elephant);
}

.swiper-box-img-button .fourth-swiper-button-prev {
    width: 4.5rem;
    height: 4.5rem;
    left: auto;
    right: 6rem;
    top: -20px;
    z-index: 10;
    position: absolute;
    transition: all .8s ease-in-out;
}

.swiper-box-img-button .fourth-swiper-button-next {
    width: 4.5rem;
    height: 4.5rem;
    left: auto;
    right: 2rem;
    top: -20px;
    z-index: 10;
    position: absolute;
    transition: all .8s ease-in-out;
}


.swiper-box-img-button .fourth-swiper-button-prev:after, .swiper-box-img-button .fourth-swiper-button-next:after {
    display: none;
}




.swiper-box-img-button .fifth-swiper-button-prev svg .arrow {
    fill: var(--color-elephant);
    transition: all .2s ease-in-out;
}

.swiper-box-img-button .fifth-swiper-button-prev:hover svg .arrow, .swiper-box-img-button .fifth-swiper-button-next:hover svg .arrow {
    fill: var(--color-tulip-tree);
}

.swiper-box-img-button .fifth-swiper-button-prev:hover svg .little-ball, .swiper-box-img-button .fifth-swiper-button-next:hover svg .little-ball {
    fill: var(--color-elephant);
}

.swiper-box-img-button .fifth-swiper-button-prev {
    width: 4.5rem;
    height: 4.5rem;
    left: auto;
    right: 6rem;
    top: -20px;
    z-index: 10;
    position: absolute;
    transition: all .8s ease-in-out;
}

.swiper-box-img-button .fifth-swiper-button-next {
    width: 4.5rem;
    height: 4.5rem;
    left: auto;
    right: 2rem;
    top: -20px;
    z-index: 10;
    position: absolute;
    transition: all .8s ease-in-out;
}


.swiper-box-img-button .fifth-swiper-button-prev:after, .swiper-box-img-button .fifth-swiper-button-next:after {
    display: none;
}


.buttons-bottom {
    position: fixed;
    bottom: -1rem;
    right: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    transform: scale(0.8);
}

.buttons-bottom a {
    margin-bottom: 2rem;
}

.button-messages {
    position: relative;
}

.whatsapp {
    position: relative;
}

.whatsapp figure {
    position: absolute;
    top: -18px;
    margin: auto;
    left: -18px;
    z-index: 0;
}

.whatsapp:hover .bg-whats {
    fill: var(--color-light);
    stroke: var(--color-bilbao);
    transition: all .2s ease-in-out;
}

.whatsapp:hover .whats-phone {
    fill: var(--color-bilbao);
    transition: all .2s ease-in-out;
}

.button-messages figure {
    position: absolute;
    top: -18px;
    margin: auto;
    left: -18px;
    z-index: 0;
}

.buttons-bottom svg {
    position: relative;
    z-index: 1;
}

.button-messages:hover .bg-ball {
    fill: var(--color-elephant);
    transition: all .2s ease-in-out;
}

.button-messages:hover .mini-ball {
    fill: var(--color-tulip-tree);
    transition: all .2s ease-in-out;
}

.back-to-top {
    position: relative;
}

.back-to-top figure {
    position: absolute;
    top: -18px;
    margin: auto;
    left: -18px;
    z-index: 0;
}

.back-to-top:hover .bg-ball {
    fill: var(--color-elephant);
    transition: all .2s ease-in-out;
}

.back-to-top:hover .arrow-to-top {
    fill: var(--color-tulip-tree);
    transition: all .2s ease-in-out;
}

.area-pages-internas {
    border-top: 1px solid var(--color-casper);
}

.area-pages-internas-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0;
}

.area-pages-internas-header a {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: 400;
    color: var(--color-light);
    transition: all .2s ease-in-out;
}

.area-pages-internas-header a:hover {
    text-decoration: none;
}

.area-pages-internas-header a:last-child {
    color: var(--color-tulip-tree);
}

.area-pages-internas-header span {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: 500;
    color: var(--color-light);
    margin: 0 1rem;
}

.area-pages-internas-header span svg path {
    fill: var(--color-regent-gray);
}

.area-pages-internas-header .page-atual {
    color: var(--color-tulip-tree);
}

.imoveis-type-box {
    display: none;
}

.imoveis-type-box .imoveis-type-box-header ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--color-casper);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 4rem;
}

.imoveis-type-box .imoveis-type-box-header ul li a {
    font-size: 1.6rem;
    line-height: 1.9rem;
    color: var(--color-elephant);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all .2s ease-in-out;
    margin-right: 3rem;
}

.imoveis-type-box .imoveis-type-box-header ul li a:hover {
    color: var(--color-tulip-tree);
    text-decoration: none;
}

.imoveis-type-box .imoveis-type-box-header ul li .line:after {
    bottom: -17px; 
    height: 4px;
}

.imoveis-type-box .imoveis-type-box-header ul li:last-child a {
    margin-right: 0;
}

.type-box-content {
    position: relative;
}

.type-box-content select {
    height: 5.2rem;
    line-height: 5.2rem;
    width: 100%;
    border-radius: .5rem;
    appearance: none;
    border: 1px solid var(--color-casper);
    background: var(--color-wild-sand);
    font-size: 1.6rem;
    color: var(--color-elephant);
    font-weight: 400;
    padding: 0 2.5rem;
    cursor: pointer;
}

.type-box-content select:focus {
    outline: 0;
}

.type-box-content input {
    height: 5.2rem;
    line-height: 5.2rem;
    width: 100%;
    border-radius: .5rem;
    position: relative;
    border: 1px solid var(--color-casper);
    background: var(--color-wild-sand);
    font-size: 1.6rem;
    color: var(--color-elephant);
    font-weight: 400;
    padding: 0 1.5rem 0 5rem;
}

.type-box-content input:focus {
    outline: 0;
}

.type-box-content input::placeholder {
    color: var(--color-elephant);
}

.type-box-content button {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.5rem;
    border: 1px solid transparent;
    background: transparent;
}

.type-box-content span {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2.5rem;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
}
.imoveis-type-box-body .up-side {
    margin-bottom: 2rem;
}

.imoveis-type-box-body .button-white {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5rem;
    height: 5.2rem;
    line-height: 5.2rem;
    transition: all .2s ease-in-out;
    border-radius: 1rem;
}

.imoveis-type-box-body .button-white:hover {
    text-decoration: none;
    background: var(--color-tulip-tree);
    color: var(--color-elephant);
}

.imoveis-type-box-body .button-white.show-map {
    text-decoration: none;
    background: var(--color-tulip-tree);
    color: var(--color-elephant);
    border: 1px solid transparent;
}

.imoveis-type-box-body .button-white.show-map svg path {
    fill: var(--color-elephant);
}

.imoveis-type-box-body .button-white:hover svg path {
    fill: var(--color-elephant);
}

.imoveis-type-box-body .down-side .valor-precos {
    height: 5.2rem;
    line-height: 5.2rem;
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--color-casper);
    background: var(--color-wild-sand);
    font-size: 1.6rem;
    color: var(--color-elephant);
    font-weight: 400;
    padding: 0 2.5rem;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.box-valor .list-dropbox {
    display: none;
    background: var(--color-light);
    left: 1.5rem;
    padding: 3rem;
}

.box-valor .list-dropbox img {
    right: 18rem !important;
    left: auto;
}

.box-valor .list-dropbox.active-dropbox {
    display: flex;
}

.box-valor .list-dropbox .form-prices .prices-input {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.box-valor .list-dropbox .form-prices .prices-input input {
    height: 5.2rem;
    line-height: 5.2rem;
    border-radius: .5rem;
    border: 1px solid var(--color-casper);
    background: var(--color-wild-sand);
    font-size: 1.6rem;
    color: var(--color-elephant);
    font-weight: 400;
    padding: 0 2.5rem;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    max-width: 17rem;
}

.box-valor .list-dropbox .form-prices .prices-input input::placeholder {
    color: var(--color-elephant);
}

.prices .form-prices span {
    font-weight: 600;
}

.prices p {
    margin-bottom: 1.5rem;
}

.prices .form-prices input:focus {
    outline: var(--color-elephant);
}

.prices-button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.prices-button div span {
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: var(--color-elephant);
    font-weight: 500;
    margin-left: 1rem;
    transform: translateY(1px);
}

.prices-button div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.area-mapa {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.area-mapa strong {
    font-size: 2.4rem;
    line-height: 2.8rem;
    font-weight: 600;
    color: var(--color-elephant);
    margin-bottom: 1.5rem;
    display: block;
}

.area-white-subtitle {
    font-size: 2.4rem;
    line-height: 2.8rem;
    font-weight: 600;
    color: var(--color-elephant);
    margin-bottom: 1.5rem;
    display: block;
}

.area-mapa .area-mapa-swipers {
    height: auto;
    overflow-y: hidden;
    overflow-x: hidden;
    padding-right: 3rem;
}

.active .area-mapa .area-mapa-swipers{
    overflow-y: scroll;
}

.area-mapa-swipers .box-imoveis .box {
    min-height: 41.5rem;
    max-height: 100%;
}





.imoveis-type-box-body .button-white

.area-swiper-internas {
    margin: 1rem;
    max-height: 63.5rem;
    height: 100%;
    padding: 9px;
}

.swiper-internas {
    max-height: 65rem;
    position: relative;
}

.swiper-internas .small-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.swiper-internas .small-img div {
    border-radius: 1.5rem;
   overflow: hidden;
}

.swiper-internas .small-img a{
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: all .2s ease-in-out;
    position: relative;
    border-radius: 1.5rem;
}

.swiper-internas .small-img {
    overflow: hidden;
    width: 100%;
    height: 63.4rem;
    transition: all .2s ease-in-out;
    border-radius: 1.5rem;
}

.swiper-internas .big-img a:hover img,
.swiper-internas .small-img a:hover img {
    transform: scale(1.1);
}

.swiper-internas .small-img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s;
}

.swiper-internas .big-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: all 0.2s ease-in-out;
    border-radius: 1.5rem;
}

.swiper-internas .big-img div {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.swiper-internas .big-img a img {
    transition: all 0.2s;
}

.swiper-internas .swiper-button-internas-prev {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5rem;
    background: var(--color-elephant);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto;
    z-index: 10;
    height: 6.5rem;
    width: 6.5rem;
    box-shadow: 0.5rem 0.5rem 7rem rgb(0 0 0 / 20%);
    transition: all .2s ease-in-out;
}

.swiper-internas .swiper-button-internas-prev svg {
    position: absolute;
    width: 2rem;
    height: 3rem;
}

.swiper-internas .swiper-button-internas-prev svg path {
    fill: var(--color-light);
}

.swiper-internas .swiper-button-internas-prev:hover {
    background: var(--color-light);
}

.swiper-internas .swiper-button-internas-prev:hover svg path {
    fill: var(--color-elephant);
}

.swiper-internas .swiper-button-internas-next {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5rem;
    background: var(--color-elephant);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    z-index: 10;
    height: 6.5rem;
    width: 6.5rem;
    box-shadow: 0.5rem 0.5rem 7rem rgb(0 0 0 / 20%);
    transition: all .2s ease-in-out;
}

.swiper-internas .swiper-button-internas-next svg {
    position: absolute;
    width: 2rem;
    height: 3rem;
}

.swiper-internas .swiper-button-internas-next:hover {
    background: var(--color-light);
}

.swiper-internas .swiper-button-internas-next:hover svg path {
    fill: var(--color-elephant);
}

.swiper-internas .swiper-button-internas-next svg path {
    fill: var(--color-light);
}

.ativo svg path {
    color: var(--color-mandy)!important;
}

.photo-menu {
    position: absolute;
    top: -7.5rem;
    left: 1.5rem;
    z-index: 20;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto !important;
    height: auto !important;
}

.photo-menu a {
    color: var(--color-light);
    font-size: 1.6rem;
    height: 4rem;
    line-height: 4rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: .5rem;
    background: var(--color-elephant);
    padding: 0 1.5rem;
    margin-right: 1.2rem;
    transition: all .2s ease-in-out;
    border: 1px solid transparent;
}

.photo-menu a:hover {
    color: var(--color-elephant);
    background: var(--color-tulip-tree);
}

.photo-menu a .icon-tenis-hover {
    display: none;
}

.photo-menu a:hover svg path {
    fill: var(--color-elephant);
}

.photo-menu a:hover .icon-tenis {
    display: none;
}

.photo-menu a:hover .icon-tenis-hover {
    display: block;
}

.photo-menu a:last-child {
    margin-right: 0;
}

.photo-menu a svg {
    margin-right: 1rem;
}

.photo-menu a svg path {
    fill: var(--color-light);
}

svg,
svg path {
    transition: all .2s ease-in-out;
}

.area-white-internas .area-pages-internas-header a {
    font-weight: 500;
    color: var(--color-regent-gray);
}

.area-white-internas .area-pages-internas-header .page-atual {
    font-weight: 500;
    color: var(--color-tulip-tree);
}

h3 {
    font-size: 2.4rem;
    line-height: 3.8rem;
    font-weight: 600;
    color: var(--color-elephant);
    margin-bottom: 0;
}

.imovel-description {
    border-top: 1px solid var(--color-casper);
    padding: 3rem 0;
}

.codigo-imovel {
    font-size: 1.3rem;
    line-height: 1.6rem;
    font-weight: 500;
    color: #bcc0c5;
    margin-bottom: 2.5rem;
    display: block;
}

.imovel-localization {
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: var(--color-elephant);
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.imovel-localization svg {
    margin-right: 1rem;
}

.imovel-detalhes {
    border-top: 1px solid var(--color-casper);
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.imovel-detalhes div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.imovel-detalhes div svg {
    margin-right: 1.5rem;
}

.imovel-detalhes div span {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: var(--color-elephant);
    font-weight: 500;
}

.imovel-detalhes .detalhe-none span {
    color: #b1b9c2;
}

.sobre-imovel {
    border-top: 1px solid var(--color-casper);
    padding: 3rem 0;
}

.sobre-imovel .sobre-description {
    height: 80%;
}

.sobre-imovel .sobre-description.active {
    height: 100%;
}

.sobre-imovel .sobre-description p {
    font-size: 1.6rem;
    line-height: 2.7rem;
    color: var(--color-elephant);
    font-weight: 500;
}

.sobre {
    padding-bottom: 1rem;
    position: relative;
}

.button-mostrar-mais {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 8rem 0 0;
    width: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
}

.button-mostrar-mais span {
    display: block;
    font-size: 1.6rem;
    line-height: 1.8rem;
    text-decoration: underline;
    color: var(--color-elephant);
    font-weight: 500;
    cursor: pointer;
}

.box-anuncie-imovel {
    display: grid;
    grid-template-columns: .3fr .7fr;
    gap: 1rem;
    border: 1px solid var(--color-casper);
    border-radius: 1rem;
    padding: 3rem;
}

.box-anuncie-imovel .button-yellow {
    margin-left: 0;
    display: inline-block;
    font-weight: 500;
}

.box-anuncie-imovel p {
    margin-bottom: 2rem;
    line-height: 2.4rem;
}

.box-anuncie-imovel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-55px);
}

.box-stick {
    margin-top: -6rem;
    z-index: 10;
    position: sticky;
    top: 1rem;
}

.box-valores-totais {
    padding: 2rem;
    border: 1px solid var(--color-casper);
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: var(--color-light);
}

.other-values {
    width: 100%;
    margin-bottom: 1.5rem;
}

.other-values div {
    border-bottom: 1px solid var(--color-casper);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.other-values div span {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: var(--color-elephant);
    font-weight: 500;
}

.other-values div strong {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: var(--color-elephant);
    font-weight: 700;
}

.box-valores-totais .button-yellow {
    margin-left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.box-valores-totais .button-yellow svg {
    width: 2.4rem;
    height: 2.4rem;
}

.box-valores-totais .button-blue svg {
    width: 2.4rem;
    height: 2.4rem;
}

.box-valores-totais .button-blue {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.box-valores-totais .button-blue svg {
    width: 2.4rem;
    height: 2.4rem;
}

.box-valores-totais .button-blue svg path {
    fill: var(--color-light);
}

.box-valores-totais .button-blue:hover svg path {
    fill: var(--color-elephant);
}

.buttons-imoveis-swiper-internas {
    bottom: auto;
    top: 1rem;
}

.area-white-internas {
    margin-bottom: 4rem;
    position: relative;
}

.imoveis-message {
    display: grid;
    grid-template-columns: .9fr .1fr;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 2rem .5rem 0;
}

.imoveis-message svg {
    width: 4.5rem;
    height: 4.5rem;
}

.imoveis-message p {
    font-size: 1.3rem;
    line-height: 1.6rem;
}

.area-swiper-imoveis-interna strong {
    font-size: 2.4rem;
    line-height: 2.8rem;
    color: var(--color-elephant);
    font-weight: 600;
    margin-bottom: 4rem;
    display: block;
}

.area-white-privacidade {
    padding: 5rem 0;
    background: var(--color-light);
}

.area-white-privacidade p {
    line-height: 3.2rem;
    margin-bottom: 4.5rem;
}

.area-white-privacidade p span {
    display: block;
}

.area-white-privacidade strong {
    font-size: 1.6rem;
    line-height: 3.2rem;
    color: var(--color-elephant);
    font-weight: 600;
    margin-bottom: 2rem;
    display: block;
}

.area-white-privacidade h2 {
    margin-bottom: 2rem;
    display: block;
}

.area-politica-privacidade {
    position: relative;
    /* background: url(../images/bg-gray.jpg) center no-repeat;
    background-size: cover; */
}

.area-white-privacidade svg {
    margin-bottom: 10rem;
}

.area-politica-privacidade img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

/* .area-politica-privacidade .copyright {
    background: transparent;
} */

.historia-interna {
    background: url(../images/bg-gray.jpg) center no-repeat;
    background-size: cover;
    padding-bottom: 9.5rem;
}

.historia-header {
    position: relative;
    text-align: center;
    padding: 4.5rem 0;
}

.historia-header svg {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    margin: auto;
}

.historia-header h2 {
    margin-bottom: 2rem;
    color: var(--color-light);
}

.historia-header p {
    margin-bottom: 3.5rem;
    line-height: 2.5rem;
    color: var(--color-light);
}

.historia-header p:last-child {
    margin-bottom: 0;
}

.historia-box-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border: 1px solid var(--color-casper);
    border-radius: 2rem;
    padding: 2.5rem 4.5rem 4.5rem 3rem;
    background: var(--color-light);
    width: 100%;
    margin-bottom: 3rem;
}

.historia-box-content svg {
    margin-bottom: 2.5rem;
}

.historia-box-content strong {
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    line-height: 2.6rem;
    font-weight: 600;
    color: var(--color-elephant);
}

.historia-box-content p {
    line-height: 2.6rem;
}

.box-experience {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 3.5rem;
}

.box-experience span {
    font-size: 3.2rem;
    line-height: 4rem;
    color: var(--color-light);
    font-weight: 600;
    margin-bottom: 3rem;
}

.box-experience a {
    font-size: 1.6rem;
    line-height: 1.9rem;
    color: var(--color-tulip-tree);
    text-decoration: underline;
    transition: all .2s ease-in-out;
}

.box-experience a:hover {
    opacity: .7rem;
}

.box-experience.mobile {
    display: none;
}

.close-menu {
    transform: translateY(10px);
    cursor: pointer;
    color: #000;
}

.menu-mobile {
    background: var(--color-light);
    height: 100vh;
    z-index: 30;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
    position: fixed;
    width: 100%;
    display: none;
}

.menu-mobile-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.open-menu {
    transform: translateY(10px);
    display: block;
}

.open-menu svg path {
    fill: var(--color-tulip-tree);
}

.second-menu {
    display: none;
    flex-direction: column;
}

.menu-mobile-body {
    padding: 2rem;
    width: 100%;
}

.menu-mobile-body ul {
    list-style: none;
    padding: 0;
}

.menu-mobile-body ul li a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 3rem;
    line-height: 3.5rem;
    color: var(--color-elephant);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 2rem;
}

.menu-mobile-body ul li .submenu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 3rem;
    line-height: 3.5rem;
    color: var(--color-elephant);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 2rem;
}

.menu-mobile-body ul li .submenu svg path {
    fill:rgb(20, 46, 73);
}

.menu-mobile-footer {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.menu-mobile-footer div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.banner-slider {
    height: 70vh;
    background: var(--color-biscay);
}

.banner-slider .container {
    position: relative;
}

.area-encontrar {
    /* max-width: 11rem; */
    width: 100%;
    position: absolute;
    top: 7rem;
    left: 0;
    z-index: 10;
}

.title-encontrar {
    position: absolute;
    bottom: 23%;
    left: 26%;
}

.title-encontrar strong {
    font-size: 4.5rem;
    line-height: 5.4rem;
    color: var(--color-light);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.title-encontrar strong span {
    color: var(--color-tulip-tree);
}

.title-encontrar svg {
    position: absolute;
    top: -1.5rem;
    left: 16.5%;
}

.box-encontrar {
    padding: 3rem;
    border: 1px solid transparent;
    border-radius: 1.5rem;
    background: rgb(18,41,65);
    background: linear-gradient(90deg, rgba(18,41,65,1) 0%, rgba(18,41,65,0.9) 30%, rgba(18,41,65,0.8) 67%, rgba(18,41,65,0.7) 100%);
}

.box-selection {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #59697e;
    padding-bottom: 1.5rem;
}

.box-selection span {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--color-light);
    position: relative;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.box-selection div span.active {
    color: var(--color-tulip-tree);
    position: relative;
}

.box-selection div span.active::after {
    content: '';
    opacity: 1;
    transform-origin: unset;
    transform: scale(1, 1);
    bottom: 2px;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f2ab3e;
    border-radius: 1rem;
}

.box-selection span:hover {
    color: var(--color-tulip-tree);
}

.box-selection div span:first-child {
    margin-right: 3rem;
}

.box-selection div span.line:after {
    bottom: -18px;
}

.form-banner {
    padding-top: 2.5rem;
    display: grid;
    grid-template-columns: 4fr 4.7fr 1.3fr;
    gap: 2rem;
}

.form-banner select {
    height: 5rem;
    line-height: 5rem;
    padding: 0 2.5rem;
    font-size: 1.5rem;
    color: var(--color-elephant);
    background: var(--color-light) url(../images/arrow-down.png) center no-repeat;
    border: 1px solid transparent;
    border-radius: 1rem;
    width: 100%;
    appearance: none;
    background-position-x: calc(100% - 25px);
}

.form-banner select:focus {
    outline: 0;
}

.form-banner input {
    height: 5rem;
    line-height: 5rem;
    padding: 0 2.5rem;
    font-size: 1.5rem;
    color: var(--color-elephant);
    background: var(--color-light) url(../images/icon-localization.png) center no-repeat;
    background-position-x: 2rem;
    border: 1px solid transparent;
    border-radius: 1rem;
    width: 100%;
    padding: 0 2rem 0 6rem;
}

.form-banner input::placeholder {
    color: var(--color-elephant);
}

.form-banner input:focus {
    outline: 0;
}

.form-banner button {
    height: 5rem;
    line-height: 5rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-elephant);
    background: var(--color-tulip-tree);
    border: 1px solid transparent;
    border-radius: 1rem;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease-in-out;
    left: 0;
}

.form-banner button:hover {
    opacity: .7;
}

.area-comprar {
    display: none;
    flex-direction: column;
}

.comprar-options {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5rem;
    padding-top: 3rem;
    display: none;
}

.comprar-options div input[type="radio"] {
    display: none;
}

.comprar-options div label {
    position: relative;
    font-size: 1.6rem;
    line-height: 1.9rem;
    color: var(--color-light);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.comprar-options div label:before {
    content: '';
    height: 2rem;
    width: 2rem;
    border-radius: 5rem;
    border: 1px solid var(--color-light);
    margin-right: 1rem;
    display: inline-block;
}

.comprar-options div label:after {
    content: '';
    height: 2rem;
    width: 2rem;
    border-radius: 5rem;
    border: 1px solid transparent;
    margin-right: 1rem;
    display: inline-block;
    display: none;
}

.comprar-options div input[type="radio"]:checked + label {
    color: var(--color-tulip-tree);
}

.comprar-options div input[type="radio"]:checked + label:before {
    border: 5px solid var(--color-elephant);
    background: var(--color-tulip-tree);
}

.comprar-options div input[type="radio"]:checked + label:after {
    display: block;
    border: 1px solid var(--color-tulip-tree);
    position: absolute;
}

.area-swiper-internas {
    padding: 10px;
}

.swiper-banner {
    height: 100%;
}

.swiper-banner .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.swiper-banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-banner .swiper-pagination-bullet {
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}

.swiper-banner .swiper-pagination-bullet-active {
    background: var(--color-tulip-tree);
}

.swiper-img {
    position: relative;
}

.swiper-venda-aluga {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 1.3rem;
    height: 3rem;
    line-height: 3rem;
    background: var(--color-light);
    color: var(--color-elephant);
    border: 1px solid transparent;
    border-radius: .5rem;
    padding: 0 1.5rem;
    z-index: 10;
    font-weight: 500;
}

.swiper-oferta {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.3rem;
    height: 3rem;
    line-height: 3rem;
    background: var(--color-tulip-tree);
    color: var(--color-elephant);
    border: 1px solid transparent;
    border-radius: .5rem;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    gap: 1rem;
    font-weight: 500;
}

.indicadores-economicos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding: 3rem;
    border-radius: 14px;
    background: #011f39;
}

.indicadores-economicos div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.indicadores-economicos div span {
    font-size: 1.6rem;
    line-height: 2.1rem;
    color: white;
    font-weight: 500;
    display: flex;
    gap: 1rem;
}

.indicadores-economicos div .indicadores {
    margin-bottom: 1rem;
}

.bg-blue {
    position: relative;
    margin: 1.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
}

.background-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 1.5rem;
}

.page-imoveis-mapa .box-encontrar {
    padding: 3rem 0 3rem;
    border: 1px solid transparent;
    background: transparent;
}

.form-banner.comprar.page-imoveis-mapa .imoveis-type-box-body {
    width: 100%;
}

.form-banner.comprar.page-imoveis-mapa .up-side {
    display: grid;
    grid-template-columns: .3fr .6fr .3fr;
    gap: 2rem;
}

.form-banner.comprar.page-imoveis-mapa .down-side {
    display: grid;
    grid-template-columns: .3fr .3fr .3fr .3fr;
    gap: 2rem;
}

.form-banner.comprar.page-imoveis-mapa .third-side {
    display: grid;
    grid-template-columns: .3fr .3fr .3fr.3fr;
    gap: 2rem;
}

.form-banner.comprar.page-imoveis-mapa .down-side .mid-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.img-onda {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    opacity: .3;
}

.page-historia .img-onda {
    width: auto;
    height: auto;
}

.page-historia {
    margin: 1.5rem;
}

.page-home .img-onda {
    width: 100%;
    height: auto;
    left: 0;
}

.mapa-area-interna {
    display: none;
    position: relative;
    z-index: 10;
    padding: 0 10px 6px 10px;
    border-radius: 1.5rem;
    overflow: hidden;
}

.mapa-area-interna iframe {
    border-radius: 1.5rem;
}

.fale-com-corretor strong {
    font-size: 1.6rem;
    line-height: 1.9rem;
    color: var(--color-elephant);
    font-weight:600;
    margin-bottom: 1rem;
    display: block;
}

.form-corretor input {
    height: 4rem;
    line-height: 4rem;
    padding: 0 1.5rem;
    font-size: 1.3rem;
    color: var(--color-elephant);
    font-weight: 500;
    border: 1px solid #b7c8d5;
    border-radius: 1rem;
    box-shadow: 5px 5px 5px rgb(0 0 0 / 5%);
    margin-bottom: 2rem;
    width: 100%;
}

.form-corretor input:focus {
    outline: 0;
}

.form-corretor textarea {
    width: 100%;
    line-height: 2rem;
    padding: 1.5rem;
    font-size: 1.3rem;
    color: var(--color-elephant);
    font-weight: 500;
    border: 1px solid #b7c8d5;
    border-radius: 1rem;
    box-shadow: 5px 5px 5px rgb(0 0 0 / 5%);
    margin-bottom: 2rem;
}

.form-corretor textarea:focus {
    outline: 0;
}

.fale-com-corretor {
    width: 100%;
}

.form-banner.comprar.page-imoveis-mapa {
    display: block;
}

.area-form {
    height: 100%;
    display: flex;
    align-items: center;
}

.contato-form .input-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.contato-form .input-block label {
    font-size: 1.6rem;
    line-height: 2.5rem;
    color: var(--color-light);
    font-family: 'Poppins', sans-serif;
    margin-bottom: .5rem;
    font-weight: 500;
}

.contato-form .input-block input,
.contato-form .input-block select {
    width: 100%;
    height: 5rem;
    line-height: 5rem;
    background: var(--color-light);
    color: var(--color-elephant);
    font-size: 1.6rem;
    border: 1px solid transparent;
    border-radius: 1rem;
    padding: 0 1rem;
}

.contato-form .input-block input:focus {
    outline: 0;
}

.contato-form .input-block textarea {
    width: 100%;
    line-height: 2.5rem;
    background: var(--color-light);
    color: var(--color-elephant);
    font-size: 1.6rem;
    border: 1px solid transparent;
    border-radius: 1rem;
    padding: 1rem;
}

.contato-form .input-block textarea:focus {
    outline: 0;
}

.contato-form .button-yellow {
    margin: 0;
    padding: 1rem 5rem;
    font-weight: 600;
}

.contato-form .button-yellow:hover {
    color: var(--color-elephant);
    background: var(--color-light);
}

.page-contato {
    margin: 1.5rem;
}

.page-contato .img-onda {
    width: 30%;
    height: 40%;
}

h4 {
    font-size: 3.2rem;
    line-height: 4.1rem;
    color: var(--color-light);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.final-message a {
    display: block;
    font-size: 1.6rem;
    line-height: 2.1rem;
    text-decoration: underline;
    color: var(--color-tulip-tree);
    transition: all .3s ease-in-out;
}

.final-message a:hover {
    color: var(--color-light);
}

.img-contato {
    width: 100%;
}

.area-telefone {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    gap: 3rem;
    margin-top: 3rem;
}

.area-telefone svg {
    margin-bottom: 0;
}

.area-telefone div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.area-telefone div strong {
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 2.5rem;
}

.area-telefone div span {
    display: block;
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 2.5rem;
    color: var(--color-elephant);
    font-weight: 500;
}


.match-toggle { 
    margin: 20px 0; 
    /* border-radius: 2rem; */
}
.match-toggle.active .toggle-header i { transform: rotate(180deg); }
.match-toggle.active .toggle-body { display: block; }

.toggle-header i { transform: rotate(0); margin-right: 5px; }
.toggle-header { 
    color: #000; 
    cursor: pointer; 
    background: var(--color-light) url('../images/arrow-down-perguntas.png') left center no-repeat;
    background-position-x: calc(100% - 3.3rem);
    transition: all .4s ease-in-out;
    border-radius: 2rem;
    padding: 2.5rem 7rem 2.5rem 2.5rem;
}
.match-toggle.active .toggle-header { 
    background: var(--color-tulip-tree) url('../images/arrow-up-perguntas.png') left center no-repeat;
    background-position-x: calc(100% - 3.3rem);
    transition: all .4s ease-in-out;
    border-radius: 2rem 2rem 0 0;
}

.match-toggle.active {transition: all .4s ease-in-out;}

.toggle-header strong { 
    font-size: 1.9rem;
    line-height: 2.8rem;
    color: var(--color-elephant);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding-left: 0;
}

.toggle-body { 
    padding: 1.5rem 0; 
    display: none; 
    background: var(--color-tulip-tree);
    border-radius: 0 0 2rem 2rem;
    padding: 1rem 2.5rem 2.5rem;
    opacity: 0;
    animation-name: slide;
    animation-duration: .3s;
    animation-timing-function: ease;
    animation-delay: .2s;
    animation-fill-mode: forwards;
}

.toggle-body p {
    font-size: 1.6rem;
    line-height: 2.5rem;
    color: var(--color-elephant);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch input[type=checkbox]:checked + .box-imoveis {
    display: none;
}

.area-box-imoveis-swipers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.mapa {
    height: 100%;
    display: none;
}

.active .mapa {
    display: block;
}

.page-imoveis-mapa-swipers .col-12.col-md-6 {
    flex: 0 0 25%;
    max-width: 25%;
}

.active .page-imoveis-mapa-swipers .col-12.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.mapa-version {
    grid-template-columns: 1fr 1fr;
    /* overflow-y: hidden; */
    height: auto;
    
}
.active .mapa-version {
    grid-template-columns: 1fr 1fr;
    height: 100vh; 
    /* overflow-y: visible; */
    margin-bottom: 10rem;
}

.active .area-box-imoveis-swipers {
    grid-template-columns: 1fr 1fr ;
}

.mapa-version {
    display: none;
}

.active .imoveis-version {
    display: none;
}

.active .mapa-version {
    display: block;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-light);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    left: 1px;
    bottom: 0px;
    background-color: var(--color-light);
    -webkit-transition: .4s;
    transition: .4s;
}
  
input:checked + .slider {
    background-color: #47617c;
}
  
input:focus + .slider {
    box-shadow: 0 0 1px #47617c;
}
  
input:checked + .slider:before {
    -webkit-transform: translateX(27px);
    -ms-transform: translateX(27px);
    transform: translateX(27px);
    background-color: var(--color-tulip-tree);
}
  
.slider.round {
    border-radius: 43px;
    background: #47617c;
}
  
.slider.round:before {
    border-radius: 50%;
}

.busca-avancada-mobile-filtros {
    display: grid;
    grid-template-columns: .6fr .4fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 0 1.5rem;
    display: none;
}

.busca-avancada-mobile-filtros .filtros {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: var(--color-light);
    height: 4rem;
    line-height: 4rem;
    border-radius: .5rem;
    padding: 0 1rem;
}

.busca-avancada-mobile-filtros .filtros p {
    color: var(--color-elephant);
    font-size: 1.3rem;
}

.busca-avancada-mobile-filtros .filtros span {
    color: var(--color-elephant);
    font-size: 1.3rem;
    background: var(--color-tulip-tree);
    border-radius: 5rem;
    height: 2rem;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    margin-right: .5rem;
}

.number-filtros {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.mapa-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.mapa-toggle span {
    font-size: 1.3rem;
    color: var(--color-light);
}

.busca-mobile-page {
    background: #244161;
    overflow: hidden;
    position: fixed;
    z-index: 30;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4rem;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    padding: 3rem;
    display: none;
    animation: busca .3s linear;
}

@keyframes busca {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.busca-mobile-page-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.busca-mobile-page-header div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1.5rem;
}

.busca-mobile-page-header div span {
    font-size: 1.9rem;
    line-height: 2.5rem;
    font-weight: 600;
    color: var(--color-light);
}

.busca-mobile-page-header .close-menu {
    transform: translateY(0);
    cursor: pointer;
    color: #fff;
}

.busca-mobile-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mobile-metragem {
    display: grid;
    grid-template-columns: .6fr .4fr;
    gap: 0;
}

.metragem {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background: var(--color-light);
    border: 1px solid transparent;
    height: 5rem;
    line-height: 5rem;
    padding: 0 2rem;
    border-radius: 2rem;
    gap: 3rem;
}

.metragem p, .metragem span {
    font-size: 1.3rem;
    color: var(--color-elephant);
}

.metragem div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
}

.metragem:first-child {
    border-radius: .5rem 0 0 .5rem;
    border-right: 1px solid #888888;
}

.metragem:last-child {
    border-radius: 0 .5rem .5rem 0;
    border-left: 1px solid #888888;
}

.metragem input {
    width: 30px;
    border: 1px solid transparent;
    font-size: 1.3rem;
    color: var(--color-elephant);
    height: 4rem;
    line-height: 4rem;
    background-image: none !important;
    padding: 0 !important;
}

.busca-mobile-page .type-box-content input {
    font-size: 1.3rem;
    padding: 0 1.5rem 0 4rem;
}

.busca-mobile-page .type-box-content .mobile-icon-localization {
    position: absolute;
    top: 0;
    left: 13px;
    bottom: 0;
    z-index: 30;
    margin: auto;
}

.limpar-filtros {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    color: var(--color-light);
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: 500;
}

.busca-mobile-page .type-box-content .button-yellow {
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
    background: var(--color-tulip-tree);
    border: 1px solid transparent;
    border-radius: .5rem;
    height: 5rem;
    line-height: 5rem;
    left: 0;
    font-weight: 500;
}

.map-desktop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 1rem;
}

.map-desktop span {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: var(--color-light);
}

.map-desktop svg {
    margin-right: 1rem;
}

.map-desktop svg path {
    fill: var(--color-light);
}

.buttoes-tour-360 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4.5rem;
}

.buttoes-tour-360 a {
    height: 5.5rem;
    line-height: 5.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: var(--color-light);
    border: 1px solid transparent;
    border-radius: 1rem;
    padding: 0 2rem;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 10%);
    transition: all .3s ease-in-out;
    font-size: 1.5rem;
    color: var(--color-elephant);
    font-weight: 500;
}

.buttoes-tour-360 a:hover {
    text-decoration: none;
    color: var(--color-tulip-tree);
    border: 1px solid var(--color-tulip-tree);
}

.swiper-internas.mobile-version {
    display: none;
}

.button-back {
    margin-bottom: 2rem;
    display: inline-block;
    height: 4.8rem;
    font-size: 3rem;
    line-height: 4.8rem;
    color: var(--color-elephant);
    font-weight: 500;
}

.button-back svg {
    transform: rotate(180deg);
    width: 3rem;
}

.button-back svg path {
    fill: var(--color-elephant);
}

.close-menu-filtros {
    color: var(--color-light);
}

.page-blog .historia-interna {
    padding-bottom: 0;
}

.area-blog {
    padding: 4rem 0 8rem;
}

.area-blog .blog {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 6rem;
}

.area-blog .blog a {
    transition: all .3s ease-in-out;
}

.area-blog .blog a:hover {
    text-decoration: none;
}

.area-blog a .blog-img {
    width: 100%;
    height: 19rem;
    overflow: hidden;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    transition: all .3s ease-in-out;
}

.area-blog a .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-blog a .blog-date {
    display: block;
    font-size: 1.4rem;
    line-height: 1.9rem;
    font-weight: 500;
    color: var(--color-elephant);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    transition: all .3s ease-in-out;
}

.area-blog a .blog-title {
    font-size: 1.8rem;
    line-height: 2.5rem;
    font-weight: 500;
    color: var(--color-elephant);
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    transition: all .3s ease-in-out;
}

.area-blog a:hover .blog-date {
    color: var(--color-tulip-tree);
}

.area-blog a:hover .blog-title {
    color: var(--color-tulip-tree);
}

.area-barra-paginas {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.area-barra-paginas .paginas {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-elephant);
    background: var(--color-light);
    border: 1px solid var(--color-casper);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    transition: all .3s ease-in-out;
}

.area-barra-paginas .paginas:hover {
    text-decoration: none;
    background: var(--color-tulip-tree);
    border: 1px solid transparent;
}

.area-blog-interna {
    margin-bottom: 5.5rem;
    padding-bottom: 5.5rem;
    border-bottom: 1px solid var(--color-casper);
}

.area-blog-interna .blog-date {
    display: block;
    font-size: 1.4rem;
    line-height: 1.9rem;
    font-weight: 500;
    color: var(--color-elephant);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    transition: all .3s ease-in-out;
}

.area-blog-interna .blog-title {
    font-size: 3.2rem;
    line-height: 4.1rem;
    font-weight: 600;
    color: var(--color-elephant);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2.5rem;
}

.area-blog-interna .blog-img {
    width: 100%;
    height: 45rem;
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.area-blog-interna .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-blog-interna .blog-notice-description p {
    font-size: 1.8rem;
    line-height: 2.8rem;
    font-weight: 500;
    color: var(--color-elephant);
    margin-bottom: 4.5rem;
}

.area-blog-interna .blog-notice-description p:last-child {
    margin-bottom: 0;
}

.noticias-relacionadas {
    font-size: 2.4rem;
    line-height: 2.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-bottom: 3rem;
}

.dropbox-preco {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 45rem;
    top: 65%;
    left: -1.5rem !important;
}

.dropbox-preco .prices-input {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.dropbox-preco .prices-input input {
    background: #f5f5f5;
    border: 1px solid #b7c8d5;
    padding: 0 2rem;
    border-radius: 1rem;
    font-weight: 600;
}

.dropbox-preco .prices-button {
    align-items: center;
}

.dropbox-preco .prices-button button {
    max-width: 14rem;
}

.dropbox-preco .prices-button input {
    width: 2rem;
    height: 2rem;
}

.page-imoveis-mapa {
    overflow: visible;
}

.header-redes-sociais {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-right: 1rem;
}

.header-redes-sociais a {
    transition: all .3s ease-in-out;
}

.header-redes-sociais a:hover {
    opacity: .5;
}

.area-consultor {
    position: relative;
    z-index: 10;
    padding: 3rem 0;
}

.consultor-title {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 3rem;
}

.consultor {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.consultor figure {
    border: 7px solid #f2ab3e;
    width: 10rem;
    height: 10rem;
    border-radius: 10rem;
    overflow: hidden;
}

.consultor figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.up-side-consultor {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
}

.redes-sociais-consultor {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
}

.up-side-consultor span {
    display: inline-block;
    font-size: 2.4rem;
    line-height: 3rem;
    font-weight: 600;
    color: var(--color-light);
}

.up-side-consultor {
    margin-bottom: 1rem;
}

.up-side-consultor a {
    transition: all .3s ease-in-out;
}

.up-side-consultor a:hover {
    opacity: .8;
}

.down-side-consultor a {
    font-size: 1.6rem;
    line-height: 2.2rem;
    color: var(--color-light);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    transition: all .3s ease-in-out;
    text-decoration: none;
}

.down-side-consultor a:hover {
    text-decoration: none;
    color: var(--color-tulip-tree);
}

@keyframes slide {
    to {
        opacity: 1;
    }
}

@media(min-width: 1201px) and (max-width: 1400px) {
    .area-yellow-footer .infos-empresa {
        justify-content: center; 
    }

    .bg-left-footer {
        bottom: -5rem;
        left: 2rem;
    }

    .bg-left-footer image {
        width: 50%; 
    }

    .bg-right-footer image {
        width: 50%; 
    }

    .bg-right-footer {
        position: absolute;
        bottom: -50px;
        right: -140px;
    }    

    .box-imoveis .box .box-img .swiper .swiper-slide {
        height: 20rem;
    }

    .area-blog-interna .blog-notice-description p {
        font-size: 1.6rem;
        line-height: 2.5rem;
        margin-bottom: 3rem;
    }

    .area-blog-interna .blog-img {
        height: 38rem;
    }

    .area-blog-interna .blog-title {
        font-size: 2.8rem;
        line-height: 3.6rem;
    }
}

@media( min-width: 992px) and (max-width: 1200px) {
    p {
        font-size: 1.3rem;
        line-height: 1.6rem;
    }
    

    header .menu ul {
        justify-content: center;
    }

    header .menu ul li a {
        font-size: 1.2rem;
        line-height: 1.5rem;
        margin: 0 1rem;
    }

    header .menu ul li span {
        font-size: 1.2rem;
        line-height: 1.5rem;
        margin: 0 1rem;
    }

    .button-yellow {
        font-size: 1.3rem;
        padding: 0 1rem;
        margin-left: 0;
    }

    header .button-yellow {
        font-size: 1.2rem;
        margin-left: 1.5rem;
        font-weight: 600;
        height: 3rem;
        line-height: 3rem;
    }

    .header-venda {
        transform: translateY(0px);
    }

    .box-imoveis .box.special .box-description {
        padding: 0;
    }

    .area-blue img {
        right: -5rem;
    }

    .box-noticias {
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .box-bairros {
        gap: 2rem;
        padding: 0 1rem;
    }

    footer {
        margin: 0 1.5rem;
        margin-top: -1.5rem;
    }

    .area-yellow-footer {
        margin: 0 1.5rem;
    }

    footer div span {
        font-size: 1.8rem;
        line-height: 2rem;
    }

    .footer-redes-sociais a {
        margin-right: 1rem;
    }

    h2 {
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .area-yellow-footer .infos-empresa svg {
        margin-right: 2rem;
    }

    .box-noticias .noticia-description p {
        font-size: 1.6rem;
        line-height: 2rem;
        padding-right: 1rem;
    }

    .area-blue img {
        top: -5rem;
        right: -3rem;
        width: 300px;
    }

    .box-imoveis .box .box-img .swiper .swiper-slide {
        height: 20rem;
    }
}

@media(min-width: 821px) {

    .menu-mobile {
        display: none;
    }
}

@media (min-width: 822px) and (max-width: 991px) {
    header .col-12.col-md-7  {
        display: none !important;
    }

    header .col-12.col-md-3 {
        display: none !important;
    }

    .historia-box-content {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .historia-box-content strong {
        margin-bottom: 2rem;
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .historia-box-content p {
        line-height: 2.2rem;
        font-size: 1.4rem;
    }

    .area-telefone div span {
        font-size: 1.4rem;
        line-height: 2.2rem;
    }
}

@media(max-width: 821px) {
    header .col-12.col-md-7  {
        display: none !important;
    }

    header .col-12.col-md-3 {
        display: none !important;
    }

    br {
        display: none;
    }

    header {
        padding: 2rem;
    }

    .menu {
        display: none;
    }

    /* .menu-mobile {
        display: flex;
    } */

    .header-venda {
       display: none;
    }

    .col-6 {
        padding: 0;
    }

    .area-white {
        padding: 3rem 0;
    }

    h1 {
        font-size: 3rem;
        line-height: 3.5rem;
        margin-bottom: 3rem;
    }

    .area-imoveis-choise {
        flex-direction: column;
    }

    .choise-city {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .choise-buttons {
        width: 100%;
    }

    .choise-buttons .button-white {
        margin-bottom: 2rem;
    }

    .button-white {
        margin-left: 0;
        width: 100%;
        font-size: 1.4rem;
    }

    .button-blue {
        margin-left: 0;
        width: 100%;
    }

    .box.special {
        padding: 1.5rem;
    }

    .box-imoveis .box .box-description {
        padding: 2rem;
    }

    .imoveis-button {
        bottom: 6.5rem;
        right: 1.5rem;
    }

    .more-pages {
        padding-top: 4rem;
    }

    .area-blue img {
        width: 100px;
        bottom: -61rem;
        right: 0;
        left: 0;
        margin: auto;
    }

    .area-blue {
        margin: 0 2.5rem;
        padding: 2rem 0 20rem;
    }

    .area-venda {
        background: var(--color-tulip-tree);
        text-align: center;
        border-radius: 2rem;
        max-width: 100%;
        padding: 2rem;
    }

    .area-venda .button-blue {
        padding: 0 1rem;
        font-size: 1.3rem;
        margin-left: 0;
    }

    .area-venda h2 {
        margin-bottom: 2rem;
        font-size: 2.6rem;
        line-height: 3rem;
    }

    .box-noticias {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .box-noticias .noticia-date {
        margin-bottom: 1.5rem;
    }

    .box-noticias .noticia-description p {
        font-size: 1.5rem;
        line-height: 2rem;
        padding-right: 1rem;
    }

    .box-postagens {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .area-instagram .more-pages .button-blue {
        justify-content: space-around;
    }

    .area-instagram {
        padding: 3rem 0;
        margin: 0 2rem;
    }

    .area-instagram .area-title {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    
    .box-bairros {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        padding: 0 1.5rem;
    }

    .bairros {
        height: 20rem;
    }

    .bairro-big {
        height: 30rem;
    }

    .area-yellow-footer .infos-empresa {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }

    .area-yellow-footer .infos-empresa svg {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .area-yellow-footer .infos-empresa .big-text {
        font-size: 5rem;
        line-height: 5.5rem;
    }

    .area-yellow-footer .infos-empresa p {
        font-size: 1.7rem;
        line-height: 2rem;
    }

    .area-yellow-footer {
        padding: 3rem 0;
        margin: 0;
    }

    .bg-right-footer {
        display: none;
    }

    .bg-left-footer {
        display: none;
    }

    footer {
        padding: 4rem 0;     
        margin: -1.5rem 0;
    }

    footer div span {
        font-size: 2rem;
        line-height: 2.3rem;
        margin-bottom: 2rem;
    }

    .google-meu-negocio {
        margin-bottom: 2rem;
    }

    .form-footer {
        margin-bottom: 2rem;
    }

    .copyright .copyright-content {
        flex-direction: column;
    }

    .copyright .copyright-content div {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3rem 0 1.5rem;
    }

    .copyright .copyright-content div span {
        margin-left: 0;
        height: auto;
        flex-direction: column;
        text-align: center;
        padding: 0 3rem;
    }

    .copyright .copyright-content div svg {
        margin-bottom: 2rem;
    }

    p {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }

    .copyright .copyright-content div p {
        margin-bottom: 1rem;
    }

    .box-imoveis .box .box-img .swiper .swiper-slide {
        height: 20rem;
    }

    .imoveis-type-box-header {
        overflow-x: scroll;
        width: 100%;
        margin-bottom: 2rem;
        border-bottom: 1px solid var(--color-casper);
    }

    .imoveis-type-box .imoveis-type-box-header ul {
        border-bottom: none;
        margin-bottom: 0;
    }

    .imoveis-type-box-body .up-side {
        margin-bottom: 1.5rem;
    }

    .imoveis-type-box .imoveis-type-box-header ul li a {
        margin-right: 1.5rem;
    }

    .type-box-content{
        margin-bottom: 1.5rem;
    }

    .box-valor {
        margin-bottom: 1.5rem;
    }

    .area-mapa .col-12.col-md-6 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .area-mapa .area-mapa-swipers {
        height: 100vh;
        margin-bottom: 3rem;
        padding: 0;
    }

    .area-mapa {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }  

    .area-mapa strong {
        font-size: 1.8rem;
        line-height: 2.3rem;
    }

    .box-valor .list-dropbox {
        left: 1.5rem;
        padding: 1.5rem;
        width: 90%;
        top: 6rem;
    }

    .box-valor .list-dropbox .form-prices .prices-input {
        gap: 1rem;
        margin-bottom: 2rem;
        flex-direction: column;
    }

    .box-valor .list-dropbox .form-prices .prices-input input {
        width: 100%;
        max-width: 100%;
    }

    .imoveis-type-box-body .down-side .valor-precos p {
        font-size: 1.4rem;
    }

    .box-valor .list-dropbox img {
        right: 1.5rem !important;
        left: auto;
    }

    .buttons-bottom {
        bottom: 1rem;
        right: 1rem;
    }

    .type-box-content select {
        font-size: 1.4rem;
    }

    .type-box-content input {
        font-size: 1.4rem;
    }

    .area-white-privacidade {
        padding: 3rem 2rem;
        margin-top: 3rem;
    }

    .area-white-privacidade svg {
        margin-bottom: 4rem;
    }

    .area-white-privacidade h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .area-white-privacidade p {
        line-height: 3rem;
        margin-bottom: 2rem;
    }

    .area-white-privacidade strong {
        font-size: 1.4rem;
        line-height: 2.5rem;
        margin-bottom: 2rem;
    }

    .box-experience.mobile {
        display: flex;
        margin-top: 0;
        padding: 0 2rem;
    }

    .box-experience.mobile span {
        font-size: 2.5rem;
        line-height: 3rem;
        margin-bottom: 1.5rem;
    }

    .box-experience {
        display: none;
    }
    
    .historia-interna {
        padding-bottom: 3rem;
    }

    .historia-header h2 {
        margin-bottom: 2rem;
    }

    .historia-header p {
        margin-bottom: 2rem;
    }

    .historia-box-content {
        padding: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .historia-box-content strong {
        margin-bottom: 1rem;
        font-size: 1.8rem;
        line-height: 2.2rem;
    }

    .swiper-internas {
        height: 50rem;
    }

    .swiper-internas .big-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .swiper-internas .small-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .photo-menu a {
        margin-right: 0;
    }

    .imovel-detalhes {
        padding: 2rem 0;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .sobre-imovel .sobre-description p {
        font-size: 1.3rem;
        line-height: 2.3rem;
        color: var(--color-elephant);
        font-weight: 500;
    }

    .sobre-imovel .sobre-description {
        height: 80%;
    }

    .box-anuncie-imovel {
        grid-template-columns: 1fr;
        padding: 2rem;
        margin-bottom: 2rem;
        justify-items: center;
        text-align: center;
    }

    .box-stick {
        margin-top: 0;
    }

    .area-swiper-imoveis-interna .imoveis-button {
        bottom: auto;
        z-index: 20;
    }

    .box-anuncie-imovel .button-yellow {
        width: 100%;
    }

    .box-anuncie-imovel img {
        width: 80%;
        transform: translateX(0);
    }

    .box-valores-totais .button-blue svg {
        width: 2rem;
        height: 2rem;
    }

    .box-valores-totais .button-yellow svg {
        width: 2rem;
        height: 2rem;
    }

    .box-valores-totais .button-green svg {
        width: 2rem;
        height: 2rem;
    }

    .imoveis-message {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
        justify-items: center;
    }
    .buttons-imoveis-swiper-internas {
        bottom: auto !important;
        top: -1rem;
        z-index: 20 !important;
    }

    .area-swiper-imoveis-interna strong {
        font-size: 1.7rem;
        line-height: 2.2rem;
        margin-bottom: 3rem;
    }

    h3 {
        font-size: 2rem;
        line-height: 3rem;
    }

    .imovel-localization {
        font-size: 1.4rem;
        line-height: 1.6;
        display: grid;
        grid-template-columns: 10% 90%;
    }

    .buttons-bottom a {
        margin-bottom: 0;
        transform: scale(0.7);
    }

    .photo-menu {
        top: -13rem;
        left: 0;
        right: 0;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 3rem;;
    }

    .box-encontrar {
        padding: 2rem;
    }

    .area-encontrar {
        padding: 0;
        top: 3rem;
    }

    .title-encontrar {
        bottom: 10rem;
        left: 2rem;
    }

    .title-encontrar strong {
        font-size: 2.5rem;
        line-height: 3.3rem;
    }

    .title-encontrar strong br {
        display: block;
    }

    .title-encontrar svg {
        top: -1.5rem;
        left: 33%;
    }

    .box-selection span {
        font-size: 1.3rem;
        line-height: 1.6rem;
    }

    .comprar-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .form-banner {
        grid-template-columns: 1fr;
    }

    .form-banner input {
        background-position-x: 1rem;
        padding: 0 2rem 0 4rem;
    }

    .form-banner button {
        justify-content: center;
    }

    .indicadores-economicos {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .swiper-banner .swiper-slide {
        position: relative;
    }

    .swiper-banner .swiper-slide img {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: auto;
        object-fit: unset;
    }

    .box-selection div span:first-child {
        margin-right: 1rem;
    }

    .banner-slider {
        height: 65vh;
    }

    .bg-blue {
        margin: 0 !important;
        border-radius: 0 !important;
    }

    .background-blue {
        border-radius: 0 !important;
    }

    .mapa-area-interna iframe {
        height: 50rem;
    }

    .mapa-area-interna.mapa-street-view iframe {
        height: 50rem;
    }

    .toggle-header strong {
        font-size: 1.5rem;
        line-height: 2.2rem;
    }

    .toggle-header {
        background-position-x: calc(100% - 1rem);
        padding: 2rem 6.5rem 2rem 2rem;
    }

    .match-toggle.active .toggle-header {
        background-position-x: calc(100% - 1rem);
    }

    .toggle-body p {
        font-size: 1.4rem;
        line-height: 2.2rem;
    }

    .toggle-body {
        padding: 1rem 2rem 2rem;
    }

    .img-contato {
        margin: 3rem 0;
    }

    h4 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .contato-form .button-yellow {
        width: 100%;
    }

    .busca-avancada-mobile-filtros {
        display: grid;
    }

    .buttoes-tour-360 {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .mapa {
        height: 60vh;
    }

    .page-imoveis-mapa-swipers .col-12.col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    

    .active .page-imoveis-mapa-swipers .col-12.col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .active .area-mapa .area-mapa-swipers {
        display: none;
    }

    .active .mapa-version {
        height: auto;
        margin-bottom: 0;
    }

    

    .area-blog .blog a .blog-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .area-blog {
        padding: 3rem 0;
    }

    .area-blog-interna .blog-title {
        font-size: 2.5rem;
        line-height: 3.5rem;
    }

    .area-blog-interna .blog-img {
        height: 30rem;
    }

    .area-blog-interna .blog-notice-description p {
        font-size: 1.5rem;
        line-height: 2.3rem;
        margin-bottom: 3rem;
    }

    .area-blog-interna {
        margin-bottom: 4rem;
        padding-bottom: 4rem;
    }

    .page-imoveis-interna {
        padding-bottom: 12rem;
    }

    .consultor {
        flex-direction: column;
        gap: 1rem;
    }

    .up-side-consultor {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .buttons-bottom {
        transform: scale(1);
    }

    .page-imoveis-mapa .box-encontrar {
        display: none;
    }

    .metragem input {
        width: 30px;
    }

    .metragem {
        padding: 0 1rem;
    }

    .swiper-internas {
        display: none;
    }

    .swiper-internas.mobile-version {
        display: block;
    }

    .swiper-internas.mobile-version .small-img{
        grid-template-columns: 1fr;
    }

    .area-blog .blog {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-bottom: 4rem;
    }
}

@media (min-width: 768px) and (max-width: 821px) {
    .box-valores-totais {
        padding: 2rem 1rem;
        align-items: center;
    }

    .box-valores-totais .button-yellow {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .box-valores-totais .button-blue {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .box-valores-totais .button-green {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .other-values div {
        flex-direction: column;
        align-items: center;
    }

    .historia-box-content {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .historia-box-content strong {
        margin-bottom: 2rem;
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .historia-box-content p {
        line-height: 2.2rem;
        font-size: 1.4rem;
    }

    .area-telefone div span {
        font-size: 1.4rem;
        line-height: 2.2rem;
    }

    header .col-12.col-md-4.d-none.d-md-block {
        display: none !important;
    }

    header .col-12.col-md-6.d-none.d-md-block {
        display: none !important;
    }

    .area-blog .blog {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
        padding-bottom: 2rem;
    }
}

.clearfix {
    display: block;
    clear: both;
}
