body,
html {
    margin: 0;
    padding: 0;
    width: 100%;

}

body {
    font-family: var(--font-family);
    background: #f4eede;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body main{
    flex: 1;
}


/*****************************/
/********** BUTTONS **********/
/*****************************/

.button,
.button:focus,
.form .button-f,
.form .button-f:focus {
	position: relative;
	display: inline-block;
	padding: 14px 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: normal;
	isolation: isolate;
	color: white;

}
.button::before,
.form .button-f::before {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	border-radius: 50px;
	transition: var(--transition);
	will-change: transform;
	z-index: -1;
	background-color: var(--primary);
	overflow: hidden;
}

.button:hover,
.form .button-f:hover{
    color: white;
}

.button:hover::before,
.form .button-f:hover::before{
	transform: scale(1.05);
}


@media(min-width: 992px) {
	.button,
	.button:focus,
    .form .button-f,
    .form .button-f:focus {
		padding: 16px 29px;
        font-size: 16px;
	}
}


.button.disabled {
	pointer-events: none !important;
	opacity: .5 !important;
}



.container{
    max-width:1190px
}

section{
    margin: 60px 0;
}

section:first-of-type{
	margin-top: 0;
}
section:last-of-type {
	margin-bottom: 0;
}

@media(min-width:992px){
    section{
        margin: 120px 0;
    }
}

header{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
    transition: var(--transition);
    background-color: #fbf5e8;
}

header > a:first-of-type{
    flex: 1;
}
header > a img{
    height: 13px;
    margin-left: 20px;
}

header.fixed{
    background: #fbf5e8;
    box-shadow: 0px 6px 9px 0 rgba(0, 0, 0, 0.04);
}

header .button,
header .button:focus {
    padding: 14px 21px;
    font-size: 13px;
}
header .button::before{
    border-radius: 0;
}
@media(min-width:768px){
    header{
        background: none;
        padding: 25px 40px;
        justify-content: space-between;
    }
    header .button,
    header .button:focus {
        font-size: 14px;
    }
    header > a img{
        height: auto;
        width: 200px;
        flex: inherit;
    }
    header .button::before{
        border-radius: 50px;
    }

    .blobs {
        position: absolute;
        width: 100%;
        z-index: 0;
        height: 100%;
        display: none;
    }

    .blobs .svgblob {
        position: absolute;
        pointer-events: none;
        display: block;
        z-index: 0;
        top: 400px;
        width: 63vw;
        height: 49vw;
        left: -53vw;
    }

    .blobs .svgblob::before {
        content: "";
        background-color: var(--primary);
        right: -0;
        top: 0;
        bottom: 0;
        position: absolute;
        height: 250px;
        width: 250px;
        filter: blur(360px);
        -webkit-filter: blur(250px);
        z-index: 0;
        border-radius: 100%;
    }
}

@media(max-width:320px){
    header .button{
        padding: 14px;
    }
}

/*****************************/
/********** BANNERS **********/
/*****************************/
.banners{
    position: relative;
    height: 100%;
}


.banners .slider{
    height: 100%;
}
.banners .slider .itens{
    display: flex;
    justify-content: center;
    height: 100%;
}

.banners .slider .itens > div:first-of-type{
    padding: 50px 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
}

.banners .slider .itens > div:first-of-type > *{
    max-width: 800px;
}

.banners .slider .itens > div:last-of-type .play{
    opacity: 0;
}

.banners .slider .tns-slide-active .itens > div:first-of-type,
.banners .slider .tns-slide-active .itens > div:last-of-type .play{
    opacity: 1;
}

.banners .slider .itens > div:last-of-type img{
    will-change: opacity;
}

.banners .slider .itens h2{
    font-size: 30px;
    font-weight: bold;
    line-height: 1.07;
    letter-spacing: -0.3px;
    text-align: center;
    color: var(--secondary);
    margin-top: 0;
    margin-bottom: 30px;
    position: relative;
    will-change: transform;
}

.banners .slider .itens h2 strong{
    color: var(--primary);
}

.banners .slider .itens p{
    color: var(--third);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: center;
    margin-top: 0;
    margin-bottom: 29px;
}

.banners .slider .itens .img{
    position: relative;
    overflow: hidden;
}

.rounded .banners .slider .itens .img{
    border-bottom-left-radius: 50px;
}


.banners .tns-nav {
    background: transparent;
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 0;
    padding: 20px 20px 32px 41px;
    gap: 35px;
    align-items: center;
    z-index: 2;
    top: 0;
    margin: auto;
    justify-content: center;
    left: 0;
}

.banners .tns-nav button {
    border-radius: 100%;
    background: #d7d4d4;
    height: 5px;
    width: 5px;
    z-index: 1;
    transition: var(--transition);
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

.banners .tns-nav button.tns-nav-active {
    height: 9px;
    width: 9px;
    background-color: var(--primary);
}

.banners .img.video{
    background-color: black;
}

.banners .img.video iframe,
.banners .img.video video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.banners .img.video.open iframe,
.banners .img.video.open video {
    opacity: 1;
    pointer-events: auto;
}

.banners .img.video a.play {
    position: absolute;
    top: auto;
    bottom: 15px;
    left: auto;
    right: 15px;
    margin: auto;
    width: 41px;
    height: 41px;
    z-index: 1;
    cursor: pointer;
    pointer-events: all;
}

.banners .img.video a.play:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 12px;
    height: 14px;
    margin: auto;
    -webkit-mask-image: url(/landing-page/assets/img/template/play.svg);
    mask-image: url(/landing-page/assets/img/template/play.svg);
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: cover;
    -webkit-mask-size: cover;
    background-color: white;
    transition: var(--transition);
    z-index: 2;
}
.banners .img.video a.play:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    transition: var(--transition);
    border-radius: 100%;
    border: 2px solid white;
    z-index: 1;
    background: none;
}

.banners .img.video a.play:hover::after{
    transform: scale(1.05);
}

.banners .img.video.open img {
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 768px) {
    .banners .slider .itens > div:first-of-type{
        /* padding: 50px 30px 40px; */
        display: flex;
        align-items: center;
        
    }
    .banners .slider .itens > div:first-of-type > div{
        padding: 50px 30px 40px;
        
    }
    .banners .img.video a.play{
        width: 61px;
        height: 61px;
        bottom: 40px;
        right: 40px;
    }

    .banners .img.video a.play:after {
        width: calc(100% - 6px);
        height: calc(100% - 6px);
        border: 3px solid white;
    }

    .banners .img.video a.play:before {
        width: 13px;
        height: 16px;
    }
}


@media(min-width: 992px) {
    
    
    .banners .slider .itens > div:first-of-type{
        /* padding: 90px 80px 30px; */
    }
    .banners .slider .itens > div:first-of-type > div{
        padding: 90px 80px 30px;
    }
    .banners .slider .itens h2{
        font-size: 50px;
        line-height: 1;
        letter-spacing: -0.5px;
        text-align: left;
    }

    .banners .slider .itens p{
        font-size: 18px;
        line-height: 1.56;
        text-align: left;
    }

    .rounded .banners .slider .itens .img{
        border-bottom-left-radius: 80px;
    }

    .banners .slider .itens img,
    .banners .slider .itens .img{
        height: 100%;
    }

    .banners .slider .itens > div:first-of-type > div{
        padding: 100px 35px 95px;
        
    }
    .banners .slider .itens h2{
        font-size: 45px;
        margin-bottom: 15px;
    }
}

@media(min-width: 1200px) {
    main:has(.banners + section) .banners .slider .itens{
        height: 100vh;
    }
    main:not(:has(.banners + section)) .banners .slider .itens{
        height: calc(100vh - 190px);
    }
    
}

@media(min-width: 1300px) {
    .banners .slider .itens > div:first-of-type > div{
        padding: 80px 130px 85px;
        
    }
    .banners .slider .itens h2{
        font-size: 50px;
        margin-bottom: 30px;
    }
}


@media(max-width: 767px) {
    .banners .slider{
        display: flex;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
    }

    .banners .slider > div{
        flex: 1;
    }
    .banners .slider .itens h2{
        margin-bottom: 20px;
    }
    .banners .slider .itens{
        flex-direction: column-reverse;
    }

    .banners .tns-nav {
        padding: 20px;
        flex-direction: row;
        bottom: auto;
        left: 0;
        right: 0;
        justify-content: center;
        gap: 25px;
    }

    .banners .button{
        width: 100%;
        text-align: center;
    }

    .banners .slider .itens > div:first-of-type{
        justify-content: flex-start;
    }
}

main:has(section.banners:last-of-type) + footer{
    margin-top: 0px;
}

/* main:has(section.banners:last-of-type) .banners *{
    height: 100%;
} */

@media(max-width: 767px) {
    section:not(.banners):first-of-type{
        margin-top: 70px;
    }  
}

body:has( .banners + footer) .banners .img{
    height: 100vh
}

body:has( .banners + footer) footer{
    margin-top:0
}

/*****************************/
/********** COLUNAS **********/
/*****************************/

.colunas .container{
    max-width: 1220px;
}
.colunas .containerSlide,
.colunas .containerSlide .tns-outer{
    max-width: 1240px;
    margin-inline: auto;
}


.colunas .containerSlide:has( .tns-outer){
    max-width: 1390px;
    padding-inline: 0px;
}

.colunas .container > div,
.colunas.image .container .slider{
    display: flex;
    flex-direction: row;
    gap: 50px;
}

@media (min-width: 768px) {
    .colunas .containerSlide:has( .tns-outer){
        padding-inline: 80px;
    }
    .colunas .containerSlide .tns-ovh {
        padding-inline: 15px;
    }
    .colunas.image .containerSlide .tns-ovh{
        padding-inline: 5px;
    }

    .colunas[data-count="2"] .slider > div{
        max-width: 50%;
        margin-inline: auto;
    }
    .colunas.box[data-count="2"] .slider > div .itens{
        padding-inline: 60px;
    }
}

@media (max-width: 767px) {
    .colunas .container > .slider{
        flex-direction: column !important;
    }
}

.colunas.align-left .itens{
    text-align: left;
}

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

.colunas.align-center .itens{
    text-align: center;
}

.colunas .item{
    flex: 1;
}

.colunas .tns-inner .slider {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
    gap: 50px;
}


.colunas .tns-inner .slider,
.colunas.box .container > div{
    gap: 25px;
}

.colunas:not(.image,.box) .itens{
    padding: 0px 10px ;
}

.colunas.image .tns-inner .slider {
    padding-bottom: 0;
}

.colunas.box .itens{
    box-shadow: 0px 17px 29px 0 rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    background-color: white;
    padding: 50px 25px 46px;
    height: 100%;
}

.colunas.box .tns-slider .itens{
    box-shadow: 0px 17px 29px 0 rgba(0, 0, 0, 0.0);
}

.colunas.box .tns-slide-active .itens{
    box-shadow: 0px 17px 29px 0 rgba(0, 0, 0, 0.04);
}

.rounded .listing .accordion,
.rounded .testemunhos .slide > div,
.rounded .colunas.box .itens,
.rounded .colunas.image .itens .img{
    border-radius: 30px;
}


main:has( .colunas.box:last-of-type .tns-inner .slider) + footer{
    margin-top: 0px;
}
.colunas.box:has( .tns-inner .slider) + section{
    margin-top: 80px;
}

.colunas.box:has( .tns-inner .slider){
    margin-bottom: 80px;
}


.colunas .itens .img{
    width: 90px;
}
.colunas.box .itens .img{
    width: 70px;
}
.colunas.image .itens .img{
    width: 100%;
    overflow: hidden;
}

.colunas.align-center .img{
    margin-inline: auto;
}

.colunas.align-right .img{
    margin-left: auto;
    margin-right: 0;
}

.colunas .itens h3{
    font-size: 32px;
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: normal;
    color: var(--secondary);;
    margin-bottom: 10px;
}

.colunas .itens p{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.58;
    letter-spacing: normal;
    color: var(--third);
    margin-top: 0;
    margin-bottom: 0;

}
.colunas div:not(.containerSlide) .slider-arrows{
    display: none;
}

.colunas .slider-arrows > div::before {
	background-color: #dedddd;
}

.colunas .slider-arrows>div.prev {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .colunas.box .container > div.slider-arrows{
        display: none;
    }

    .colunas.box .tns-inner .slider{
        margin-left: 10px;
    }

    .colunas.box .container .slider{
        gap: 25px !important;
    }

    .colunas:not(.box) .container{
        padding-inline: 40px;
    }
    .colunas .tns-inner .slider{
        gap: initial !important;
    }

    .colunas.box:has( .tns-inner .slider){
        margin-bottom: 40px;
    }
    .colunas.box:has( .tns-inner .slider) + section{
        margin-top: 40px !important;
    }

    .colunas .itens h3{
        font-size: 22px;
    }
    .colunas .itens p{
        font-size: 15.5px;
    }
}

/*************************/
/********** CTA **********/
/*************************/
.cta{
    padding-block: 78px;
    position: relative;
}

.cta .image{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

.cta .image:before{
    content:"";
    background: #a09f9f;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;

}

.cta .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.cta .container{
    max-width: 970px;
    text-align: center;
}

.cta .container p{
    font-size: 28px;
    font-weight: bold;
    line-height: 1.14;
    letter-spacing: -0.28px;
    text-align: center;
    color: white;
    margin: 0;
}

.cta.color .container p strong{
    color: inherit;
}

.cta .container p strong{
    color: var(--primary);
}

.cta.transparent .container p,
.cta.grey .container p{
    color: var(--secondary);
}

.cta:not(.image)::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

.cta.color::before,
.cta.transparent::before{
    background: var(--primary);
}

.cta.transparent::before{
    opacity: 0.03;
}

.cta.grey::before{
    background: #f8f8f8;
}

.cta .container p + .button{
    margin-top: 23px;
}
.cta.color .container .button{
    color: var(--secondary);
}

.cta.color .container .button::before{
    background-color: white;
}

.cta .container .button{
    width: 100%;
}

@media(min-width:768px){
    .cta{
        padding-block: 100px;
    }
    .cta .container p{
        font-size: 45px;
        line-height: 1.11;
        letter-spacing: -0.45px;
    }
    .cta .container p + .button{
        margin-top: 35px;
    }
    .cta .container .button{
        width: auto;
    }
}

/******************************/
/********** CLIENTES **********/
/******************************/
.clientes{
    position: relative;
    text-align: center;
}
.clientes .slide img{
    width: 220px;
    height: auto;
    filter: grayscale(100%);
    opacity: .3;
    transition: var(--transition);
}

.clientes .slide a:hover img{
    opacity: .95;
    cursor: pointer;
}

.clientes .container{
    text-align: center;
    position: relative;
    padding-inline: 0;
}

.clientes h2{
    font-size: 24.5px;
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: normal;
    text-align: center;
    color: var(--secondary);
    margin-inline: 25px;
}

.clientes h2 strong{
    color: var(--primary);
    font-weight: 600;
}

.clientes .container .slider{
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
}


.clientes .slider-arrows > div::before {
	background-color: #edecec;
}

.clientes .slider-arrows > div.prev {
    transform: rotate(180deg);
}


@media(min-width:768px){
    .clientes h2{
        font-size: 25.5px;
    }
    .clientes .container{
        max-width: 1340px;
        padding-inline: 80px;
    }
    .clientes .slide img{
        width: 220px;
    }
}


/*************************************/
/********** GALERIA E TEXTO **********/
/*************************************/

.galeria_txt .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1220px;
}

.galeria_txt .container > div{
    flex: 1 0 50%;
    position: relative;
}

.galeria_txt .container h4{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.58;
    letter-spacing: normal;
    text-align: left;
    color: var(--primary);
    margin: 0;
    margin-bottom: 15px;
}

.galeria_txt .container h2{
    font-size: 25.5px;
    font-weight: bold;
    line-height: 1.16;
    letter-spacing: -0.26px;
    text-align: left;
    color: var(--secondary);
    margin: 0;
    margin-bottom: 30px;
}

.galeria_txt .container h2 strong{
    color: var(--primary);
}

.galeria_txt .container p,
.galeria_txt .container > div:last-of-type{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: var(--third);
    width: 100%;
}

.galeria_txt .container > .cont{
    margin-top: 30px;
}

.galeria_txt .container > .imgs:has(.tns-outer .slide + .slide) + .cont{
    margin-top: 60px;
}



.galeria_txt .container p:has(+.button){
    margin-bottom: 0;
}



.galeria_txt .container .button{
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.galeria_txt .container ul{
    margin: 0;
    padding-block: 0px;
    margin-top: 26px;
    counter-reset: item;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.galeria_txt .container ul li{
    position: relative;
    padding-left: 9px;
}
.galeria_txt .container ul li::before {
    content: "";
    display: inline-block;
    height: 17px;
    width: 1.25rem;
    margin-left: -2em;
    margin-right: 1.25rem;
    -webkit-mask-image: url(/landing-page/assets/img/template/bullet.svg);
    mask-image: url(/landing-page/assets/img/template/bullet.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    position: absolute;
    top: 5px;
    left: 1rem;
}

.galeria_txt .container .legend {
    position: absolute;
    top: 0;bottom: 0px;
    left: 0;right: 0;
    padding-inline: 20px;
    padding-bottom: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.galeria_txt .slide:has(.legend):before{
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    mix-blend-mode: multiply;
    background-image: linear-gradient(to top, rgba(145, 145, 145, 1) 0%, rgba(145, 145, 145, 0));
    /* background-image: linear-gradient(to bottom, #919191, #919191); */
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.galeria_txt .slide.video .legend{
    background: none;
    will-change: transform;
}

.galeria_txt .slide.video:has(.legend):before{
    height: auto;
    top: 0;
    will-change: transform;
}

.galeria_txt .container .legend p {
    color: white;
    font-weight: 300;
	font-size: 16px;
	line-height: 1.25;
	margin-bottom: 5px;
    text-align: center;
    will-change: transform;
}

/* .galeria_txt .slider{
    display: flex;
    gap: 2px;
} 
.galeria_txt .slider{
    overflow: hidden;
}*/
.rounded .galeria_txt .slider,
.rounded .galeria_txt .slider > .slide{
    overflow: hidden;
    border-radius: 30px;

}

.galeria_txt .tns-nav{
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: -30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    will-change: transform;
}

.galeria_txt .tns-nav button{
    background: none;
    border: none;
    font-size: inherit;
    position: relative;
    will-change: transform;
}

.galeria_txt .tns-nav button::before{
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    border: none;
    background: #d7d4d4;
    border-radius: 50%;
}

.galeria_txt .tns-nav button.tns-nav-active::before{
    width: 10px;
    height: 10px;
    background: var(--primary);
}

.galeria_txt .slide{
    /* width: 100%;
    position: relative;
    overflow: hidden; */
}

.galeria_txt .slide.video {
	/* width: 100%;
    position: relative; */
}

.galeria_txt .slide.video:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #b6b4b4;
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

/* .galeria_txt .slide.video img {
	position: relative;
	margin: 0;
} */

.video-wrapper-fullscreen-galeria iframe,
.video-wrapper-fullscreen-galeria video,
.galeria_txt .slide.video iframe,
.galeria_txt .slide.video video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.video-wrapper-fullscreen-galeria iframe,
.video-wrapper-fullscreen-galeria video{
    position: relative;
}

.galeria_txt .slide.video.open iframe,
.galeria_txt .slide.video.open video {
    opacity: 1;
    pointer-events: auto;
}



.galeria_txt .slide.video a.play {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 41px;
    height: 41px;
    z-index: 1;
    cursor: pointer;
    pointer-events: all;
    will-change: transform;
}



.galeria_txt .slide.video a.play:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 12px;
    height: 14px;
    margin: auto;
    -webkit-mask-image: url(/landing-page/assets/img/template/play.svg);
    mask-image: url(/landing-page/assets/img/template/play.svg);
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: cover;
    -webkit-mask-size: cover;
    background-color: white;
    transition: var(--transition);
    z-index: 2;
}
.galeria_txt .slide.video a.play:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    transition: var(--transition);
    border-radius: 100%;
    border: 2px solid white;
    z-index: 1;
    background: none;
}

.galeria_txt .slide.video a.play:hover::after{
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .galeria_txt .container{
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .galeria_txt .container.align-start{
        align-items: flex-start;
    }

    .galeria_txt .container h4{
        font-size: 20.5px;
        line-height: 1.44;
        margin-bottom: 15px;
    }

    .galeria_txt .container h2{
        font-size: 40px;
        line-height: 1.13;
        letter-spacing: -0.4px;
        margin-bottom: 30px;
    }

    .galeria_txt .container p,
    .galeria_txt .container > div:last-of-type{
        font-size: 20px;
        font-weight: 300;
        line-height: 1.5;
    }

    .galeria_txt .container .button{
        width: auto;
    }

    .galeria_txt .container.typeTxtGal > div:first-of-type{
        order: 2;
    }

    .galeria_txt .container > div:last-of-type{
        padding-left: 80px;
        margin-top: inherit;
    }
    .galeria_txt .container.typeTxtGal > div:last-of-type{
        padding-left: 0;
        padding-right: 80px;
    }


    .galeria_txt .slide.video a.play{
        width: 93px;
        height: 93px;
    }
    .galeria_txt .slide.video a.play:before {
        width: 21px;
        height: 25px;
    }
    .galeria_txt .slide.video a.play:after {
        border: 4px solid white;
        width: calc(100% - 8px);
        height: calc(100% - 8px);
    }

    .galeria_txt .container .legend {
        padding-inline: 50px;
        padding-bottom: 12px;
    }

    .galeria_txt .container ul li {
        padding-left: 1rem;
    }

    .galeria_txt .container ul li::before{
        top: 7px;
    }

}

.video-wrapper-fullscreen-galeria,
.video-wrapper-fullscreen {
	position: fixed !important;
	top: 0;
	left: 0;
	z-index: 50;
	width: 100vw;
	height: 100vh;
	background-color: #000;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
	padding: 50px 20px;

}

.video-wrapper-fullscreen.active,
.video-wrapper-fullscreen.active iframe,
.video-wrapper-fullscreen.active video,
.video-wrapper-fullscreen-galeria.open,
.video-wrapper-fullscreen-galeria.open iframe,
.video-wrapper-fullscreen-galeria.open video {
	opacity: 1;
	pointer-events: all;
    display: block;
}

.video-wrapper-fullscreen .close,
.video-wrapper-fullscreen-galeria .close {
	display: block;
	position: absolute;
	top: 20px;
	right: 30px;
	width: 50px;
	height: 50px;
	mask-image: url(/landing-page/assets/img/template/close.svg);
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: center center;
	-webkit-mask-image: url(/landing-page/assets/img/template/close.svg);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-position: center center;
	background-color: white;
	cursor: pointer;
    z-index: 9;
}

.video-wrapper-fullscreen video,
.video-wrapper-fullscreen iframe,
.video-wrapper-fullscreen-galeria video,
.video-wrapper-fullscreen-galeria iframe {
	width: 100%;
	height: 100%;
	display: none;
	border: none;
}


@media(min-width:992px){
    .video-wrapper-fullscreen-galeria,
    .video-wrapper-fullscreen {
        padding: 50px 100px;
    }
}

/***************************************/
/********** ACCORDION LISTING **********/
/***************************************/

.listing .container{
    max-width: 940px;
}

.listing .container > h2{
    font-size: 25.5px;
    font-weight: bold;
    line-height: 1.16;
    letter-spacing: -0.26px;
    text-align: center;
    color: var(--secondary);
    margin-bottom: 25px;
}

.listing .container > h2 strong{
    color:var(--primary)
}

.listing .accordion {
	background-color: #fbf5e8;
    box-shadow: 0px 17px 29px 0 rgba(0, 0, 0, 0.04);
}

.listing .accordion + .accordion{
    margin-top: 9px;
}

.listing .accordion > div:first-of-type > .h3{
	font-size: 20.5px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
	color: var(--secondary);
	margin: 0;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	letter-spacing: normal;
	text-transform: none;
}

.listing .accordion.open > div:first-of-type > .h3,
.listing .accordion > div:first-of-type:hover > .h3
{
	color: var(--primary);
}

.listing .accordion > div {
	position: relative;
	padding: 20px 25px;
	cursor: pointer;
	transition: var(--transition);
	-webkit-transition: var(--transition);
}

.listing .accordion > div:first-of-type > .h3 {
	padding-right: 33px;
	max-width: 760px;
	pointer-events: none;
}

.listing .accordion .toggle {
	height: 14px;
	width: 14px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 23px;
	margin: auto;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	pointer-events: none;
}
.listing .accordion .toggle:hover,
.listing .accordion .toggle:focus {
	transform: rotate(90deg);
}
.listing .accordion.open .toggle:hover,
.listing .accordion.epen .toggle:focus {
	transform: rotate(0);
}
.listing .accordion .toggle::after {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 0;
    mask-image: url(/landing-page/assets/img/template/arrow.svg);
	-webkit-mask-image: url(/landing-page/assets/img/template/arrow.svg);
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-position: center center;
	background-color: white;
	margin: auto;
	height: 9px;
	width: 100%;
	background-color: var(--secondary);
	transition: var(--transition);
	-webkit-transition: var(--transition);
}

.listing .accordion.open .toggle::after,
.listing .accordion.active .toggle::after {
	transform: rotate(180deg);
    background-color: var(--primary);
}

.listing .accordion .description {
	padding: 0 25px;
	max-height: 0;
	overflow: hidden;
	transition: var(--transition);
	cursor: default;
}

.listing .accordion.active .description {
	max-height: none;
}
.listing .accordion .description p,
.listing .accordion .description ul,
.listing .accordion .description ol {
	font-size: 18px;
    font-weight: 300;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: left;
    color: var(--third);
}

.listing .accordion .description p a{
    font-weight: 500;
}

.listing .accordion .description p a:hover{
    opacity: .7;
}

.listing .accordion .description > *:first-child {
	margin-top: 5px !important;
}
.listing .accordion .description > *:last-child {
	margin-bottom: 30px !important;
}

@media (min-width: 768px) {

    .listing .container > h2{
        font-size: 40px;
        line-height: 1.13;
        letter-spacing: -0.4px;
        margin-bottom: 60px;
    }

    .listing .accordion > div:first-of-type > .h3{
        font-size: 22px;
        line-height: 1.34;
    }

	.listing .accordion > div {
        padding: 42px 50px;
	}

	.listing .accordion .toggle {
		height: 34px;
		width: 34px;
        right: 40px;
	}
	.listing .accordion .description {
        padding: 0 50px;
	}

	.listing .accordion .description > *:first-child {
		margin-top: 0 !important;
	}
	.listing .accordion .description > *:last-child {
		margin-bottom: 47px !important;
	}

    .listing .accordion .description p,
.listing .accordion .description ul,
    .listing .accordion .description ol {
        font-size: 20.5px;
        line-height: 1.44;
    }
}


/*********************************/
/********** TESTEMUNHOS **********/
/*********************************/

.testemunhos{
    margin-bottom: 40px;
}

.testemunhos + *{
    margin-top: 40px;
}

.testemunhos .container{
    text-align: center;
    max-width: 1350px;
    padding-inline: 0;
}

.testemunhos .container > div:first-of-type + div{
    max-width: 1340px;
    margin-inline: auto;
    padding-inline: 0px !important;
}

.testemunhos .container > div:first-of-type{
    max-width: 640px;
    margin: 0 25px 55px;
}

.testemunhos .container h4{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.36;
    letter-spacing: normal;
    color: var(--primary);
    margin: 0;
    margin-bottom: 15px;
}

.testemunhos .container h2{
    font-size: 25.5px;
    font-weight: bold;
    line-height: 1.16;
    letter-spacing: -0.26px;
    color: var(--secondary);
    margin: 0;
    margin-bottom: 30px;
    
}

.testemunhos .container h2 strong{
    color: var(--primary);
}

.testemunhos .container p{
    font-size: 20px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    color: var(--secondary);
    margin-bottom: 0;
}

.testemunhos .slider{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 35px;
    margin-inline: auto;
    margin-left: 10px;
}

.testemunhos .slide{
    /* max-width: 376px; */
    flex: 1;
}

.testemunhos .slide > div{
    padding: 50px 30px;
    box-shadow: 0px 17px 29px 0 rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    background-color: white;
    height: 100%;
}

.testemunhos .tns-slider .slide > div{
    box-shadow: 0px 17px 29px 0 rgba(0, 0, 0, 0.0);
}

.testemunhos .slide.tns-slide-active > div{
    box-shadow: 0px 17px 29px 0 rgba(0, 0, 0, 0.04);
}


.testemunhos .slide > div:before{
    content:"";
    display: block;
    mask-image: url(/landing-page/assets/img/template/quote.svg);
	-webkit-mask-image: url(/landing-page/assets/img/template/quote.svg);
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-position: center center;
	background-color: white;
	margin: 0 auto 35px;
	height: 25px;
	width: 31px;
	background-color: var(--primary);
}

.testemunhos .slide > div p{
    font-size: 15px;
    font-weight: 300;
    line-height: 1.42;
    letter-spacing: normal;
    text-align: center;
    color: var(--third);
    margin: inherit;
}
.testemunhos .slide > div p + p{
    margin-top: 20px;
}
.testemunhos .slide > div p strong{
    font-weight: 500;
    color: var(--secondary);
}


.testemunhos .slider-arrows > div::before {
	background-color: #edecec;
}

.testemunhos .slider-arrows>div.prev {
    transform: rotate(180deg);
    
}

@media(min-width:768px){
    .testemunhos{
        margin-bottom: 80px;
    }
    
    .testemunhos + *{
        margin-top: 80px;
    }

    .testemunhos .container{
        padding-inline: 20px;
    }
    .testemunhos .container > div:first-of-type{
        margin-inline: auto;
    }
    .testemunhos .container > div:first-of-type + div{
        padding-inline: 40px !important;
    }
    .testemunhos .container h4{
        font-size: 20.5px;
        font-weight: 600;
        line-height: 1.44;
        margin-bottom: 15px;
    }
    .testemunhos .container h2{
        font-size: 40px;
        line-height: 1.13;
        letter-spacing: -0.4px;
        margin-bottom: 30px;
    }

    .testemunhos .container p{
        font-size: 22px;
        line-height: 1.45;
    }

    .testemunhos .slide > div p{
        font-size: 18px;
        line-height: 1.58;
    }

    .testemunhos .container .tns-inner{
        padding-inline: 20px;
    }

    .testemunhos .slider{
        margin-left: auto;
    }
}


@media(min-width:992px){
    .testemunhos .slider-arrows{
        bottom: 25%;
        top: auto;
    }

    .testemunhos .slider-arrows>div{
        margin: 40px 30px;
    }
}

/*****************************/
/********** GALERIA **********/
/*****************************/



.galeria > .container{
    max-width: 100%;
    padding: 0px;
}

.galeria .slider .image,
.galeria .slider img {
	border-radius: 0;
}


.galeria .slider-wrapper {
	position: relative;
}


.galeria > .container .slider-wrapper .tns-outer {
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
}

.galeria .slider-wrapper .tns-outer .image {
    border-radius: 0;
	background-color: #c7c5c5;
}

.galeria .slider:not(.tns-slider) {
    display: flex;
    overflow: hidden;
}

.galeria .slider:not(.tns-slider) > .slide {
    flex-basis: 100%;
    min-width: 100%;
}

.galeria .slider:not(.tns-gallery) .slide {
	position: relative;
}


.galeria:not(.module3, .module2 ) .image {
	position: relative;
    aspect-ratio: 16 / 8.99;
	background-color: unset;
}


.galeria.module2 .image,
.galeria.module3 .image {
	position: relative;
	padding-top: 56.25%;
}


.galeria .image img {
	position: absolute;
	top: -1px;bottom:-1px;
	left: -1px;right: -1px;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
	width: auto;
	height: 100%;
	background-color: #000000;
}

.galeria .slider .legend {
	padding: 10px 40px;
	text-align: center;
	position: relative;
    background-color: white;
    pointer-events: none;
}
.galeria .slider .legend small {
    text-align: center;
    margin: .25em 0;
	color: white;
	font-size: 20px;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
}

.slider-arrows {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	pointer-events: none;
	width: 100%;
	justify-content: space-between;
}

.slider-arrows>div {
	position: relative;
	width: 20px;
	height: 37px;
	pointer-events: auto;
	margin: 40px;
	cursor: pointer;
	transition: var(--transition);
}

.galeria .slider-wrapper .slider-arrows>div:hover {
	opacity: 0.6;
	transform: none;
}

.galeria .slider-wrapper .slider-arrows>div.prev {
	transform: rotateY(180deg);

}

@media(min-width:768px){
    .rounded .galeria video,
    .rounded .galeria iframe,
    .rounded .galeria a:has(img),
    .rounded .galeria img,
    .rounded .galeria > .container .slider-wrapper .tns-outer {
        border-radius: 30px;
    }

    .galeria > .container{
        max-width: 1220px;
        padding: 0 20px;
    }
}


.galeria .slider-wrapper .slider-arrows>div.prev:hover {
	opacity: 0.6;
	transform: rotateY(180deg);
}

.slider-arrows>div.prev {
	transform: rotate(0);
}

.slider-arrows>div.next {
	right: 0;
}

.slider-arrows > div::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-mask-image: url("/landing-page/assets/img/template/slider-caret.svg");
	-webkit-mask-repeat: no-repeat;
	mask-image:url("/landing-page/assets/img/template/slider-caret.svg");
	mask-repeat: no-repeat;
	mask-size: cover;
	background-color: #ffffff;
	transition: var(--transition);
	cursor: pointer;
}


@media (max-width: 768px){

	.slider-arrows > div {
		width: 13px;
		height: 24px;
		margin: 10px;
	}

	.galeria .slider-wrapper .tns-outer .image {
		border-radius: 30px;
	}

}

@media(min-width: 992px) {
	.galeria .slider .legend {
		padding: 20px 80px;
	}

}


/***********************************************/
/********** MODULE 1: SLIDER (NO BAR) **********/
/***********************************************/


.galeria .slider-wrapper.no-bar .slider .legend {
    position: absolute;
    top: 0;bottom: 0;
    left: 0;right: 0;
    background: linear-gradient(to top, rgba(1,1,1,0.2), rgba(1,1,1,0.1) );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
}

.galeria .slider-wrapper.no-bar .slider .legend p{
    color: white;
    font-weight: 300;
	font-size: 16px;
	line-height: 1.25;
	margin-bottom: 5px;
}

.galeria .slider-wrapper.no-bar .slider .video + .legend {
    background: transparent;
}
/*

.galeria .slider-wrapper.no-bar .slider-arrows {
    padding-top: 0;
}

.galeria .slider-wrapper.no-bar .slider-arrows > div::before {
    background-image: url(/template1/assets/img/arrow-white.svg);
} */

@media(max-width: 768px) {

	.galeria .slider-wrapper.no-bar .slider .legend {
		position: relative;
		background: transparent;
		padding: 10px 20px 0;
	}
	.galeria .container .slider-wrapper.no-bar .slider .legend {
		padding: 10px 20px 0;
	}
	.galeria .slider-wrapper.no-bar .slider .legend p {
		font-size: 14px;
		font-weight: 300;
		line-height: 1.43;
		letter-spacing: normal;
		text-align: center;
		color: var(--third);
		margin: 0;
	}

    .galeria .slider-wrapper.no-bar .slider-arrows > div{
        opacity: .5;
    }
}


.galeria .video.open + .legend {
	opacity: 0;
}

/* @supports(object-fit: cover) {
	.galeria .image.video img {
		top: 0;left: 0;
		transform: none;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
} */


.galeria .video a.play {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 72px;
    height: 72px;
    z-index: 1;
}

.galeria .video a.play:before {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
    left: 5px;
    right: 0;
    width: 21px;
    height: 25px;
	margin: auto;
	-webkit-mask-image: url("/landing-page/assets/img/template/play.svg");
	mask-image: url("/landing-page/assets/img/template/play.svg");
	mask-position: center;
	-webkit-mask-position: center;
	mask-size:cover;
	-webkit-mask-size:cover;
	background-color: white;
	transition: var(--transition);
	z-index: 2;
}

.galeria .video a.play:after {
	content: "";
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
	transition: var(--transition);
    border-radius: 100%;
    z-index: 1;
    background-color: transparent;
    border: 4px solid white;
}

.galeria .image.video iframe,
.galeria .image.video video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}


.galeria .video.open iframe,
.galeria .video.open video {
    opacity: 1;
    pointer-events: auto;
}


@media(max-width: 768px) {

	.galeria .video + p.text-center {
		font-size: 10px;
	}

	.galeria a + p.text-center, .galeria img + p.text-center {
		margin-top: 10px;
	}
    .galeria .video a.play {
        width: 41px;
		height: 41px;
    }
	.galeria .video a.play:before {
        max-height: 12px;
        max-width: 11px;
        left: 1px;
	}

	.galeria .video a.play:after {
		width: 41px;
		height: 41px;
        border: 2px solid white;
        width: calc(100% - 4px);
        height: calc(100% - 4px);
	}

}



@media(min-width: 768px) {
	.galeria .video a {
		border-width: 4px
	}

	.galeria .video a.play {
		width: 70px;
		height: 70px;
	}

	.fullscreen-container iframe,
	.fullscreen-container video {
		padding: 50px;
	}


}

@media(min-width: 992px) {
	.galeria .video a.play {
		width: 95px;
		height: 95px;
	}
	.galeria .video a:hover.play::after {
		transform: scale(1.1)
	}
}



/****************************/
/********** PASSOS **********/
/****************************/

.passos .container{
    max-width: 1220px;
}

.passos h2{
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -0.26px;
    text-align: center;
    color: var(--secondary);
}

.passos h2 strong{
    color: var(--primary);
}

.passos .sliderSteps{
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-block: 40px;
}

.passos h2 + div:not(.sliderSteps){
    margin-block-start: 50px;
}

.passos .sliderSteps button{
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    position: relative;
    font-size: 16.5px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
    letter-spacing: normal;
    text-align: center;
    color: var(--primary);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;


}

.passos .sliderSteps button span::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--primary);
    border-radius: 50%;
    overflow: hidden;
    opacity: .07;
    pointer-events: none;
    z-index: -1;
    transition: var(--transition);
}

.passos .sliderSteps button.tns-nav-active span::before{
    opacity: 1;
}

.passos .sliderSteps button.tns-nav-active{
    color: white;
}


.passos h3{
    font-size: 24.5px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.16;
    letter-spacing: normal;
    text-align: left;
    color: var(--primary);
    margin: 0;
}

.passos h3 + p{
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: var(--third);
    margin: 15px 0 0;
}

.passos .itens{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 35px;
}

.passos .itens > div{
    flex: 1;
    opacity: 0;
}

.passos .tns-slide-active .itens > div{
    flex: 1;
    opacity: 1;
}

.rounded .passos .itens img{
    border-radius: 30px;
}


@media(min-width:768px){
    .passos h2{
        font-size: 40px;
        line-height: 1.13;
        letter-spacing: -0.4px;
    }


    .passos .sliderSteps button::before,
    .passos .sliderSteps button::after {
        content: "";
        position: absolute;
        left: calc(100% + 10px);
        width: 60px;
        opacity: 0.07;
        height: 5px;
        border-radius: 2.5px;
        background-color: var(--primary);
    }
    .passos .sliderSteps button::after {
        width: 0%;
        opacity: 1;
        background-color: var(--primary);
        transition: width 0s linear;
    }

    .passos .sliderSteps:not(.stop) button.tns-nav-active::after {
        transition: width 6s linear;
        animation-name: load;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
        border-radius: 2.5px;
    }

    .passos .sliderSteps:not(.stop) button.tns-nav-active::after {
        animation-duration: 6s;
    }

    .passos .sliderSteps button:last-of-type:before,
    .passos .sliderSteps button:last-of-type:after{
        content: none;
        display: none;
    }

    @keyframes load {
        0% {
            width: 0%;
        }

        100% {
            width: calc( 100% - 8px);
        }
    }

    .passos .sliderSteps{
        gap: 80px;
        margin-block: 60px;
    }

    .passos .sliderSteps button{
        width: 68px;
        height: 68px;
        font-size: 24px;
        line-height: 1.25;
    }

    .passos .itens{
        flex-direction: row;
        gap: 80px;
    }

    .passos h2 + div:not(.sliderSteps){
        margin-block-start: 70px;
    }

    .passos h3{
        font-size: 25.5px;
        line-height: 1.16;
    }

    .passos h3 + p{
        font-size: 20px;
        line-height: 1.5;
        margin: 20px 0 0;
    }


}

@media(max-width:767px){
    .passos .slider .itens > div:first-of-type{
        justify-content: flex-start;
        flex: none;
    }
}



footer{
    background: var(--primary);
    padding: 50px 20px;
    margin-top: 60px;
}
footer .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: normal;
    text-align: left;
    color: #fbf5e8;
    flex-direction: column;
    text-align: center;
}

footer .container strong,
footer .container a:first-of-type{
    font-weight: 500;
    display: block;
}

footer .container > div + div{
    margin-top: 26px;
}

footer .container a{
    color:#fbf5e8;
    font-weight: 500;
    cursor: pointer;
}

footer .container a.pp{
    margin-right: 15px;
}

footer .container a.pp.disabled{
    display: none;
}

footer .container a:hover{
    filter: brightness(70%);
}

@media(min-width:768px){
    footer {
        padding: 80px 20px;
        margin-top: 120px;
    }
    footer .container{
        flex-direction: row;
        text-align: initial;
    }

    footer .container strong,
    footer .container a:first-of-type{
        display: initial;
    }
    footer .container strong{
        margin-right: 15px;
    }
    footer .container > div + div{
        margin-top: 0;
    }
}

.side-pp,
.side-form{
    position: fixed;
    height: 100%;
    max-width: 880px;
    width: 90%;
    background-color: white;
    z-index: 10;
    right: -100%;
    top: 0;
    transition: var(--transition);
    padding: 50px 20px;
    overflow-y: auto;
}



.side-form{
    max-width: 485px;
    overflow-y: auto;
    display: flex;
    align-items: center;
    z-index: 12;
}

.side-form .title{
    font-size: 25.5px;
    font-weight: bold;
    line-height: 1.16;
    letter-spacing: normal;
    text-align: center;
    color: var(--secondary);
}

.side-form .title + p{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: center;
    color: var(--third);
    margin: 24px 0 30px 0;
}

.side-form .title + .form{
    margin: 30px auto 0;
}

.side-pp{
    z-index: 15;
}

.side-pp .close,
.side-form .close{
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
}

.side-pp .close:hover,
.side-form .close:hover{
    transform: rotate(-45deg);
}

.side-pp .close::before,
.side-form .close::before{
    content:"";
    position: absolute;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--primary);
}

.side-pp .close::after,
.side-form .close::after{
    content:"";
    position: absolute;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    height: 100%;
    width: 2px;
    border-radius: 2px;
    background-color: var(--primary);
}


@media(min-width:768px){
    .side-pp,
    .side-form{
        max-width: 880px;
        width: 100%;
        padding: 95px;
    }

    .side-form{
        max-width: 485px;
        padding: 95px 60px;
    }
}





/*******************************/
/********* FORM STYLE **********/
/*******************************/
.form .honey-input,
form .honey-input {
    position: fixed;
    top: -200%;
    left: -200%;
}

.form {
	position: relative;
    z-index: 1;
}

.form .warning {
    font-size: 12px;
    font-weight: 400;
    color: var(--warning);
    height: 0;
    margin: 0;
    margin-top: 5px;
    padding-left: 0px;
    position: absolute;
    transition: var(--transition);
}

.form .not-filled .warning {
    height: 20px;
}

.form input.not-filled,
.form input[type="checkbox"].not-filled + label,
.form textarea.not-filled,
.form select.not-filled + .custom-select .placeholder {
    border: 2px solid var(--warning) !important;
}

.form textarea::after,
.form textarea::before {
    content: "";
    width: 95%;
    height: 53px;
    position: absolute;
    top: 73px;
    left: 0;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.form textarea,
.form select,
.form input{
    position: relative;
    border-radius: 10px;
    padding: 12.5px 21px;
    background-color: transparent;
    border: 2px solid #e9e9e9 !important;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.15px;
    text-align: left;
    color: var(--secondary);
    width: 100%;
    transition: var(--transition);
    margin: 0;
	line-height: 1.63;
}
.form textarea {
	border-radius: 25px;
	resize: none;
}

.form .input-wrapper{
    position: relative;
    margin-bottom: 23px;
    transition: var(--transition);
}

.form .input-wrapper:has( .not-filled){
    margin-bottom: 30px;
}

.form .input-wrapper label {
    display: block;
    position: absolute;
    transform: translateY(21px);
    pointer-events: none;
    transition: var(--transition);
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: normal;
    color: var(--secondary);
    left: 19px;
    top: -4px;
    z-index: 1;
}

.form .input-wrapper input:focus + label,
.form .input-wrapper input[placeholder] + label,
.form .input-wrapper textarea:focus + label,
.form .input-wrapper textarea[placeholder] + label,
.form .input-wrapper.filled label {
    padding: 0 5px;
    font-size: 11px;
    color: var(--primary);
	transform: translateY(-1px);
    z-index: 1;
    line-height: 1;
	isolation: isolate;
}

.form .input-wrapper input + label::before,
.form .input-wrapper input[placeholder] + label::before,
.form .input-wrapper textarea + label::before,
.form .input-wrapper textarea[placeholder] + label::before,
.form .input-wrapper label::before {
	content: "";
	height: 100%;
	width: 100%;
    background-color: white;
	display: block;
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	z-index: -1;
	top: 5px
}


.form .input-wrapper input:focus,
.form .input-wrapper.filled input {
    border: 2px solid var(--primary) !important;
}

.form .input-wrapper input:focus + label::before,
.form .input-wrapper input[placeholder] + label::before,
.form .input-wrapper textarea:focus + label::before,
.form .input-wrapper textarea[placeholder] + label::before,
.form .input-wrapper.filled label::before {
	content: "";
	height: 100%;
	width: 100%;
    background-color: white;
}

.form .input-wrapper input:focus,
.form .input-wrapper textarea:focus,
.form .input-wrapper.filled input {
    border: 2px solid var(--primary);
}

.form .checkbox-wrapper {
    display: flex;
    margin-top: 7px;
	flex-wrap: wrap;
	gap: 10px;
    margin-bottom: 30px;
    position: relative;
}


.form .checkbox-wrapper .checkbox {
	max-width: 33%;
}

.form .checkbox-wrapper .warning{
    padding-left: 0;
    bottom: -2px;
}

.form input[type="checkbox"],
.form input[type="radio"] {
    display: none;
}

.form input[type="checkbox"] + label,
.form input[type="radio"] + label {
    display: inline-block;
    vertical-align: middle;
    height: 24px;
    width: 24px;
    background-color: transparent;
	cursor: pointer;
    position: relative;
    border: 2px solid #e9e9e9;
	border-radius: 5px;
    transition: var(--transition);
}

.form input[type="checkbox"] + label::before,
.form input[type="radio"] + label::before {
    content: "";
    position: absolute;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    top: -4px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 4px;
    height: 9px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
}

.form input[type="checkbox"]:checked + label::before,
.form input[type="radio"]:checked + label::before {
    opacity: 1;
}

.form input[type="checkbox"]:checked + label,
.form input[type="radio"]:checked + label {
    border: 2px solid var(--primary);
}

.form input[type="checkbox"] + label + label,
.form input[type="radio"] + label + label {
    display: inline-block;
	font-size: 14px;
	line-height: 1.63;
	letter-spacing: normal;
	text-align: left;
	font-weight: 300;
	color: var(--secondary);
    flex: 1;
    cursor: pointer;
}

.form input[type="checkbox"] + label + label a,
.form input[type="radio"] + label + label a {
    color: var(--primary);
	font-weight: 300;
	border-bottom: 1px solid transparent;
}

.form input[type="checkbox"] + label + label a:hover,
.form input[type="radio"] + label + label a:hover {
	border-bottom: 1px solid currentColor;
}

.form input[type="checkbox"] + label + label:has(a.disabled),
.form input[type="checkbox"] + label + label a.disabled{
    pointer-events: none;
    color: currentColor;
    cursor: default;
}

.form .button-f{
    width: 100%;
    text-align: center;
    padding: 15px 29px;
}
.form .button-f::before{
    border-radius: 10px;
}
.form .button-f::before:hover{
    transform: scale(1.02);
}


@media (max-width: 768px) {

    .form textarea,
    .form select,
    .form input:not([type="checkbox"], [type="file"]) {
		padding: 12px 30px;
    }

    .form .input-wrapper label {
        transform: translateY(18px);
    }

	.form .checkbox-wrapper{
		margin-bottom: 20px ;
		gap: 10px 20px;
	}
}





.side-pp.opened,
.side-form.opened{
    right: 0;
}

.side-pp > div,
.side-form > div{
    width: 100%;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #454444;
    mix-blend-mode: multiply;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    z-index: 11;
}

body:has(.side-pp.opened)::before,
body:has(.side-form.opened)::before {
    opacity: 1;
    pointer-events: auto;
}

body.obrigado{
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.obrigado header{
    background: white;
    box-shadow: 0px 6px 9px 0 rgba(0, 0, 0, 0.04);
}



body.obrigado main,
.content{
    flex:1;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.obrigado main{
    padding-top: 70px;
}

body.obrigado footer{
    margin-top: 0;
}

.follow{
    position: fixed;
    bottom: 22px;
    right: 22px;
    display: flex;
    gap: 10px;
}
.follow a{
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.follow a:before{
    content: "";
    background: #fef5f6;
    position: absolute;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    width: 80%;
    height: 80%;
    display: block;
    border-radius: 50%;
}

.follow a:hover{
    transform: scale(1.1);
}

.follow a::after{
    content: "";
	position: absolute;
	top: 0;bottom: 0;
    left: 0;
    right: 0;
	margin: auto;
	-webkit-mask-image: url(/landing-page/assets/img/lp/messenger.svg);
	mask-image: url(/landing-page/assets/img/lp/messenger.svg);
	mask-position: center;
	-webkit-mask-position: center;
	mask-size:cover;
	-webkit-mask-size:cover;
	background-color: #4d1e24;
	transition: var(--transition);
	z-index: 2;
}

.follow a.instagram{
    width: 33px;
        height: 33px;
}

.follow a.instagram::before{
    background: #4d1e24;
    width: 100%;
    height: 100%;
}

.follow > a.instagram::after{
	-webkit-mask-image: url(/landing-page/assets/img/lp/instagram.svg);
	mask-image: url(/landing-page/assets/img/lp/instagram.svg);
	background-color: white;
	transition: var(--transition);
	z-index: 2;
    width: 21px;
    height: 21px;
}

.follow a.whatsapp::after{
    -webkit-mask-image: url(/landing-page/assets/img/lp/whatsapp.svg);
	mask-image: url(/landing-page/assets/img/lp/whatsapp.svg);
}

@media(min-width:768px){
    .follow{
        bottom: 30px;
        right: 38px;
    }

    .follow a::after{
        width: 33px;
        height: 33px;
    }
}


.tns-item, 
.tns-item .legend, 
.tns-item .container, 
.tns-item .image.filter::after, 
.tns-item .image.filter::before, 
.tns-item .image.video::before, 
.tns-item .image.video .play, 
.tns-item .img.video .play, 
.tns-item .image.video video,
.tns-item .img.video video,
.tns-item img {
    perspective: 1000px !important;
    backface-visibility: hidden !important;
    transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000px !important;
    -webkit-backface-visibility: hidden !important;
    -webkit-transform: translate3d(0, 0, 0);
}