/* ----------------------------------------------------------
    Theme Name: Reserva da Serra Theme
    Theme URI: https://marcasite.com.br
    Author: Henrique Quintino
    Author URI: https://www.linkedin.com/in/henrique-quintino/
    Description: Tema oficial da Reserva da Serra criada pela Marcasite
    Requires at least: 6.4
    Tested up to: 6.4
    Requires PHP: 7.0
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    ----------------------------------------------------------

/***************************************************************************
       Fonts
***************************************************************************/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***************************************************************************
       Variáveis
***************************************************************************/

:root {
    --cor-branco: #ffffff;
    --cor-magenta: #542237;
    --cor-neutra: #f1c6a3;
    --cor-cinza: #5c5759;

    --font-Montserrat: "Montserrat", sans-serif;

    --font-extralight: 200;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
}

/***************************************************************************
        All
***************************************************************************/

.transition_on *,
.transition_on {
    transition: ease .5s all !important;
}

html,
body {
    margin: 0;
    overflow-x: clip;
}

* {
    margin: 0;
    box-shadow: 0 0 0 0;
    border: 0 none;
    outline: 0;
    font-family: var(--font-Montserrat);
}

a {
    text-decoration: none;
    color: var(--cor-branco);
}

a:hover {
    text-decoration: none;
    color: var(--cor-branco);
}

h2,
span,
h3 {
    color: var(--cor-magenta);
    font-size: 28px;
    text-transform: uppercase;
}

h2 {
    font-weight: var(--font-extralight);
    margin-bottom: 20px;
}

h2>span,
h3>span {
    font-weight: var(--font-semibold);
}

h3 {
    font-weight: var(--font-extralight);
    font-size: 22px;
}

p,
p>span {
    font-size: 18px;
    color: var(--cor-branco);
}

p {
    font-weight: var(--font-extralight);
}

p>span {
    font-weight: var(--font-medium);
    text-transform: none;
}

img {
    transition: all 0.3s ease-in-out;
    width: 100%;
}

header {
    position: absolute;
    width: 100%;
    padding-top: 100px;
    z-index: 100;
}

header .logo {
    height: 65px;
}

header ul {
    display: flex;
    justify-content: end;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

header ul .nav-item {
    height: 44px;
    display: flex;
    align-items: center;
}

header ul .nav-item .nav-link {
    color: var(--cor-branco);
    font-size: 18px;
    font-weight: var(--font-bold);
    line-height: 20px;
}

.btn-neutro,
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    background-color: var(--cor-neutra);
    min-width: 260px;
    width: fit-content;
    padding: 0 20px;
    height: 60px;
    color: var(--cor-magenta);
    font-weight: var(--font-semibold);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    border-radius: 11px;
}

.btn-neutro:hover,
.btn-whatsapp:hover {
    transform: scale(1.05);
    color: var(--cor-magenta);
}

.btn-neutro img,
.btn-whatsapp img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.btn-whatsapp {
    background-image: -moz-linear-gradient(90deg, rgb(230, 230, 230) 0%, rgb(245, 216, 191) 0%, rgb(82, 141, 60) 0%, rgb(41, 73, 56) 0%, rgb(77, 136, 102) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(230, 230, 230) 0%, rgb(245, 216, 191) 0%, rgb(82, 141, 60) 0%, rgb(41, 73, 56) 0%, rgb(77, 136, 102) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(230, 230, 230) 0%, rgb(245, 216, 191) 0%, rgb(82, 141, 60) 0%, rgb(41, 73, 56) 0%, rgb(77, 136, 102) 100%);
    color: var(--cor-branco);
    font-weight: var(--font-medium);
}

.btn-whatsapp:hover {
    color: var(--cor-branco);
}

/***************************************************************************
        Banner Principal
***************************************************************************/

section.banner-principal {
    padding-top: 220px;
    position: relative;
    background-image: url(img/banner-principal.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 760px;
}

.banner-principal .leaf-banner,
.empreendimento .leaf-banner,
.mapa .leaf-banner {
    width: 300px;
    height: 240px;
    position: absolute;
    bottom: -180px;
    right: 170px;
}

.banner-principal .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 30px;
}

.banner-principal .title hr {
    width: 2.5px;
    height: 100px;
    background-color: var(--cor-magenta);
    margin: 0;
    opacity: 1;
}

.banner-principal h2,
.banner-principal h2>span {
    font-size: 32px;
    color: var(--cor-branco);
}

.banner-principal h2 {
    max-width: 426px;
    line-height: 36px;
    margin-bottom: 0;
}

.banner-principal p,
.banner-principal p>span {
    font-size: 20px;
    max-width: 400px;
    margin-bottom: 25px;
}

.area-btn {
    position: relative;
    cursor: pointer;
}

.area-btn .leaf {
    width: 130px;
    height: 130px;
    position: absolute;
    top: -40px;
    right: -50px;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.area-btn:hover .btn-neutro {
    transform: scale(1.05);
}

.area-btn:hover .leaf {
    transform: scale(0.95);
}

/***************************************************************************
        Sobre
***************************************************************************/

section.sobre {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to bottom, var(--cor-magenta), #5a253c);
    padding: 60px 0;
    min-height: 675px;
}

.sobre .box-banner {
    position: relative;
}

.sobre .offset-lg-1 {
    margin-left: 5.33333333%;
}

.sobre .banner {
    max-width: 800px;
    top: -180px;
    height: 732px;
    z-index: 90;
    position: absolute;
    object-fit: cover;
    border-top-right-radius: 120px;
}

.sobre h2,
.sobre h2>span {
    color: var(--cor-branco);
    max-width: 530px;
}

.sobre p {
    max-width: 490px;
}

.sobre .address {
    margin-bottom: 35px;
}

.sobre .address,
.sobre .address .content .title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sobre .address hr {
    width: 2.5px;
    height: 100%;
    background-color: var(--cor-neutra);
    margin: 0;
    opacity: 1;
}

.sobre .address .content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sobre .address .content .title {
    gap: 8px;
}

.sobre .address .content p,
.sobre .address .content .title h4 {
    margin-bottom: 0;
}

.sobre .address .content .title img {
    width: 21px;
    height: 27px;
    object-fit: contain;
}

.sobre .address .content .title h4 {
    font-size: 22px;
    color: var(--cor-neutra);
    font-weight: var(--font-semibold);
}

/***************************************************************************
        Empreendimento
***************************************************************************/

section.empreendimento {
    padding: 110px 0;
    background-color: #fbfbfb;
    position: relative;
}

.empreendimento .img-principal {
    min-height: 638px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empreendimento .img-principal .box-name {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    bottom: 55px;
    left: 0;
    background-image: -moz-linear-gradient(90deg, rgb(230, 230, 230) 0%, rgb(245, 216, 191) 0%, rgb(82, 141, 60) 0%, rgb(41, 73, 56) 0%, rgb(77, 136, 102) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(230, 230, 230) 0%, rgb(245, 216, 191) 0%, rgb(82, 141, 60) 0%, rgb(41, 73, 56) 0%, rgb(77, 136, 102) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(230, 230, 230) 0%, rgb(245, 216, 191) 0%, rgb(82, 141, 60) 0%, rgb(41, 73, 56) 0%, rgb(77, 136, 102) 100%);
    width: fit-content;
    height: 52px;
    padding: 0 20px;
    border-top-right-radius: 23px;
    border-bottom-right-radius: 23px;
}

.empreendimento .img-principal .box-name h3 {
    color: var(--cor-branco);
    margin-bottom: 0;
}

.empreendimento .img-principal,
.empreendimento .card-empreendimento {
    position: relative;
}

.empreendimento .card-empreendimento img {
    height: 175px;
    object-fit: cover;
    border-radius: 23px;
    margin-bottom: 20px
}

.empreendimento .slick-prev {
    display: none !important;
}

.empreendimento .slick-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(img/seta-empreendimento.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 47px;
    background-color: var(--cor-neutra);
    color: transparent;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.empreendimento .leaf-banner {
    bottom: -170px;
    left: 60px;
    right: auto;
    transform: scaleX(-1);
}

/***************************************************************************
        Business
***************************************************************************/

section.business {
    padding: 110px 0;
}

.business h2 {
    max-width: 800px;
}

.business .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 32px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 14px 32px 0px rgba(13, 11, 13, 0.11);
    padding: 105px 40px 45px 40px;
    position: relative;
    cursor: default;
    transition: all 0.3s ease-in-out;
}

.business .card .box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    background: linear-gradient(to bottom, var(--cor-magenta), #5a253c);
    position: absolute;
    top: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.business .card .box-icon img {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.business .card h3 {
    font-size: 20px;
    font-weight: var(--font-bold);
    text-transform: initial;
}

.business .card p {
    font-size: 16px;
    font-weight: var(--font-medium);
    color: var(--cor-cinza);
    margin-bottom: 0;
    max-width: 200px;
}

/***************************************************************************
        Video
***************************************************************************/

section.video {
    padding-top: 80px;
    padding-bottom: 150px;
}

.video .thumb {
    cursor: pointer;
}

.video iframe {
    display: none;
}

.video .thumb.leaf,
.lote .leaf-2 {
    position: absolute;
    bottom: -70px;
    left: 100px;
    width: 160px;
}

/***************************************************************************
        Lote
***************************************************************************/

section.lote {
    padding-top: 80px;
    background: linear-gradient(to bottom, var(--cor-magenta), #5a253c);
    height: 570px;
    position: relative;
    margin-bottom: 300px;
}

.lote .leaf,
footer .leaf {
    top: -135px;
    right: 0;
    position: absolute;
    width: 280px;
}

.lote h2,
.lote h2>span {
    color: var(--cor-branco);
}

/***************************************************************************
        Bairro
***************************************************************************/

section.bairro {
    padding: 80px 0;
    margin-bottom: 100px;
}

.bairro .logo {
    max-width: 280px;
}

.bairro .card {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 23px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 14px 32px 0px rgba(13, 11, 13, 0.11);
    position: relative;
    cursor: default;
    transition: all 0.3s ease-in-out;
}

.bairro .card img {
    width: 100%;
    max-height: 338px;
    height: 100%;
    object-fit: cover;
    border-radius: 23px;
}

.bairro .card .box-name {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 30px;
    left: 0;
    background-image: -moz-linear-gradient(90deg, rgb(230, 230, 230) 0%, rgb(245, 216, 191) 0%, rgb(82, 141, 60) 0%, rgb(41, 73, 56) 0%, rgb(77, 136, 102) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(230, 230, 230) 0%, rgb(245, 216, 191) 0%, rgb(82, 141, 60) 0%, rgb(41, 73, 56) 0%, rgb(77, 136, 102) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(230, 230, 230) 0%, rgb(245, 216, 191) 0%, rgb(82, 141, 60) 0%, rgb(41, 73, 56) 0%, rgb(77, 136, 102) 100%);
    width: fit-content;
    height: 52px;
    padding: 0 20px;
    border-top-right-radius: 23px;
    border-bottom-right-radius: 23px;
}

.bairro .card .box-name h3 {
    font-size: 18px;
    color: var(--cor-branco);
    margin-bottom: 0;
}

/***************************************************************************
        Mapa
***************************************************************************/

section.mapa {
    position: relative;
}

.mapa iframe {
    width: 100%;
    height: 380px;
    border: 0;
    margin-bottom: -10px;
}

.mapa .leaf-banner {
    bottom: 200px;
}

/***************************************************************************
        Footer
***************************************************************************/

footer {
    padding: 60px 0 20px 0;
    background-image: url(img/banner-footer.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: fit-content;
    position: relative;
}

footer .leaf {
    top: auto;
    bottom: 0;
    left: -40px;
    right: auto;
    transform: scale(-1);
    width: 250px;
}

.card-form {
    position: relative;
    background-color: var(--cor-branco);
    padding: 35px 50px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.11);
    border-radius: 22px;
}

.card-form p {
    margin-bottom: 0px !important;
}

footer h3 {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: var(--font-light);
    max-width: 300px;
}

footer h3>span {
    font-size: 25px;
    color: var(--cor-magenta) !important;
}

form input {
    border-radius: 6px !important;
    background-color: #f6f4f4;
    width: 100%;
    height: 46px;
    padding: 15px;
	margin-bottom: 12px;
}

form .btn-neutro {
    width: 100% !important;
    height: 70px;
    left: 0;
    bottom: 0;
    position: absolute;
    opacity: 1 !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 22px !important;
    border-bottom-right-radius: 22px !important;
    font-size: 20px;
    margin-bottom: 0;
}

form .btn-neutro:hover {
    transform: none;
}

form label {
    color: var(--cor-cinza) !important;
    font-size: 18px;
    font-weight: var(--font-regular);
    margin-bottom: 5px;
}

footer a,
footer span,
footer p {
    color: var(--cor-branco);
}

footer img,
footer a {
    max-width: fit-content;
}

footer .creci {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

footer .creci span {
    font-size: 12px;
    font-weight: var(--font-regular);
    text-transform: uppercase;
}

footer .insta {
    display: flex;
    align-items: center;
    gap: 6px;
}

footer .insta img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

footer .card-form {
    width: 90%;
    margin-top: -110px;
    z-index: 11;
}

footer p,
footer span {
    font-size: 13px;
}

footer .linha-branca {
    width: 100%;
    height: 1px;
    margin: 10px 0;
    background: var(--cor-branco);
    opacity: 0.8;
    border: 0;
}

footer .logo-marcasite {
    width: 220px;
    height: 18px;
    object-fit: contain;
}

/***************************************************************************
        Responsivo
***************************************************************************/

.mobile {
    display: none;
}

@media (max-width: 1750px) {
    footer .leaf {
        width: 200px;
        left: -60px;
    }
}

@media (max-width: 1600px) {
    .lote .leaf {
        width: 220px;
    }

    footer .leaf {
        width: 150px;
        z-index: 10;
        right: 0;
        left: auto;
        bottom: -20px;
        transform: rotate(90deg);
    }
}

@media (max-width: 1399px) {

    .banner-principal .leaf-banner,
    .empreendimento .leaf-banner,
    .mapa .leaf-banner {
        display: none;
    }

    .lote .leaf {
        width: 200px;
    }

    .lote .leaf-2 {
        left: 10px;
    }
}

@media (min-width: 1200px) {
	.card-form {
		max-height: 500px;
	}
}

@media (max-width: 1199px) {
    .banner-principal h2 {
        font-size: 37px;
    }

    .card-form {
        width: 90%;
    }

    .lote .leaf {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    footer .card-form {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .business .card:hover {
        transform: scale(1.06);
    }
}

@media (max-width: 991px) {
    .mobile {
        display: block;
    }

    header {
        padding-top: 40px;
    }

    header ul {
        align-items: center;
    }

    header ul .nav-item.desktop {
        max-width: 230px;
    }

    header .btn-whatsapp {
        width: 100% !important;
        padding: 0 10px;
        font-size: 16px !important;
    }

    section.banner-principal {
        padding-top: 220px;
        padding-bottom: 60px;
        background-position: left;
    }

    .banner-principal h2,
    .banner-principal p {
        max-width: 100%;
    }

    .banner-principal .title {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .box-form {
        justify-content: center !important;
    }

    .card-form {
        width: 65%;
        max-height: 100%;
    }

    .banner-principal .title {
        margin-bottom: 0;
        gap: 0;
    }

    .banner-principal .title hr {
        width: 150px;
        height: 3px;
        order: 2;
        margin: 20px 0;
    }

    .banner-principal .title h2 {
        order: 1;
    }

    section.sobre {
        display: flow;
    }

    .sobre .banner {
        max-width: 700px;
        height: 632px;
        padding-right: 40px;
    }

    .sobre .box-banner {
        height: 540px;
    }

    .sobre .offset-lg-1 {
        margin-left: 0;
    }

    .sobre .box-content {
        padding: 0 35px;
    }

    footer .card-form {
        width: 70%;
        margin-top: 0;
    }

    .empreendimento .img-principal {
        min-height: 500px;
    }

    .empreendimento .card-empreendimento img {
        height: 300px;
    }

    section.lote {
        padding: 60px 0;
        height: 100%;
        margin-bottom: 110px;
    }

    .lote .leaf-2 {
        left: -50px;
    }

    section.business {
        padding-bottom: 50px;
    }

    footer p,
    footer span {
        text-align: center;
    }

    section.bairro {
        margin-bottom: 0;
    }

    footer .leaf {
        display: none;
    }
}

@media (max-width: 767px) {

    .banner-principal h2,
    .banner-principal h2>span {
        font-size: 31px;
        line-height: 35px;
    }

    .desktop {
        display: none !important;
    }

    .card-form,
    footer .card-form {
        width: 80%;
    }

    .sobre .banner {
        max-width: 600px;
        height: 632px;
    }

    .empreendimento .img-principal {
        min-height: 300px;
    }

    .empreendimento .card-empreendimento img {
        height: 180px;
    }

    .empreendimento .img-principal .box-name {
        bottom: 35px;
    }

    .video .thumb.leaf,
    .lote .leaf-2 {
        display: none;
    }

    .twentytwenty-before-label:before,
    .twentytwenty-after-label:before {
        font-size: 12px !important;
    }

    .bafg-twentytwenty-container,
    .skip-lazy.twentytwenty-before,
    .skip-lazy.twentytwenty-after {
        height: 320px !important;
    }
}

@media (max-width: 567px) {

    .card-form,
    footer .card-form {
        width: 90%;
    }

    footer .social {
        flex-direction: column;
    }
}

@media (max-width: 492px) {

    .twentytwenty-before-label:before,
    .twentytwenty-after-label:before {
        padding: 0 10px;
        font-size: 10px !important;
    }
}

@media (max-width: 467px) {
    .banner-principal p {
        font-size: 18px;
    }

    .card-form,
    footer .card-form {
        width: 100%;
    }
}

@media (max-width: 400px) {

    .banner-principal h2,
    .banner-principal h2>span {
        font-size: 24px;
        line-height: 28px;
    }

    .card-form {
        padding: 35px 20px;
    }

    footer h3,
    footer h3>span {
        font-size: 30px;
        line-height: 28px;
    }
}

@media (max-width: 380px) {

    .twentytwenty-before-label:before,
    .twentytwenty-after-label:before {
        font-size: 7px !important;
    }

    footer h3,
    footer h3>span {
        font-size: 25px;
        line-height: 28px;
    }
}

.btn-topo {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 70px;
    left: 12px;
    background-color: var(--cor-magenta);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#btnTopo.show {
    opacity: 1;
}

.btn-topo.disabled {
    cursor: default;
    pointer-events: none;
    opacity: 0;
}

.btn-topo img {
    width: 17px;
    height: 15px;
    transform: rotate(-90deg);
}

.wpcf7-not-valid-tip {
    display: flex;
    font-size: 16px !important;
    background-image: none !important;
    margin-top: -10px;
    margin-bottom: 10px;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #dc3232 !important;
	text-transform: initial !important;
}

.wpcf7-form-control-wrap,
.wpcf7-list-item-label {
    font-size: 16px !important;
    line-height: normal !important;
}

.wpcf7-list-item-label {
    font-size: 13px !important;
    position: relative;
}

.wpcf7-list-item {
    display: flex !important;
    margin: 0 !important;
}

.wpcf7-list-item.first.last {
    position: absolute;
}

.wpcf7-list-item.first.last input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.rodape-form p {
    display: flex;
    margin: 0;
    width: 100%;
    height: 70px;
    margin-top: -10px;
}

.rodape-form p label {
    font-size: 15px;
    margin-left: 15px;
    margin-bottom: 25px;
    margin-top: 15px;
    line-height: 16px;
    text-align: left;
}

.rodape-form p label a {
    color: var(--cor-cinza-claro) !important;
    text-decoration: underline !important;
}

.rodape-form p label a:hover {
    color: var(--cor-cinza-claro) !important;
}

.whatsapp img {
    position: fixed;
    z-index: 99;
    bottom: 86px;
    right: 8px;
    width: 50px;
    height: 50px;
    opacity: 0.7;
    transition: ease .8s all;
}

.whatsapp a:hover img {
    opacity: 1;
    filter: drop-shadow(0px 0px 6px black);
}

.twentytwenty-wrapper {
    width: 100%;
    max-width: 1000px;
}

.bafg-twentytwenty-container {
    border-radius: 18px;
    box-shadow: 0px 14px 32px 0px rgba(13, 11, 13, 0.11);
    max-width: 1000px !important;
}

.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
    display: flex;
    align-items: center;
    background-image: -moz-linear-gradient(90deg, rgb(230, 230, 230) 0%, rgb(245, 216, 191) 0%, rgb(82, 141, 60) 0%, rgb(41, 73, 56) 0%, rgb(77, 136, 102) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(230, 230, 230) 0%, rgb(245, 216, 191) 0%, rgb(82, 141, 60) 0%, rgb(41, 73, 56) 0%, rgb(77, 136, 102) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(230, 230, 230) 0%, rgb(245, 216, 191) 0%, rgb(82, 141, 60) 0%, rgb(41, 73, 56) 0%, rgb(77, 136, 102) 100%);
    height: 40px;
    top: 12% !important;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: var(--font-medium);
}

.twentytwenty-before-label:before {
    border-top-right-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    left: 0 !important;
}

.twentytwenty-after-label:before {
    border-top-left-radius: 16px !important;
    border-bottom-left-radius: 16px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    right: 0 !important;
}

.twentytwenty-handle {
    margin-left: -20px !important;
    background-color: var(--cor-neutra);
    border: 0 !important;
}

.twentytwenty-overlay:hover {
    background: rgba(0, 0, 0, 0) !important;
    border-radius: 25px;
}

.skip-lazy.twentytwenty-before,
.skip-lazy.twentytwenty-after {
    height: 520px;
    object-fit: cover;
}

.twentytwenty-before-label,
.twentytwenty-after-label {
    opacity: 1 !important;
}

.twentytwenty-left-arrow {
    border-right: 6px solid var(--cor-magenta) !important;
}

.twentytwenty-right-arrow {
    border-left: 6px solid var(--cor-magenta) !important;
}