/*
    ---------------------------------------------
    Created and updated by
    Fernanda "Wolf Krauser" Behrend
    fernanda.behrend1203@gmail.com

    CSS last modified: 27/01/2023
    ---------------------------------------------
*/

@import url("../css/reset.css");
@import url("../css/themecolors.css");
@import url("../css/mobile.css");
@import url("../css/politica_privacidade.css");
@import url("../js/jsmodal/modals.css");
@import url("https://lovatel.com.br/plugins/plugins.css");

body{
    overflow-x: hidden;
}

.social-box{
    width: fit-content;
    width: -moz-fit-content;
}
.social-box a{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin: 0px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* borda no themecolors*/
}
.social-box .fab,
.social-box .fas{
    font-size: 16px;
    /* cor no themecolors */
}
.social-box a img{
    width: 100%;
    height: 100%;
}


/* Pré-header */
.preHeader{
    background: #F6F6F6;
    padding: 12px 20px;
    position: relative;
}

.preHeader .main{
    z-index: 10;
}

.linksPreH{
    margin: 0 0 0 auto;
}
.linksPreH a{
    font-size: 12px;
    line-height: 12px;
    margin-right: 30px;
}
.linksPreH a:last-child{
    margin-right: 0;
}


/* HEADER */
header{
    background: #fff;
    padding: 25px 20px;
    width: 100%;
    z-index: 200;
    position: absolute;
    top: 36px;
    left: 0;

    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
}
header::before{
    content: '';
    position: absolute;
    top: -36px;
    left: 0;
    width: 207px;
    height: 290px;
    background: url('../img/pseudoHeader.webp') no-repeat top right;
    z-index: 1;
}
header::after{
    content: '';
    position: absolute;
    top: -36px;
    right: 0;
    width: 171px;
    height: 181px;
    background: url('../img/pseudoHeader2.webp') no-repeat top left;
    z-index: 1;
}

header .main{
    z-index: 10;
}

.logoH{
    width: fit-content;
    width: -moz-fit-content;
    height: fit-content;
    height: -moz-fit-content;
    z-index: 10;
}
.logoH img{
    width: 100%;
    height: 100%;

    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
}

.dl-menu{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}
#menu .dl-menu > li{
    position: relative;
    margin-right: 10px;
}
#menu .dl-menu > li:last-child{
    margin-right: 0;
}
#menu .dl-menu > li > a{
    padding: 12px 18px;
    color: #584A89;
    font-size: 17px;
    border-radius: 200px;
    font-weight: 700;
    border: 2px solid transparent;
    background: #FFF;
    font-family: 'carnas', sans-serif;

    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0), 0px 10px 36px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0), 0px 10px 36px 0px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0), 0px 10px 36px 0px rgba(0, 0, 0, 0);
}
#menu .dl-menu > li > a.drop{
    padding: 12px 25px 12px 15px;
    background: #FFF url('../img/dropdown.svg') no-repeat center right 5px;
}

/* hover no themecolors */
#menu .dl-subMenu{
    position: absolute;
    top: 25px;
    left: 0px;
    width: 200px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -100;
    border-radius: 10px;
    border: 2px solid #6DCEF5;
    background: #FFF;
    padding: 20px 25px;

    transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;

    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
}
#menu .dl-subMenu > li > a{
    display: flex;
    color: #584A89;
    font-size: 17px;
    font-weight: 700;
    font-family: 'carnas', sans-serif;
}
#menu .dl-subMenu > li:hover > a{
    color: #6DCEF5;
}
#menu .dl-subMenu > li{
    position: relative;
    margin-bottom: 10px;
}
#menu .dl-subMenu > li:last-child{
    margin-bottom: 0;
}

#menu .dl-menu li:hover .dl-subMenu{
    top: 32px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.socialH{
    z-index: 10;
}


/* Header scroll */
header.scroll{
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 20px;

    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}
header.scroll::before,
header.scroll::after{
    display: none;
}

header.scroll .logoH img{
    max-width: 150px;
}


/* Banner */
.mgTop{
    margin-top: 126px;
}

.bannerDesk,
.bannerMobile{
    height: fit-content;
    height: -moz-fit-content;
}
.bannerDesk img,
.bannerMobile img{
    width: 100%;
    height: 100%;
}
.bannerMobile{
    display: none;
}


/* Soluções home */
.solucoesHome h2{
    font-size: 35px;
    line-height: 40px;
    position: relative;
}
.solucoesHome h2::before{
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -41px;
    right: -40px;
    width: 115px;
    height: 82px;
    z-index: 0;
    background: url('../img/pseudoTitle.svg') no-repeat center;
}
.solucoesHome h2 span{
    z-index: 5;
    position: relative;
}

.gridSolucoesH{
    margin-top: 60px;
}

.itemSolucao{
    border-radius: 10px;
    border: 2px solid #6DCEF5;
    background: #FFF;
    padding: 40px;

    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
}
.itemSolucao:hover{
    border-color: #584A89;
}
.iconSolucao{
    margin: 0 auto 15px 0;
}


/* Portfólio home */
.portfolioHome .main{
    max-width: 1680px;
}

.gridPortHome{
    grid-gap: 10px;
    margin: 35px auto 60px auto;
}

.itemPort{
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
.itemPort img{
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: center;

    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
}
.itemPort:hover img{
    transform: scale(1.1);
}

.sobreItemPortfolio{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
}
.itemPort:hover .sobreItemPortfolio{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.verTodos{
    border-radius: 200px;
    border: 2px solid #6DCEF5;
    background: #FFF;
    padding: 12px 18px;
    margin: 0 auto;

    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
}


/* Clientes home */
.clientesHome{
    background: #FFF;
    padding: 10px 20px;

    box-shadow: 0px 10px 36px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 10px 36px 0px rgba(0, 0, 0, 0.10);
    -webkit-box-shadow: 0px 10px 36px 0px rgba(0, 0, 0, 0.10);
}

.clientesHome .main{
    max-width: 100%;
}

.sliderClientes .swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;
}
.sliderClientes a img{
    filter: grayscale(100%);
}
.sliderClientes a:hover img{
    filter: none;
}


/* FOOTER */
.infoFooter{
    padding: 60px 20px;
}

.infoFooter .main{
    border-radius: 120px 10px;
    background: #584A89;
    padding: 85px 160px;
    position: relative;

    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
}
.infoFooter .main::before{
    content: '';
    position: absolute;
    top: 0;
    left: -150px;
    width: 239px;
    height: 447px;
    z-index: 1;
    background: url('../img/pseudoFooter.webp') no-repeat top right;
}
.infoFooter .main::after{
    content: '';
    position: absolute;
    top: 115px;
    right: -50px;
    width: 340px;
    height: 368px;
    z-index: 1;
    background: url('../img/pseudoFooter2.webp') no-repeat bottom left;
}

.leftFooter{
    width: 40%;
    z-index: 10;
}
.leftFooter h2{
    font-size: 35px;
    line-height: 40px;
}
.leftFooter a{
    border-radius: 200px;
    border: 2px solid #6DCEF5;
    background: #FFF;
    padding: 12px 60px;
    font-size: 17px;

    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
}

.rightFooter{
    width: 31%;
}
.endF,
.telF{
    width: 100%;
}
.telF{
    margin-top: 20px;
}
.iconEndF{
    align-self: flex-start;
}
.iconEndF,
.iconTelF{
    margin-right: 15px;
}
.txtEndF p,
.txtTelF a{
    color: #fff;
    margin-bottom: 0;
    z-index: 10;
}



.socialF{
    display: none;
}
.socialF a img{
    filter: brightness(2000%);
}


.copyright{
    padding: 0 20px 70px 20px;
}

.copyright p,
.copyright a{
    color: #A7A7A7;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0;
}


/* Header Page */
.headerPage{
    background: #6DCEF5;
    padding: 35px 20px;
}

.sliderSobre{
    margin-top: 5px;
}
.sliderSobre a{
    overflow: hidden;
}
.sliderSobre a img{
    width: 100%;
    height: 425px;
    object-fit: cover;
    object-position: center;

    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
}
.sliderSobre a:hover img{
    transform: scale(1.1);
}

.sobre p.t-center{
    max-width: 855px;
    margin: 0 auto 60px auto;
}


.videoSobre{
    width: 46%;
    overflow: hidden;
}
.videoSobre iframe{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.videoSobre img{
    border-radius: 10px;
}

.mvvSobre{
    width: 46%;
    border-radius: 10px;
    border: 2px solid #6DCEF5;
    background: #FFF;
    height: fit-content;
    height: -moz-fit-content;
    padding: 50px 50px;

    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
}
.mvvSobre h6{
    margin-bottom: 5px;
    margin-top: 30px;
}
.mvvSobre h6:first-child{
    margin-top: 0;
}
.mvvSobre p{
    margin-bottom: 5px;
}
.mvvSobre p:last-child{
    margin-bottom: 0;
}


/* Serviços */
.gridServ{
    width: 49%;
}

.rightServ{
    width: 41%;
    height: fit-content;
    height: -moz-fit-content;
    position: relative;
}
/* .rightServ::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 5;
} */
.rightServ img{
    width: 100%;
    height: 100%;
    border-radius: 100px 10px;
    position: relative;
    z-index: 1;
}
.rightServ a{
    position: absolute;
    padding: 15px 42px;
    border-radius: 249px;
    border: 2px solid #F3A51F;
    background: #F3A51F;
    bottom: -20px;
    left: 50%;
    margin-left: -131.5px;
    font-size: 20px;
    z-index: 10;

    box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
}


/* Serviços detalhes */
.leftDetalhes{
    width: 48%;
    height: fit-content;
    height: -moz-fit-content;
}

.leftDetalhes h4{
    margin-top: 15px;
    font-size: 20px;
    line-height: 25px;
    color: #584A89;
    font-weight: 900;
    margin-bottom: 10px;
    padding-left: 30px;
    background: url('../img/seta.svg') no-repeat center left;
}
.leftDetalhes p{
    text-align: justify;
}
.leftDetalhes a{
    padding: 15px 42px;
    border-radius: 249px;
    border: 2px solid #F3A51F;
    background: #F3A51F;
    font-size: 20px;
    margin: 25px auto 0 0;

    box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
}

.rightDetalhes{
    width: 41%;
    height: fit-content;
    height: -moz-fit-content;
    position: relative;
}
/* .rightDetalhes::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 5;
} */
.rightDetalhes img{
    width: 100%;
    height: 100%;
    border-radius: 100px 10px;
    position: relative;
    z-index: 1;
}

.outrosServicos{
    max-width: 970px;
    margin: 80px auto 0 auto;
}


/* Portfólio */
.portfolio .main{
    max-width: 1680px;
}

.portfolio ul {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto 70px auto;
    gap: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio ul li{
    width: fit-content;
    width: -moz-fit-content;
}
.portfolio ul li a{
    width: 100%;
    justify-content: center;
    padding: 7px 20px;
    color: #584A89;
    font-weight: 700;
    font-size: 17px;
    border-radius: 200px;
    border: 2px solid #6DCEF5;
    background: #FFF;

    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
}
.portfolio ul li a div{
    margin-right: 8px;
    min-width: 26px;
}
.portfolio ul li:hover a,
.portfolio ul li.ativo a{
    color: #fff;
    border: 2px solid #584A89;
    background: #584A89;
}
.portfolio ul li:hover a div img,
.portfolio ul li.ativo a div img{
    filter: brightness(2000%);
}

.gridPortfiolio{
    grid-gap: 10px;
}


/* Portfólio detalhes */
.portfolioDetalhes{
    position: relative;
    padding: 60px 20px;
}

.linkPortfolio{
    border-radius: 200px;
    color: #584A89;
    border: 2px solid #6DCEF5;
    background: #FFF;
    padding: 11px 50px;
    margin: 0 auto 50px auto;
    font-family: 'carnas', sans-serif;
    font-weight: 700;
    text-align: center;

    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
}

.portfolioDetalhes .textoBlog h4{
    font-size: 25px;
    line-height: 30px;
    margin-top: 40px;

    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
}

.textoBlog figure{
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto;
}

.orcPort{
    padding: 12px 60px;
    border-radius: 249px;
    border: 2px solid #F3A51F;
    background: #F3A51F;
    font-size: 20px;
    margin: 0 auto -90px auto;

    box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
}


/* Parceiros */
.leftParceiros{
    width: 48%;
}

.leftParceiros p{
    text-align: justify;
}

.leftParceiros h4{
    margin-top: 45px;
}
.leftParceiros ul{
    width: 100%;
}
.leftParceiros ul li{
    width: 100%;
    font-size: 15px;
    color: #584A89;
    line-height: 20px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 30px;
}
.leftParceiros ul li::before{
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 17px;
    height: 17px;
    background: url('../img/seta.svg') no-repeat center;
}

.leftParceiros a{
    padding: 15px 42px;
    border-radius: 249px;
    border: 2px solid #F3A51F;
    background: #F3A51F;
    font-size: 20px;
    margin: 25px auto 0 0;

    box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
}

.rightParceiros{
    width: 41%;
    height: fit-content;
    height: -moz-fit-content;
    position: relative;
}
/* .rightParceiros::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 5;
} */
.rightParceiros img{
    width: 100%;
    height: 100%;
    border-radius: 100px 10px;
    position: relative;
    z-index: 1;
}


/* Blog */
.blog .main{
    max-width: 1680px;
}

.filterBlog{
    max-width: 860px;
    margin: 0 auto 70px auto;
}
#form_searchN{
    width: 100%;
}
#form_searchN .input{
    width: 20%;
    border-radius: 30px;
    border: 2px solid #BDBDBD;
    background: #FFF;
    color: #787878;
    font-size: 15px;
    line-height: 15px;
    padding: 5px 20px;
    position: relative;
    display: flex;
}

#form_searchN .button{
    cursor: pointer;
    border-radius: 200px;
    border: 2px solid #6DCEF5;
    background: #FFF;
    font-size: 17px;
    line-height: 17px;
    padding: 12px 20px;
    width: 15%;
    margin-bottom: 5px;
    text-align: center;
    justify-content: center;

    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 10px 36px 0px rgba(0, 0, 0, 0.16);
}

.gridBlog{
    grid-column-gap: 10px;
    grid-row-gap: 25px;
    margin-bottom: 20px;
}

.imgItemBlog{
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}
.imgItemBlog img{
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: center;

    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
}
.itemBlog span,
.itemBlog h4{
    padding: 0 10px;
}
.itemBlog p{
    text-align: justify;
    line-height: 15px;
    padding: 0 10px;
}
.itemBlog:hover .imgItemBlog img{
    transform: scale(1.1);
}


/* Blog detalhes */
.imgPrincipal{
    margin: 20px auto 30px auto;
}

.vejaTambem .main{
    max-width: 1680px;
}


/* Contato */
.formulario{
    max-width: 910px;
    margin: 0 auto 80px auto;
}

#form_contact{
    width: 100%;
    height: available;
    height: fit-content;
}
#form_contact .input{
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid #BDBDBD;
    background: #FFF;
    padding: 12px 25px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 19px;
    color: #787878;
}
#form_contact select{
    background: #fff url('../img/dropdown.svg') no-repeat center right 10px !important;
}
.fileTrabalhe{
    position: relative;
}
.fileTrabalhe p{
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid #BDBDBD;
    background: #FFF;
    padding: 12px 25px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 19px;
    color: #787878;
    margin-bottom: 0;
    width: 100%;
}
.fileTrabalhe input{
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

#form_contact .msg{
    width: 100%;
    min-height: 100px;
}
#form_contact textarea{
    overflow: hidden;
}
#form_contact .button{
    cursor: pointer;
    font-family: 'carnas', sans-serif;
    font-size: 20px;
    color: #fff;
    justify-content: center;
    text-align: center;
    padding: 12px 50px;
    border-radius: 250px;
    border: 2px solid #F3A51F;
    background: #F3A51F;
    margin-top: 10px;

    box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
}
#form_contact .privacyTerms{
    align-items: center;
}
#form_contact .privacyTerms input{
    margin-bottom: 0;
}
#form_contact .privacyTerms p,
#form_contact .privacyTerms a{
    color: #787878;
    font-size: 12px;
    line-height: 15px;
}

::-webkit-input-placeholder {
    color: #787878;
}
:-moz-placeholder { /* Firefox 18- */
    color: #787878;
}
::-moz-placeholder {  /* Firefox 19+ */
    color: #787878;
}
:-ms-input-placeholder {
    color: #787878;
}

.mapaIframe{
    border-radius: 15px;
    overflow: hidden;
}
.mapaIframe iframe{
    width: 100%;
    height: 400px;
}


/* Trabalhe Conosco */
.leftTrabalhe{
    width: 48%;
}

.leftTrabalhe p{
    text-align: justify;
}
.leftTrabalhe h4{
    margin-top: 35px;
}
.leftTrabalhe ul{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
}
.leftTrabalhe ul li{
    width: 100%;
    font-size: 15px;
    color: #584A89;
    line-height: 20px;
    position: relative;
    padding-left: 30px;
}
.leftTrabalhe ul li::before{
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 17px;
    height: 17px;
    background: url('../img/seta.svg') no-repeat center;
}

.leftTrabalhe a{
    padding: 12px 60px;
    border-radius: 249px;
    border: 2px solid #F3A51F;
    background: #F3A51F;
    font-size: 20px;
    margin: 25px auto 0 0;

    box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 0px 0px 1.24887px rgba(0, 0, 0, 0.06), 0px 12.4887px 44.9593px 0px rgba(0, 0, 0, 0.16);
}

.rightTrabalhe{
    width: 41%;
    height: fit-content;
    height: -moz-fit-content;
    position: relative;
}
.rightTrabalhe::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 5;
}
.rightTrabalhe img{
    width: 100%;
    height: 100%;
    border-radius: 100px 10px;
    position: relative;
    z-index: 1;
}


.pdfSobre{
    width: 100%;
    max-width: 800px;
    margin: 80px auto 0;
    gap: 10px;
}

.pdfSobre a{
    display: flex;
    width: 45%;
    background: #584A89;
    padding: 10px 20px;
    justify-content: center;
    border-radius: 10px;
    transition: all .3s;
    border: 2px solid transparent;
}


.pdfSobre a img{
    filter: grayscale(1) invert(1) brightness(1000%);
    transition: all .3s;
}

.pdfSobre a:hover img{
    filter: none;
}

.pdfSobre a:hover{
    color: #584A89;
    background: #fff;
    border-color: #584A89;
}


/* Wpp */
/* Esconde o input checkbox */
#toggleWpp {
    display: none;
}

/* Estiliza o botão do WhatsApp */
.btnWhatsapp {
    position: fixed;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #34af23 url("../img/wppIcon.png") no-repeat center center;
    bottom: 20px;
    right: 20px;
    z-index: 77777;
    box-shadow: 0 4px 5px -1px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.grnSpan {
    background: #34af23;
    color: #fff;
    padding: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 12px;
    line-height: 17px;
}

/* Animação do botão flutuante */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
.btnWhatsapp {
    animation: floating 3s infinite ease-in-out;
}

/* Caixa do WhatsApp oculta por padrão */
.boxWpp {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 280px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    z-index: 999;
}

#toggleWpp:checked ~ .fixWpp .boxWpp {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

/* Botão de fechar */
.closeWpp {
    position: absolute;
    top: 5px;
    right: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
}

.listWpp {
    width: 100%;
    padding: 15px;
}

.listWpp p {
    font-weight: bold;
    margin: 5px 0 6px;
}
.listWpp a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
    margin-bottom: 10px;
}
.listWpp a:hover {
    color: #34af23;
}
.listWpp .whFitImg img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.certificadosSobre {
    max-width: 1100px;
}
