@import url('editor.css');

/*======== reset =======*/
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    line-height: 1;
    font-size: 10px;
    font-style: normal;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Montserrat', sans-serif;

    overflow-x: hidden;
    background: transparent;
    scroll-behavior: smooth;
}


ol, 
ul, 
li { 
    list-style: none; 
    padding: 0;
}

a { 
    text-decoration: none; 
    color: initial; 
}

input,
button { 
    border: none; 
    outline: none; 
    background: none; 
    font-family: 'Montserrat', sans-serif; 
}

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

input,
button { 
    font-family: 'Montserrat', sans-serif; 
    background: none; 
    border: none; 
    outline: none; 
}

img {
    width: 100%;
    height: auto;
}

:root {
    --color-dark: #444242; 
    --color-white: #ffffff;
    --color-green: #406069; 
    --color-dark-green: #2e3e41; 
}

input:internal-autofil-selected { background: none; }

.grid-1 { max-width: 8.33% } .grid-2 { max-width: 16.66% }
.grid-3 { max-width: 25%} .grid-4 { max-width: 33.33% }
.grid-5 { max-width: 41.66% } .grid-6 { max-width: 50%} 
.grid-7 { max-width: 58.33% } .grid-8 { max-width: 66.66% }
.grid-9 { max-width: 75%} .grid-10 { max-width: 83.33% }
.grid-11 { max-width: 91.66% } .grid-12 { max-width: 100%} 

.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7,
.grid-8, .grid-9, .grid-10, .grid-11, .grid-12 { width: 100%;  }

.container {
    max-width: 1169px;
    margin: 0 auto;
}


/*====== display config ======*/
.flex {display: flex;}
.flex.wrap {flex-wrap: wrap}
.flex.column {flex-direction: column;}
.flex.justify-end{justify-content: end;}
.flex.justify-center{justify-content: center;}
.flex.justify-around{justify-content: space-around;}
.flex.justify-between{justify-content: space-between;}
.flex.align-start {align-items: flex-start;}
.flex.align-center {align-items: center;}
.flex.align-end {align-items: flex-end;}
.flex.row-reverse {flex-direction: row-reverse;}
.flex.align-end{ align-self: flex-end; }

.text-align-start { text-align: start }
.text-align-center { text-align: center }
.text-align-end { text-align: end }

.p-fixed    { position: fixed;    }
.p-relative { position: relative; }
.p-absolute { position: absolute; }

.z-index-below { z-index: -1; }
.z-index-min   { z-index: 0;  }
.z-index-med   { z-index: 5;  }
.z-index-max   { z-index: 15; }


.padding-default-med { padding: 11rem 0; }
.padding-default-left { padding-left: 11rem; }

.padding-top-min {  padding-top: 6rem; }
.padding-bottom-default { padding-bottom: 8rem; }

.overflow-hidden { overflow: hidden; }

/*==== colors =====*/
.color-white { color: var(--color-white); }
.color-dark-green { color: var(--color-dark-green); }
.color-green { color: var(--color-green); }
.color-dark { color: var(--color-dark); }

.background-white { background: var(--color-white); }
.background-dark-green { background: var(--color-dark-green); }
.background-green { background: var(--color-green); }
.background-dark { background: var(--color-dark); }


/*=== acessibility ====*/ 
.for-sreader { 
    text-indent: -99999rem; 
    overflow: hidden; 
} 

/*=== separators =====*/
.sep-title {
    position: relative;
    margin-bottom: 4rem;
}

.sep-title::after {
    content: '';
    width: 100%;
    height: .1rem;
    display: block;

    position: absolute;
    background: var(--color-dark-green);
}

.splide:after,
.splide:before,
.sep-default:after,
.banner:after  {
    content: '';
    width: 100%;
    height: 100%;

    left: 0;
    right: 0;
    position: absolute;

    background: radial-gradient(circle, rgba(146,145,145,1) 0%, rgba(255,255,255,1) 100%);
    background-size: cover;
}

.splide:after,
.splide:before,
.banner:after {
    z-index: 4;
    height: 4rem;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(146,145,145,1) 100%);
}

.splide:after {
    display: block;
    bottom: 0;
    background: red;
}

.splide:before { 
    height: 1.4rem;
}

.banner:after {
    height: calc(100% - .2rem);
    width: 1.5rem;
}


.detail-effect:after {      
    content: '';
    width: 100%;
    height: 100%;
    
    top: 0;
    display: block;
    position: absolute;
    pointer-events: none; 
    
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: multiply;
    background: url(../../assets/images/bg-detail.png);
    background-size: cover;
    background-position: center;
}


/*=== landing page config ====*/
.header { width: 100%; }

.header .nav { padding: 2.5rem 0; }

.header .nav .menu img { min-width: 12rem; }

.header .sep-detail { 
    width: 100%;
    height: .9rem; 
}

header .menu-toggle {
    width: 3rem;
    float: right;

    cursor: pointer;
}

header .menu-toggle div {
    width: 100%;
    height: .3rem;
    margin: 0.8rem 0;

    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;

    background: #ECE9E1;
}

header.menu-visible nav {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);

    -webkit-box-shadow: -5px 5px 5px rgba(0,0,0,0.2);
    box-shadow: -5px 5px 5px rgba(0,0,0,0.2);
}

header.menu-visible .menu-toggle div:nth-child(2) {
    opacity: 0;
}

header.menu-visible .menu-toggle div:nth-child(1) {
    -webkit-transform: translateY(14px) rotate(45deg);
    transform: translateY(14px) rotate(45deg);
}

header.menu-visible .menu-toggle div:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}


.header .nav .menu ul.list-items li {
    margin-left: 2rem;
    position: relative;
}

.header .nav .menu ul.list-items li.sep-default:after,
.header .nav .menu ul.menu_mobile-toggle .sep-default:after,
.header .nav .menu .menu_mobile ul.menu_mobile-toggle li:after,
.plants .topics .list > li .items li:after {
    width: 0%;
    height: .3rem;

    bottom: -.8rem;
    transition: width ease .3s;
}

.header .nav .menu ul.list-items li a {
    color: var(--color-white);
    transition: font-weight ease-in .3s;
}

.header .nav .menu .menu_mobile { display: none; }

.intro {
    height: 40rem;
    min-height: 35vw;
    margin-top: 16rem;

    background: url(../../assets/images/bg-intro.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.intro.sep-default:after {
    height: 2.5rem;
    bottom: 0;
}

.intro .content {  
    width: 55vw;
    max-width: 55vw;
    min-height: 25rem;

    right: 0;
    top: calc(40% - 2.5rem);
    position: absolute;
}

.intro .content > div { 
    top: 50%;
    left: 8.5rem;
    position: absolute;
    transform: translateY(-50%);
}

.reasons .divideBg {
    top: 0;
    right: 0;
    bottom: 0;
    width: 39vw;
}

.reasons.padding-default-med { padding-bottom: 0; }

.reasons ul.list li,
.convenience ul.list li {
    padding: 2rem 0;
    position: relative;    
}

.list-detail:after,
.reasons-list .list-detail li:after,
.convenience .list-detail li:after {
    content: '';
    width: 100%;
    height: .2rem;

    left: 0;
    bottom: 0;
    position: absolute;
    background: var(--color-dark);
}

.reasons-list .list-detail:after {
    background: var(--color-white);
}

.reasons-list .list-detail li:after,
.convenience .list-detail li:after {display: none;}

.reasons-list .list-detail li:after {
    width: calc(100% + 2px);
}

.reasons-list .banner h2 {
    top: 50%;
    right: 12.5rem;
    transform: translateY(-50%);
}

.details.gallery {
    padding: 22rem 0 15.5rem;
}

.details.gallery .splide  .splide__pagination {
    top: 0;
    right: auto;
    left: -4.4rem;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
}

.details.gallery .splide  .splide__pagination li button {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--color-dark-green);
}

.details.gallery .splide  .splide__pagination li button.splide__pagination__page {
    background: transparent;
}

.details.gallery .splide  .splide__pagination li button.splide__pagination__page.is-active {
    opacity: 1;
    transform: scale(1);
    background: var(--color-dark-green);
}

.convenience {
    padding-top: 0;
}

.convenience .gallery {
    gap: 1.5rem;
    margin-top: -3.5rem;
}

.convenience .gallery img {
    width: 28rem;
    height: auto;
}

.convenience .divideBg {
    top: 0;
    left: 0;
    bottom: 0;
    width: 80.4vw;
}

.convenience .list-detail:after { background: var(--color-white); }

.plants .detail-effect:after {
    top: 50%;
    z-index: -1;
    transform: rotate(180deg);
}
.plants .topics .list > li {
    cursor: pointer;
    padding-bottom: 2rem;
}

.plants .topics .list > li .items {
    opacity: 0;
    max-height: 0;
    padding-left: 2rem;
    transition: max-height .3s ease, opacity .3s ease;
}

.plants .topics .list > li .items.active {
    opacity: 1;
    max-height: 90rem;
}

.plants .topics .list > li .items li {
    padding: 2rem 0 .5rem;
    max-width: fit-content;
    pointer-events: none;
}

.plants .topics .list > li .items.active li {
    cursor: pointer;
    pointer-events: visible;
}

.plants .topics .list > li:last-child .items li:last-child{
    margin-bottom: 0;
}

.plants .topics .list > li .items li.active {
    font-weight: 700;
}

.plants .topics .list > li .items li.active:after {
    width: 100%;
    height: .4rem;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(146,145,145,1) 100%);
}

.plants .images div {
    cursor: pointer;
    display: none;
    max-height: 55rem;
    position: relative;
    justify-content: flex-end;
}

.plants .images div img {
    object-fit: contain;
}

.plants .images div.active { display: flex; }
.plants .images div:after,
.details.gallery .splide:after {
    content: url('../../assets/images/lupa.svg');

    width: 6rem;
    height: 6rem;
    padding: 3rem;
    background: var(--color-dark-green);

    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);

    pointer-events: none;
    transition: opacity .3s ease;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

.contact .cta {padding: 5.4rem 0 4rem;}

.contact .form input, .contact .form input::placeholder {
    font-weight: 400;
    color: var(--color-white);
}

.contact .form input {
    position: relative;
    margin: 2rem 0 1rem;
    padding: 0 1.8rem .4rem;
    border-bottom: 1px solid var(--color-white);
}

.contact .form .msg {
    padding: .5rem 1rem;
    transform: translateY(-50%);
    transition: all .3s ease-in;
}

.contact .form .msg.error {
    opacity: 0;
    position: absolute;
    bottom: -1.6rem;
}

.contact .form .group.invalid .msg.error {
    opacity: 1;
    background: #990100;
    transform: translateY(0%);
}

.contact .form .msg.success {
    opacity: 0;
    padding: 0;
    margin-top: -1rem;
    text-align: end;
    transform: translateY(0%);
    position: relative;
    bottom: -2rem;
}

.contact .form input:last-child {margin-bottom: 2.4rem;}
.contact .form ::-webkit-inner-spin-button { display: none; }

.contact .btn, .contact .obs span.obs_adendo { 
    font-size: 10px;
    line-height: 12px;
}

.contact button[type=submit] {
    margin-top: 2rem;
    color: var(--color-white);
    cursor: pointer;
    max-width: fit-content;
    transition: .2s ease-in-out;
}

.contact button[type=submit]:hover {
    color: var(--color-white);
}

.contato .visite,
.contact .obs {
    text-align: center;
    margin-top: 6.0rem;
}

.contact .obs .obs_instagram {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact .obs .obs_instagram .ig { color: var(--color-white); font-weight: 700; }

.contact .text_cta-venda h4 {
    font-size: 3.3rem;
    font-weight: 400;
    line-height: 1.5;
}

.contact .text_cta-venda .contato {
    gap: 2.0rem;
    flex-wrap: wrap;
    margin-top: 6.0rem;
    flex-direction: column;
    justify-content: center;
}

.contact .text_cta-venda .contato a {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--color-white);

    gap: 0.5rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.contact .text_cta-venda .contato a span.icon-whatsapp {
    font-size: 2.0rem;
}

.copyright {
    font-size: 1.2rem;
    font-weight: 400;
    background: var(--color-green);
    padding: 2.5rem 0;
    text-align: center;
}

.copyright a { font-weight: 700; }

.house-inc {
    display: flex;
    text-align: center;
    align-items: stretch;
    justify-content: center;

    min-height: 7rem;
    background: #191919;
}

.house-inc a {
    width: 10rem;
    display: flex;
    min-height: 100%;
    align-items: center;
    transition: 0.4s ease;
}

.house-inc img {
    width: 100%;
    height: auto;
}

.whatsapp {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 4rem;
    z-index: 999;
    bottom: 2rem;
    right: 2rem;
    position: fixed;

    background: #4ca62f;
    border-radius: 15rem;
    color: var(--color-white);
    transition: transform .3s ease;
}

/*====== animation ======*/
.animate__fade-in,
.animate__slide-up,
.animate__slide-left,
.animate__slide-right {
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: translate3d(0, 10%, 0);
    opacity: 0;
}

.animate__fade-in {
    transform: translate3d(0, 0, 0);
}

.animate__slide-left {
    transform: translate3d(-10%, 0, 0);
}

.animate__slide-right {
    transform: translate3d(10%, 0, 0);
}

.animate__fade-in.visible {
    opacity: 1;
}

.animate__slide-up.visible,
.animate__slide-left.visible,
.animate__slide-right.visible {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.animate__delay-1.visible {
    transition-delay: 0.1s;
}

.animate__delay-2.visible {
    transition-delay: 0.2s;
}

.animate__delay-3.visible {
    transition-delay: 0.3s;
}

.animate__delay-4.visible {
    transition-delay: 0.4s;
}

.animate__delay-5.visible {
    transition-delay: 0.5s;
}

.animate__delay-6.visible {
    transition-delay: 0.6s;
}

.animate__delay-7.visible {
    transition-delay: 0.7s;
}

.animate__delay-8.visible {
    transition-delay: 0.8s;
}



/*====== responsive ======*/
@media (min-width: 992px) {
    .header .nav .menu ul.list-items li.sep-default:hover:after,
    .header .nav .menu ul.list-items li.sep-default.active:after {
        right: 0;
        width: 100%;
    }

    .plants .images div:after,
    .details.gallery .splide:after {
        opacity: 0;
    }

    .plants .images div:hover:after,
    .details.gallery .splide:hover:after {
        opacity: 1;
    }

    .contact .text_cta-venda .contato a:hover {
        color: var(--color-green)
    }

    .details.gallery .splide {
        margin-top: -22rem;
    }

    .whatsapp:hover {
        transform: scale(1.04);
    }

}

@media (max-width: 1440px) {
    .padding-default-left {
        padding-left: 5rem;
    }
}

@media (max-width: 1250px) {
    .container { 
        padding: 0 4rem;
        max-width: 100%; 
    }

    .padding-default-left { 
        padding-left: 0;
    }
    
    .padding-default-med {
        padding: 9rem 0;
    }
    
    .intro {
        margin-top: 12rem;
    }

    .intro .content {
        top: 40%;
        min-height: 20rem;
    }

    .location .padding-default-med {
        padding: 9rem 4rem;
    }

    .reasons .reasons-intro {
        padding-bottom: 11rem;
    } 

    .reasons .reasons-intro img {
        object-fit: cover;
    }

    .convenience { padding: 11rem 0; }
    
    .convenience .content {
        padding-left: 5rem;
        align-items: flex-start;
        flex-direction: column-reverse;
    }

    .convenience .content .gallery {
        margin-top: 5rem;
        max-width: 66.66%;
    } 
}

@media (max-width: 992px) {
    .padding-top-min {  padding-top: 4rem; }
    .padding-bottom-default { padding-bottom: 4rem; }

    .header .sep-detail {
        z-index: -1;
    }

    .header .nav .menu {
        width: auto;
    }

    .header .nav .menu #menu_mobile-icon { 
        width: 3.2rem;
        height: 3.2rem; 
        display: block; 

        cursor: pointer; 
    }

    .header .nav .menu ul.list-items li a { display: none; }
    .header .nav .menu .menu_mobile { display: block; }

    .header .nav .menu .menu_mobile-icon {
        width: 3.6rem;
        height: .3rem;
        display: block;

        transition: .3s ease-in-out;
        background: var(--color-white);
    }
    
    .header .nav .menu .menu_mobile-icon:before,
    .header .nav .menu .menu_mobile-icon:after  {
        content: '';
        
        width: 100%;
        height: .3rem;
        display: block;

        top: 2rem;
        position: relative;
        background: var(--color-white);
    }

    
    .header .nav .menu .menu_mobile-icon:after { top: .7rem; }

    .header .nav .menu .menu_mobile.active .menu_mobile-icon {
        transform: rotate(40deg);
    }

    .header .nav .menu .menu_mobile.active .menu_mobile-icon:after {
        display: none;
    }

    .header .nav .menu .menu_mobile.active .menu_mobile-icon:before {
        top: 0;
        transform: rotate(275deg);
    }
    
    .header .nav .menu .menu_mobile ul.menu_mobile-toggle {
        width: 25rem;
        height: 100vh;
        text-align: center;
        padding: 12.5rem 0 0;
        
        top: 0;
        right: 0;
        bottom: 0;
        position: fixed;

        z-index: -7;
        transition: .3s ease-in-out;
        transform: translateX(25rem);
        background: var(--color-dark-green);
        box-shadow: 0px 135px 8px rgba(0, 0, 0, 0.2);
    }

    .header .nav .menu .menu_mobile ul.menu_mobile-toggle.active {
        transform: translateX(0);
    }

    .header .nav .menu .menu_mobile ul.menu_mobile-toggle li {
        margin-bottom: 4.6rem;
    }

    .header .nav .menu .menu_mobile ul.menu_mobile-toggle li a {
        padding: 1.2rem;

        font-weight: 400;
        font-size: 1.5rem;

        transition: ease-in .3s;
        color: var(--color-white);
    }

    .intro .content {
        width: 80vw;
        max-width: 100vw;

        top: auto;
        bottom: 2rem;
    }

    .intro .content > div {
        left: 5.5rem;
    }

    .reasons.padding-default-med { padding: 9rem 0 0; }
    .reasons .divideBg { display: none; }

    .reasons .reasons-intro .content {
        flex-direction: column;
    }  

    .reasons .reasons-intro .content .grid-5,
    .reasons .reasons-intro .content img { max-width: 100%; }

    .reasons .reasons-intro .content img { 
        margin: 4rem auto 0;
    }

    .reasons-list .banner h2 {
        right: 5.5rem;
    }

    .details.gallery {
        padding: 9rem 0;
    }

    .details.gallery .content {
        flex-direction: column;
    }

    .details.gallery .grid-3 { max-width: 100%; }

    #empreendimento .initial {
        max-width: 100%;
        text-align: center;
        margin-bottom: 4.5rem;
    }

    .details.gallery .splide {
        width: 100%;
        max-width: 100%;

        /* left: auto; */
        position: relative;

        margin-top: 0;
        /* transform: none; */
    }

    .details.gallery .splide  .splide__pagination {
        top: auto;
        left: 0;
        right: 0;
        bottom: -3.6rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .convenience .content {
        padding-left: 0;
    }

    .convenience .content .title {
        max-width: 55%;
    }

    .convenience .list,
    .convenience .content .gallery {
        max-width: 100%;
    }
    
    .convenience .content .gallery {
        justify-content: center;
    }

    .convenience .gallery img { width: 49%; }

    .convenience .divideBg {
        width: 100vw;
    }

    .plants .content {
        align-items: flex-start;
        flex-direction: column;
    }

    .plants .content .images {
        max-width: 70%;
        margin: 2rem auto 0;
    }

    .contact .text_cta-venda h4 {
        font-size: 2.5rem;
    }

    .contact > div { flex-direction: column; }
    .contact .obs { padding-left: 0; }
    .contact .obs.grid-11, .contact .text_cta-venda.grid-5{ max-width: 100%; }
    .contact .obs span.obs { text-align: center; padding-bottom: 4rem;}
    .contact .text_cta-venda.grid-5{ padding-top: 4rem; text-align: center;}
}

@media (min-width: 840px) {
    .location .mapa button.nav-banner {
        display: none;
    }
}

@media (max-width: 840px) {
    .convenience .gallery img {
        width: 47%;
    }

    .location .mapa {
        height: 50rem;
        overflow: hidden;
    }

    .location .mapa img {
        top: 0rem;
        left: 50%;
        width: auto;
        height: 100%;
        position: absolute;
        transition: 0.3s ease;
        transform: translateX(-50%);
    }

    .location .mapa.move-left img {
        left: 0%;
        transform: translateX(0%);
    }

    .location .mapa.move-right img {
        left: 57%;
        transform: translateX(-73%);
    }

    .location .mapa button.nav-banner {
        z-index: 2;
        width: 6.2rem;
        height: 6.2rem;
        display: block;

        bottom: 1.2rem;
        cursor: pointer;
        position: absolute;
        transform: rotate(45deg) scale(0.4);
    }

    .location .mapa button.nav-banner.prev {
        left: 0.8rem;
        box-shadow: -5px 5px 5px rgb(0, 0, 0, 20%);
        border-left: 5px solid rgba(255,255,255,0.8);
        border-bottom: 5px solid rgba(255,255,255,0.8);
    }

    .location .mapa button.nav-banner.next {
        right: 0.8rem;
        box-shadow: 5px -5px 5px rgb(0, 0, 0, 20%);
        border-top: 5px solid rgba(255,255,255,0.8);
        border-right: 5px solid rgba(255,255,255,0.8);
    }

    .contact > div { flex-direction: column; }
    .contact .obs { padding-left: 0; }
    .contact .grid-5 { max-width: 100%;}
    .contact .obs.grid-11, .contact .text_cta-venda.grid-5 { max-width: 100%; }
    .contact .obs span.obs { text-align: center; padding-bottom: 4rem;}
    .contact .text_cta-venda.grid-5{ padding-top: 4rem; text-align: center;}
    .contact .text_cta-venda .contato {justify-content: center}

    .contact .text_cta-venda h4 { font-size: 2.8rem; }
}


@media (max-width: 768px) {
    .intro {
        height: 55rem;
        background-position: left center;
    }

    .intro .content {
        width: 100%;
        max-width: 100%; 
        min-height: 12rem;
        
        top: auto;
        bottom: 2rem;
    }

    .location .padding-default-med {
        padding: 5.5rem 4rem;
    }

    .intro .content > div {
        left: auto;
        right: 5rem;
    }

    .location .content .grid-5,
    .location .content .grid-6,
    .reasons .reasons-list .list ul,
    .reasons .reasons-list .list ul li,
    .convenience .list ul li {
        max-width: 100%;
    }

    .location .content .title {
        margin-bottom: 4rem;
    }

    .convenience .gallery img {
        width: 100%;
        height: auto;
    }

    .convenience .list-detail li:after {
        display: block;
        background: var(--color-white);
    }

    .plants .content .images {
        max-width: 100%; 
    }

    .details.gallery {
        padding: 6rem 0 9rem;
    }

    .plants .images div:after,
    .details.gallery .splide:after {
        width: 4.5rem;
        height: 4.5rem;
        padding: 2.5rem;
    }

    .location .content,
    .reasons .reasons-list .list ul,
    .convenience .list ul {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    html, body {
        font-size: 8px;
    }
    
    .padding-top-min { padding-top: 1rem; }


    .container {
        padding: 0 2rem; 
    }

    .header .nav .menu .grid-4,
    .header .nav .menu .grid-6 { max-width: 100%; }
    
    .intro { 
        background-position: -15rem center;
    }

    .padding-default-med {
        padding: 5.5rem 0;
    }

    .location .mapa { height: 40rem; }

    .reasons.padding-default-med {
        padding: 6rem 0 0;
    }

    .reasons .reasons-intro {
        padding-bottom: 6rem;
    }

    .reasons .reasons-list {
        padding: 0.5rem 0 6rem;
    }

    .reasons .reasons-list .container {
        padding: 0;
    }

    .reasons .reasons-list .list {
        padding: 1rem 2rem 0;
    }

    .plants .topics .list > li .items li {
        font-size: 1.4rem;
    }

    .convenience .content .title {
        max-width: 75%;
    }

    .contact .cta { padding: 3.6rem 0 2rem; }
    .contact .text_cta-venda h4 { font-size: 2.2rem; }
}

@media (max-width: 440px) {
    .location .mapa.move-right img {
        left: 50%;
    }

    .contact .cta { padding: 3.6rem 0 2rem; }
    .contact .text_cta-venda h4 { font-size: 2.2rem; }
    .contact .text_cta-venda h4 { font-size: 2rem; }
}

@media (max-width: 350px) { 
    .intro .content > div {
        left: auto;
        right: 3rem;
    }

    .location .mapa.move-right img {
        left: 42%;
    }
}