/*****************************/
/********** BANNERS **********/
/*****************************/
.banners{
    position: relative;
}

.banners .slider {
    height: 100%;
}

.banners .slider .slide .subtitle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto 0 auto 11%;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    perspective: 1000px;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000px;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.banners .slider .slide .subtitle a {
    
    pointer-events: auto;
}


.banners .slider .slide .subtitle h2 {
    font-size: 60px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: white;
    margin: 0;
}

.banners .slider .slide .subtitle p{
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: left;
    color: white;
    margin: 25px 0 0;
}

.banners .slider .slide .subtitle div{
    display: flex;
    position: relative;
    gap: 10px;
    margin-top: 35px;
}

.banners .slider .slide .img {
    overflow: hidden;
    position: relative;
    height: 100vh;
    width: 100%;
    z-index: 0;
}

.banners .slider .slide .img::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    background-blend-mode: multiply;
    background-image: linear-gradient(to top, var(--white), #b5b5b5);
    z-index: 1;
    will-change: transform;
}

.banners .slider .slide .img.img2::before{
    background-image: linear-gradient(to top, var(--white), #d9d9d9);
}

.banners .slider .slide:has(.subtitle) .img::before {
    mix-blend-mode: multiply;
    background-image: linear-gradient(to bottom, #b5b5b5, #b5b5b5);
}

.banners .slider .img img{
    position: relative;
    overflow: hidden;
    height: 100%;
}


.slider .slide .img.video video,
.slider .slide .img.video iframe{
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: black;
}

.banners .slider .slide.video .img iframe {
    transform: scale(1.2);
    z-index:-1;
}

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

.banners .tns-nav button {
    height: 15px;
    width: 15px;
    z-index: 1;
    transition: var(--transition);
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banners .tns-nav button:before {
    content: "";
    border-radius: 100%;
    background: #d7d4d4;
    height: 5px;
    width: 5px;
    z-index: 1;
    transition: var(--transition);
    display: block;
    position: absolute;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
}


.banners .tns-nav button.tns-nav-active:before,
.banners .tns-nav button:hover:before {
    height: 9px;
    width: 9px;
}

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

.banners .slider .slide.video .subtitle a.play{
    margin: auto;
    width: 40px;
    height: 40px;
    z-index: 1;
    cursor: pointer;
    pointer-events: all;
    position: relative;
}

.banners .slider .slide.video .subtitle a.play:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 12px;
    height: 14px;
    margin: auto;
    -webkit-mask-image: url(/bluesky/assets/img/template/play_icon.svg);
    mask-image: url(/bluesky/assets/img/template/play_icon.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 .slider .slide.video .subtitle 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 .slider .slide.video .subtitle a.play:hover::after{
    transform: scale(1.05);
}

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



.banners .video-button {
	opacity: 0;
    min-height: 82px;
    min-width: 82px;
    padding: 7px;
    aspect-ratio: 1;
    position: absolute;
    pointer-events: none;
    transform: translate(-50%, -50%);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banners .video-button.mobile {
	display: none;
}

.banners .video-button.in {
	opacity: 1;
}

.banners:has(.video-button.in) .slider .slide {
	cursor: none;
}

.banners .video-button a {
	font-size: 10px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.4;
	letter-spacing: 0.8px;
	color: white;
	text-transform: uppercase;
}


.banners .video-button::before {
    content: "";
    opacity: 0.15;
    height: 100%;
    width: 100%;
    position: absolute;
    pointer-events: none;
    background-color: white;
}

@media (min-width: 768px) {
    
    .banners .slider .slide.video .subtitle a.play{
        width: 55px;
        height: 55px;
    }

    .banners .slider .slide.video .subtitle a.play:after {
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        background: white;
        opacity: .25;
    }

    .banners .slider .slide.video .subtitle a.play:before {
        width: 13px;
        height: 16px;
    }
}

.banners .slider .btn-video{
    display: none;
    position: absolute;
    z-index: 10;
    top: auto;
    bottom: 70px;
    left: auto;
    right: 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.43;
    letter-spacing: normal;
    text-align: left;
    color: var(--white);
}


@media(max-width: 767px) {
    .banners .slider .btn-video{
        display: inherit;
    }
    .banners .video-button{
        display: none;
    }
    .banners .slider{
        display: flex;
        justify-content: center;
        align-items: flex-start;
        min-height: 100vh;
    }

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

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

    .banners .button{
        text-align: center;
    }
    .banners .slider .slide .subtitle{
        margin-inline: 0px;
        padding-inline: 20px;
    }
    .banners .slider .slide .subtitle h2 {
        font-size: 35px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.09;
    }

    .banners .slider .slide .subtitle p{
        font-size: 16px;
        line-height: 1.38;
        letter-spacing: normal;
        margin-top: 15px;
    }

    .banners .slider .slide .subtitle div .button{
        padding: 11.5px 22px;
        font-size: 14px;
        font-weight: 600;
        line-height: normal;
        letter-spacing: normal;
        align-items: center;
        display: flex;
    }

    .banners .slider .slide .subtitle div{
        margin-top: 25px;
    }
    
}

.index section:not(.banners):first-of-type{
    margin-top: 120px;
}

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



    .index section.testemunhos{
        margin-bottom: 25px;
    }
}



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

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

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

.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: #dedddd;
}

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

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


.clientes .tns-inner{
    max-width: 100%;
}

.clientes .tns-outer{
    display: flex;
    justify-content: center;
}

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


/*************************************/
/********** GALERIA E TEXTO **********/
/*************************************/
.galeria_txt .imgs{
    visibility: hidden;
}
@media(min-width: 768px){
    .index section.galeria_txt:has(.tns-nav){
        margin-bottom: 145px;
    }
}

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

.galeria_txt .container > div{
    max-width: 550px;
    width: 100%;
    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: 15px;
    width: 18px;
    margin-left: -2em;
    margin-right: 26px;
    -webkit-mask-image: url(/bluesky/assets/img/svg/bullet.svg);
    mask-image: url(/bluesky/assets/img/svg/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;
}


.rounded .galeria_txt .tns-inner{
    overflow: hidden !important;
    border-radius: 30px !important;

}

.galeria_txt .tns-nav{
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: -34px;
    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;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
}

.galeria_txt .tns-nav button::before{
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    border: none;
    background: #d7d4d4;
    border-radius: 50%;
    transition: var(--transition);
    will-change: transform;
    position: absolute;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
}

.galeria_txt .tns-nav button:hover::before{
    width: 8px;
    height: 8px;
}

.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 > div{
    position: relative;
    isolation: isolate;
}
.galeria_txt .slide.video > div::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(182, 180, 180, 0.6);
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
    display: block;
}

/* .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;
    aspect-ratio: 1;
}



.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(/bluesky/assets/img/template/play_icon.svg);
    mask-image: url(/bluesky/assets/img/template/play_icon.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(41px - 4px);
    height: calc(41px - 4px);
    transition: var(--transition);
    border-radius: 100%;
    border: 2px solid white;
    z-index: 1;
    background: none;
    aspect-ratio: 1;
}

.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;
        gap: 80px;
    }

    .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{
        margin-top: inherit;
    }
    .galeria_txt .container.typeTxtGal > div:last-of-type{
        padding-left: 0;
        padding-right: 0px;
    }


    .galeria_txt .slide.video a.play{
        width: 93px;
        height: 93px;
    }
    .galeria_txt .slide.video a.play:before {
        left: 4px;
        width: 21px;
        height: 25px;
    }
    .galeria_txt .slide.video a.play:after {
        border: 4px solid white;
        width: calc(93px - 8px);
        height: calc(93px - 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: 5px;
        width: 25px;
        height: 21px;
    }

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

}


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

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

.index .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;
}

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

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

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

.index.rounded .listing .accordion{
    border-radius: 30px;
}

.index .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;
}

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

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

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

.index .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;
}
.index .listing .accordion .toggle:hover {
	transform: rotate(90deg);
}
.index .listing .accordion.open .toggle:hover {
	transform: rotate(0);
}
.index .listing .accordion .toggle::after {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 0;
    mask-image: url(/bluesky/assets/img/template/arrow.svg);
	-webkit-mask-image: url(/bluesky/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);
}

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



@media(min-width:768px){
    .index .listing .accordion > div:first-of-type:hover > .h3{
        color: var(--primary);
    }
    .index .listing .accordion > div:hover .toggle::after {
        background-color: var(--primary);
    }
}

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

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

.index .listing .accordion .description strong{
    font-weight: 600;
}

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

@media (min-width: 768px) {

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

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

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

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

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

    .index .listing .accordion .description p,
    .index .listing .accordion .description ul,
    .index .listing .accordion .description ol {
        font-size: 18px;
        line-height: 1.64;
    }
}


/************************************/
/********** SECÇÕES HEADER **********/
/************************************/

.galeria .header,
.container .header{
    max-width: 928px;
    margin: 0 25px 55px;
    display: block !important;
    text-align: center;
    margin-inline: auto !important;
}

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

.container:not(.containerSlide) .header{
    max-width: initial;
}

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

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

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

.mobile .hp-horizontal-slideshow .description{
    padding-inline: 20px;
}

@media(max-width:1200px){
    .galeria .header, 
    .container .header:first-of-type,
    .testemunhos.tablet .container > div:first-of-type,
    .hp-horizontal-slideshow .description{
        max-width: 660px !important;
        margin-inline: auto !important;
    }
}


@media(min-width:768px){
    .galeria .header,
    .container .header:first-of-type{
        margin-inline: 80px;
    }

    .galeria .header,
    .container .header{
        margin: 0 25px 55px;
    }
    
    .container .header h4{
        font-size: 20.5px;
        font-weight: 600;
        line-height: 1.44;
        margin-bottom: 15px;
    }

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

    .container .header p{
        font-size: 18px;
        line-height: 1.65;
    }

}


.hp_texto .container{
    text-align: center;
}

.hp_texto .container .header{
    margin-bottom: 25px;
}


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


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

.testemunhos .container{
    text-align: center;
    max-width: 1360px;
    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: 910px;
    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: 24px;
    margin-bottom: 35px;
    margin-inline: auto;
    margin-left: 10px;
}

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

.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);
}

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


.testemunhos:not(.t_google) .slide > div:before{
    content:"";
    display: block;
    mask-image: url(/bluesky/assets/img/template/quote.svg);
	-webkit-mask-image: url(/bluesky/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 29px;
	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 + div{
    margin-top: 8px;
}
.testemunhos .slide > div p strong{
    font-weight: 500;
    color: var(--secondary);
}


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

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

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

.testemunhos.t_google .slide > div p{
    text-align: left;
}


.testemunhos.t_google .empty {
    fill: #d2d0d0 !important;
} 

.testemunhos.t_google .filled {
    fill: var(--primary);
}

.testemunhos.t_google .star-container {
    position: relative;
    margin-inline: auto;
    width: 130px;
    height: 21px;
}

.testemunhos.t_google .slider .star-container {
    position: relative;
    margin-left: 0;
    width: 67px;
    height: 10px;
}

.testemunhos.t_google .star-container svg {
    position: absolute;
    top: 0;
    left: 0;
}


.testemunhos.t_google .slide > div > div{
    display: flex;
    align-items: center;
    gap: 20px;
}

@media(max-width: 768px) {

    .rating .star-container {
        transform: scale(0.8);
    }

    .testemunhos.t_google .slide > div > div{
        flex-wrap: wrap;
        gap: 5px;
    }
    .testemunhos.t_google .slider .star-container{
        flex: 100%;
        margin-top: 0;
    }

    .testemunhos .container h2 {
        margin-bottom: 17px;
    }
    .testemunhos .slide > div p{
        font-size: 15.5px;
        line-height: 1.42;
    }
    .testemunhos .container > div:first-of-type{
        margin-bottom: 30px;
    }
}

@media(min-width:768px){

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

    .testemunhos .container{
        padding-inline: 20px;
    }
    .testemunhos .container > div:first-of-type{
        margin-inline: auto;
    }
    .testemunhos .container > div + div > div:first-of-type{
        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 .slide > div p + div{
        margin-top: 12px;
    }

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

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

    .index section.testemunhos{
        margin-bottom: 85px;
    }
}

.testemunhos .container > div + div{
    position: relative;
}


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

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

.testemunhos.tablet .container,
.testemunhos.tablet .container > div + div > div:first-of-type{
    padding: 0 !important;
}

.testemunhos.tablet .container > div:first-of-type{
    padding: 20px !important;
}




/****************************/
/********** 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: 12px;
    justify-content: center;
    margin-block: 40px;
}

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

.passos .sliderSteps button{
    width: 28px;
    height: 28px;
    aspect-ratio: 1;
    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;
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;


}

.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);
    width: 100%;
    height: 100%;
}

.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 .itens > div .button{
    font-size: 12px;
    line-height: 1.43;
    padding: 11.5px 23px;
}

.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: 50px;
        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 5s 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: 5s;
    }

    .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: 70px;
        margin-block: 50px;
    }

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

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

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

    .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(min-width:1024px){
    .passos .sliderSteps button::before {
        width: 60px;
    }
    .passos .sliderSteps:not(.stop) button.tns-nav-active::after {
        transition: width 6s linear;
        animation-name: load;
    }

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

    @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.42;
    }

    .passos .itens{
        gap: 80px;
    }

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

}

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

/*************************************************/
/********** Hp Listagem Blog e Notícias **********/
/*************************************************/

.hp-list .row:has(.list-article) {
    --gap-h: 40px;
    justify-content: center;
}
.hp-list .header{
    display: flex !important;
    align-items: flex-end;
    margin-bottom: 35px;
    margin-inline: 0;
}
.hp-list .header h2{
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -0.26px;
    text-align: left;
    color: var(--secondary);
    margin: 0;
    
}

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

.hp-list .header a{
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.43;
    letter-spacing: normal;
    color: var(--primary);
    text-align: right;
}

.hp-list .header a:hover{
    opacity: .7;
}

@media(min-width:768px){
    .hp-list > .container {
        max-width: 1220px;
        padding: 0 20px;
    }

    .hp-list .header h2{
        font-size: 40px;
        line-height: 1.13;
        letter-spacing: -0.4px;
    }

    .hp-list .header a{
        font-size: 16px;
        line-height: 1.38;
    }
    .hp-list .container .header:first-of-type{
        margin-inline: 0px
    }
}

.hp_texto .container p{
    color: var(--third);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.galeria .height-free .image{
    aspect-ratio: 0 !important;
    background: none !important;
}

.galeria .height-free .image img,
.index .galeria .slider-wrapper .height-free .tns-outer .image img{
    position: relative;
    width: 100% !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}





/******************************/
/********** Hp SLIDE **********/
/******************************/

.hp-horizontal-slideshow {
	margin: 60px 0;
}

.hp-horizontal-slideshow .container:has(.tns-outer) {
	max-width: 100%;
	padding: 0;
}


@media(min-width: 768px) {
	.hp-horizontal-slideshow {
		margin: 140px 0;
	}
}

@media(min-width: 1025px) {
	.hp-horizontal-slideshow .container {
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		gap: 160px;
        justify-content: center;
	}


    .hp-horizontal-slideshow .container:has(.tns-outer) {
		padding: 0 100px;
        padding-left: 250px;
	}

	.hp-horizontal-slideshow {
		margin: 104px 0;
	}
}


/********** DESCRIPTION **********/

.hp-horizontal-slideshow .description {
	max-width: unset;
	min-width: unset;
	margin: 0 20px 50px;
}

.hp-horizontal-slideshow .description h4{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: center;
    color: var(--primary);
    margin-bottom: 18px;
}
.hp-horizontal-slideshow .description h2 {
    font-size: 25.5px;
    font-weight: bold;
    color: var(--secondary);
    line-height: 1.16;
    text-align: center;
    letter-spacing: normal;
	margin: 0;
}

.hp-horizontal-slideshow .description h2 + p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: center;
    color: var(--third);
    margin: 25px 0;
}

.hp-horizontal-slideshow .description .button{
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .hp-horizontal-slideshow .description .button{
        width: auto;
        text-align: center;
    }
}

@media (min-width: 1025px) {
	.hp-horizontal-slideshow .description {
        margin: 0 60px 40px;
        max-width: unset;
        min-width: unset;
        display: block;
	}

    .hp-horizontal-slideshow .description h4{
        font-size: 20.5px;
        font-weight: 600;
        line-height: 1.2;
        text-align: left;
    }
    
	.hp-horizontal-slideshow .description h2 {
        font-size: 40px;
		line-height: 1.13;
		text-align: left;
	}
    
    
	.hp-horizontal-slideshow .description h2 + p {
        font-size: 20px;
		line-height: 1.5;
        margin: 31px 0 33px;
        text-align: left;
	}

    .hp-horizontal-slideshow .description .button{
        text-align: left;
    }

}

@media (min-width: 1025px) {
	.hp-horizontal-slideshow .description {
		margin: 0;
		max-width: 344px;
		min-width: 344px;
		position: relative;
	}
} 

@media (max-width: 1024px) {
    .hp-horizontal-slideshow .description,
    .hp-horizontal-slideshow .description *{
        text-align: center !important;
    }
}


/********** SLIDER **********/

.hp-horizontal-slideshow .brand-slider{
	margin-right: auto;
}

.hp-horizontal-slideshow:has(.tns-outer) .slider {
	cursor: grab;
}
.hp-horizontal-slideshow:has(.tns-outer) .slider.grabbing {
	cursor: grabbing;
}

.hp-horizontal-slideshow .slider:not(.tns-slider) {
	display: flex;
	gap: 40px;
	flex-wrap: nowrap;
    justify-content: center;
}

.hp-horizontal-slideshow .slider:not(.tns-slider) .slide {
	max-width: 260px;
	min-width: 260px;
}


.hp-horizontal-slideshow .slider .slide img {
	width: 100%;
	object-fit: cover;
	display: block;
}


.rounded .hp-horizontal-slideshow .slider .slide > div,
.rounded .hp-horizontal-slideshow .slider .slide img{
    border-radius: 30px;
}

.hp-horizontal-slideshow .slider .slide > div {
    position: relative;
    overflow: hidden;
}
.hp-horizontal-slideshow .slider .slide:has( h3) > div::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    background-blend-mode: multiply;
    background-image: linear-gradient(to bottom, var(--white), #b5b5b5);
    z-index: 1;
    will-change: transform;
    pointer-events: none;
}

.hp-horizontal-slideshow .slider .slide h3 {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.09;
	letter-spacing: normal;
	text-align: center;
	color: var(--white);
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 25px;
    margin: 0;
    margin-inline: 25px;
    pointer-events: none;
    z-index: 2;
}





@media (min-width: 1025px) {

	.hp-horizontal-slideshow .slider:not(.tns-slider) .slide {
		max-width: 340px;
		min-width: 340px;
	}

	.hp-horizontal-slideshow .slider .slide h3 {
		font-size: 28px;
		line-height: 1.29;
		letter-spacing: normal;
        margin-inline: 50px;
        bottom: 44px;
	}

}

@media (min-width: 1025px) {
	.hp-horizontal-slideshow .slider-wrapper,
    .hp-horizontal-slideshow .slider:not(.tns-slider) {
		max-width: calc(100vw - 445px - 140px);
	}
    .hp-horizontal-slideshow .slider-wrapper:has( .tns-slider),
    .hp-horizontal-slideshow .slider.tns-slider {
		min-width: calc(100vw - 445px - 140px);
	}

	.hp-horizontal-slideshow .slider:not(.tns-slider) .slide {
		max-width: 445px;
		min-width: 445px;
	}

} 


/********** SLIDER CURSOR **********/

.hp-horizontal-slideshow .cursor {
	display: none;
	z-index: 10;
}

@media(pointer: fine) {  
	.hp-horizontal-slideshow .cursor {
		position: fixed;
		top: 0;left: 0;
		display: block;
		width: 90px;
		height: 90px;
		border-radius: 100%;
		transform: translate(-50%, -50%);
		background-color: var(--primary);
		opacity: 0;
		mix-blend-mode: hard-light;
		transition: opacity 0.2s ease-in-out;
		pointer-events: none;
	}

	.hp-horizontal-slideshow .cursor.visible {
		opacity: 1;
	}
} 


/********** SLIDER ARROWS **********/

.hp-horizontal-slideshow .slider-arrows {
    justify-content: flex-start;
    gap: 30px;
    position: relative;
    top: unset;
    bottom: unset;
    margin-bottom: 39px;
	display: none;
}



.hp-horizontal-slideshow .slider-arrows a {
	display: inline-block;
	pointer-events: auto;
	width: 17px;
	height: 37px;
	-webkit-mask-image: url(/bluesky/assets/img/template/caret.svg);
    mask-image: url(/bluesky/assets/img/template/caret.svg);
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: #dcdcdc;
	cursor: pointer;
    transform: rotate(180deg);
}

.hp-horizontal-slideshow .slider-arrows a:hover {
	background-color: var(--third);
}

.hp-horizontal-slideshow .slider-arrows .next {
	transform: rotateY(0deg);
}


@media(min-width: 1025px) {

	.hp-horizontal-slideshow:has(.tns-outer) .slider-arrows {
		display: flex;
	}
} 

.galeria_botoes {
    position: relative;
    width: 100vw;
    aspect-ratio: 1.15 / 1;
    max-height: 820px;
}

.galeria_botoes .img-principal:before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    background-blend-mode: multiply;
    background-image: linear-gradient(to top, #8b8a8a, #8b8a8a);
    z-index: 5;
    will-change: transform;
    pointer-events: none;
}

/* .galeria_botoes .img-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.2s ease;
} */

.img-principal{
    z-index: 2;
}

.img-principal img.base,
.img-principal img.hover {
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.galeria_botoes .img-principal img.hover {
    opacity: 0;
    z-index:2;
}

.img-principal img.hover.activo {
    opacity: 1;
}

.galeria_botoes.mobile-or-tablet .img-principal img.hover {
    z-index:inherit;
}

.galeria_botoes:not(.mobile-or-tablet) .img-principal img.base {
    z-index:1;
}

.galeria_botoes .slide .button:hover ~ .img-principal img.hover {
    opacity: 1;
}

.galeria_botoes .in {
    opacity: 1;
}
  
.galeria_botoes .out {
    opacity: 0;
}


.galeria_botoes .slide{
    padding-inline: 20px;
}

.galeria_botoes .slide .button {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.galeria_botoes .slide .button:not([href]){
    cursor: default;
}

.galeria_botoes .slide .button:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: solid 1px rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(0); 
    transition: all 0.3s ease;
    z-index: -1; 
}

.galeria_botoes.mobile-or-tablet .slide .button:before,
.galeria_botoes .slide .button:hover:before {
    border: solid 1px rgba(255, 255, 255, 0.65);
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transform: scale(1);
}

.galeria_botoes .tns-nav{
    position: absolute;
    bottom: 20px;
    margin: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 30px;
}

.galeria_botoes .tns-nav button {
    height: 15px;
    width: 15px;
    z-index: 1;
    transition: var(--transition);
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria_botoes .tns-nav button:before {
    content: "";
    border-radius: 100%;
    background: #fff;
    height: 6px;
    width: 6px;
    z-index: 1;
    transition: var(--transition);
    display: block;
    position: absolute;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
}

.galeria_botoes .tns-nav button.tns-nav-active:before,
.galeria_botoes .tns-nav button:hover:before {
    height: 10px;
    width: 10px;
}

.galeria_botoes .tns-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.galeria_botoes .tns-inner{
    flex: 1;
}


.galeria_botoes.tablet {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.47 / 1;
}

.galeria_botoes .slider {
    position: relative;
    max-width: 860px;
    z-index: 10;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.galeria_botoes:not(.mobile-or-tablet) .slide {
    flex: 1 1 calc(50% - 25px); 
    min-width: 395px;           
    max-width: 395px;           
    min-height: 110px;
    height: 100%;
    display: flex !important;
    justify-content: center;
    padding-inline: 0;
    left: auto !important;
}

.galeria_botoes.tablet .slide .button {
    font-size: 20px;
    line-height: 1.17;
}

.galeria_botoes:not(.mobile-or-tablet) {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.77 / 1;
}

.galeria_botoes:not(.mobile-or-tablet) .slider {
    gap: 30px;
}

.galeria_botoes.tablet .slide {
    flex: 1 1 calc(50% - 25px); 
    min-width: 365px;           
    max-width: 365px;  
    min-height: 100px;
    height: 100%;
    display: flex !important;
    justify-content: center;
    padding-inline: 0;
    left: auto !important;
}

.galeria_botoes:not(.mobile-or-tablet) .slide .button {
    font-size: 24px;
    line-height: 1.17;
}



.pica_botoes.container{
    max-width: 1220px;
    position: relative;
}

.pica_botoes  > div::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #f8f8f8;
    pointer-events: none;
    z-index: -1;
}

.pica_botoes > div{
    padding: 50px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
}

.pica_botoes > div.left img{
    order: 1;
}

.pica_botoes > div.left > div{
    order: 2;
}

.pica_botoes > div img{
    max-width: 490px;
    width: 100%;
}

.pica_botoes > div > div{
    flex: 1;
}

.pica_botoes .botoes_wrapper{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.pica_botoes h2{
    font-size: 40px;
    font-weight: bold;
    line-height: 1.13;
    letter-spacing: normal;
    text-align: left;
    color: var(--secondary);
    margin-block: 0;
    margin-bottom: 35px;
}

.pica_botoes p{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: var(--third);
    margin-block: 0;
}

.pica_botoes .button{
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.33 !important;
    letter-spacing: normal;
    text-align: left;
    color: var(--primary);
    padding: 11px 20px !important;
}

.pica_botoes .button:focus,
.pica_botoes .button:hover{
    padding: 11px 20px;
    color: var(--primary);
}

.pica_botoes .button::before{
    opacity: 0.1;
}

.rounded .pica_botoes .button::before{
    border-radius: 20px;
}

.rounded .pica_botoes > div img,
.rounded .pica_botoes > div::before{
    border-radius: 30px;
}

@media(max-width:820px){
    .pica_botoes > div{
        padding: 40px;
        justify-content: center;
        gap: 60px;
        align-items: flex-start;
    }
    .pica_botoes > div img{
        max-width: 45%;
    }

    .pica_botoes h2{
        font-size: 32.5px;
        line-height: 1.16;
        margin-bottom: 23px;
    }

    .pica_botoes p{
        font-size: 20px;
        line-height: 1.33;
    }

    .pica_botoes .button{
        font-size: 14px !important;
        line-height: 1.43 !important;
        padding: 9.5px 20px !important;
    }
}


@media(max-width:767px){
    .pica_botoes > div > div{
        order: 2;
    }
    .pica_botoes > div img{
        max-width: 100%;
        order: 1;
    }
    .pica_botoes.container{
        padding: 0;
    }
    .pica_botoes > div::before{
        border-radius: 0px !important;
    }
    .pica_botoes > div{
        padding: 30px 20px;
        gap: 30px;
    }

    .pica_botoes h2{
        font-size: 25.5px;
        line-height: 1.16;
        margin-bottom: 20px;
    }

    .pica_botoes p{
        font-size: 18px;
        line-height: 1.33;
    }

    
}


.hp-numeros .container{
    max-width: 1220px;
}

.hp-numeros .container .count-wrapper {
    padding: 56px 50px 55px;
    position: relative;
}

.hp-numeros .container .count-wrapper:before{
    content: "";
    background-color: var(--primary);
    position: absolute;
    inset: 0;
    opacity: .07;
}

.rounded .hp-numeros .container .count-wrapper:before{
    border-radius: 30px;
}

.hp-numeros .container .count-wrapper > div {
    display: flex;
    gap: 50px;
}

.hp-numeros .container .count-wrapper > div > div {    
    text-align: center;
}

.hp-numeros .container .count-wrapper > div > div span {
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: var(--primary);
    height: 60px;
}

.hp-numeros .container .count-wrapper > div > div p {
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.42;
    letter-spacing: normal;
    text-align: center;
    color: var(--third);
    margin: 0;
    margin-top: 18px;
}

.hp-numeros .slider-arrows > div::before {
    background-color: #dedddd;
}
.hp-numeros .slider-arrows > div:hover::before {
    background-color: #757575;
}
.hp-numeros .slider-arrows>div.prev {
    transform: rotate(180deg);
}

.hp-numeros .tns-item{
    min-width: 230px;
    max-width: 300px;
}


body:not(.mobile) .less .tns-item{
    min-width: 500px;
    max-width: 500px;
}


body:not(.mobile-or-tablet) .hp-numeros .slider-arrows>div.prev {
    margin-left: 0px;
    left: -50px;
}
body:not(.mobile-or-tablet) .hp-numeros .slider-arrows>div.next {
    margin-right: 0px;
    right: -50px;
}


body.mobile-or-tablet .hp-numeros .container{
        padding-inline: 0;
    }


body.mobile-or-tablet .hp-numeros .container .count-wrapper:before{
        border-radius: 0px;
    }

body.mobile-or-tablet .hp-numeros .container .count-wrapper {
    padding: 35px 0px;
}

body.mobile-or-tablet .hp-numeros .container .count-wrapper > div {
    display: flex;
    gap: 0px;
}

body.mobile-or-tablet .hp-numeros .container .count-wrapper > div > div {
    gap: 3px;
}


body.mobile-or-tablet .hp-numeros .container .count-wrapper > div > div span {
    font-size: 28.5px;
    line-height: 1.12;
}

body.mobile-or-tablet .hp-numeros .container .count-wrapper > div > div p {
    font-size: 14px;
    line-height: 1.46;
    margin-top: 18px;
}

body.mobile-or-tablet .hp-numeros .tns-item{
    min-width: 130px;
    max-width: 250px;
}

body.mobile-or-tablet .hp-numeros .container .count-wrapper > div.slider-arrows{
    display: none;
}