* { 
	outline: none!important;
	font-family: "Inter", sans-serif;
	scroll-behavior: smooth;
}

.container {
	width: 1200px!important;
	max-width: 100%;
}

a:active, 
a:checked,
a:focus, 
a:hover { 
	outline: none!important; 
	text-decoration: none;
}

body { 
	font-family: "Inter", sans-serif;
	margin:0;
	padding: 87px 0 0 0;
	font-weight: 300;
	background-color: #fff!important;
}

.clear { 
	clear:both;
}

.none {
	display: none!important;
}

img { 
	max-width:100%!important; 
	height:auto; 
}

/* Alinhamentos de Conteúdo */

.aligncenter,
.alignleft,
.alignright {
    display: block;
    padding: 0;
}

.aligncenter {
    float: none;
    margin: .5em auto 1em;
}

.alignright {
    float: right;
    margin: .5em 0 1em 1em;
}

.alignleft {
    float: left;
    margin: .5em 1em 1em 0;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	text-align: center;
    font-size: 12px;
	margin: 10px 0 0 0;
}

/* FONTES */

a { 
	text-decoration:none!important; 
}

a:hover { 
	text-decoration:none; 
}

p, span, li {
	color: #000;
	font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

/* Slick Slider */

.slick-disabled {
	opacity: 0.1!important;
}

/* Tooltip */

.tooltip-inner {
	font-size: 15px;
    letter-spacing: 1px;
}

/*********************************************
** Título Página
*********************************************/

.tituloPrincipal {
	float: left;
	width: 100%;
	text-align: left;
	margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tituloPrincipal.center {
	align-items: center;
}

.tituloPrincipal .preTitulo {
	font-size: 14px;
    line-height: 14px;
    margin: 0 0 15px 0;
    color: #000;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    background-color: #FACA08;
    border-radius: 100px;
    padding: 8px 20px;
    font-weight: 700;
}

.tituloPrincipal.tituloSecundario .preTitulo {
	color: #FACA08;
    background-color: #000;
}

.tituloPrincipal .boxTag {
	font-size: 28px;
    line-height: 38px;
    font-weight: 800;
    margin: 0;
    color: #000;
    display: inline-block;
}

.tituloPrincipal.center .boxTag {
    text-align: center;
}

/* Subtítulo */

.tituloPrincipal .subTitulo {
    float: left;
    color: #000000;
    width: 100%;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    margin-top: 15px;
}

.tituloPrincipal.center .subTitulo {
    text-align: center;
}

/*********************************************
** Botão
*********************************************/

.boxLink {
	float: left;
	text-align: left;
	width: 100%;
}

.boxLink.center {
	text-align: center;
}

.boxLink a {
	display: inline-block;
	cursor: pointer;
	position: relative;
}

.boxLink.full a {
	width: 100%;
}

.boxLink a .styleBotaoInterno {
	padding: 0 20px 0 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cor-botao);
    transition: all 0.1s linear;
    border-radius: 50px;
	overflow: hidden;
	position: relative;
}

.boxLink a .styleBotaoInterno:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    -webkit-transform: translate(-105%, 0);
    transform: translate(-105%, 0);
    background-color: rgba(255, 255, 255, 0.8);
}

.boxLink a .styleBotaoInterno:hover:before {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.boxLink.secundario a .styleBotaoInterno {
	background: #FFFFFF;
}

.boxLink.vazado a .styleBotaoInterno {
	background: none;
}

.boxLink a .styleBotaoInterno span {
	color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 15px;
}

.boxLink a .styleBotaoInterno i {
	align-items: center;
    color: #fff;
    display: flex;
    justify-content: center;
    margin-left: 20px;
    font-size: 17px;
    line-height: 17px;
}

/*********************************************
** Item Post
*********************************************/

.itemPost {
    list-style: none;
    padding: 0 10px;
}

.itemPost .boxInterno {
    float: left;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.itemPost .imgPrincipalPost {
    float: left;
    width: 100%;
    position: relative;
}

.itemPost .imgPrincipalPost img {
    border-radius: 10px 10px 0 0;
    width: 100%;
}

.itemPost .imgPrincipalPost span {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: #262626;
    border-radius: 6px;
    padding: 3px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.itemPost .boxDados {
    float: left;
    width: 100%;
    padding: 20px;
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.itemPost .boxDados h3 {
    float: left;
    width: 100%;
    color: #000;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.itemPost .boxDados p {
    font-size: 13px;
    float: left;
    width: 100%;
    margin: 0;
}

/*********************************************
** Item Treinamento
*********************************************/

.itemTreinamento {
    list-style: none;
}

.itemTreinamento .boxInterno {
    float: left;
    width: 100%;
}

.itemTreinamento .boxInterno a {
    float: left;
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.itemTreinamento .boxInterno a .imagemPrincipal {
    float: left;
    width: 100%;
}

.itemTreinamento .boxInterno a .imagemPrincipal img {
    transition: all 0.1s linear;
}

.itemTreinamento .boxInterno a:hover .imagemPrincipal img {
    transform: scale(1.05);
}

.itemTreinamento .boxInterno a .boxTexto {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.itemTreinamento .boxInterno a .boxTexto .texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.itemTreinamento .boxInterno a .boxTexto .texto h2 {
    color: #FACA08;
    margin: 0 0 7px 0;
    font-size: 22px;
}

.itemTreinamento .boxInterno a .boxTexto .texto p {
    color: #fff;
    margin: 0;
    font-size: 13px;
}

/*********************************************
** Fale com um Especialista
*********************************************/

.faleComEspecialista {
    float: left;
    width: 100%;
}

.faleComEspecialista .boxBg {
    float: left;
    width: 100%;
    background-color: #FACA08;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 050px;
}

.faleComEspecialista .boxBg h2 {
    margin: 0;
    font-weight: 800;
    font-size: 30px;
    line-height: 40px;
}

.faleComEspecialista .boxBg p {
    margin: 10px 0 30px 0;
}

.faleComEspecialista .boxBg button {
    color: #000000;
    border: solid 2px #000000;
    border-radius: 6px;
    padding: 10px 30px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    background: none;
}

/*********************************************
** Paginação
*********************************************/

.pagination {
	float: left;
	width: 100%;
	text-align: center;
	margin: 40px 0 0 0!important;
}

.pagination h2 {
	display: none;
}

.pagination .nav-links {
	float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-numbers {
	display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #000;
    transition: all 0.2s linear;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    padding: 0 10px;
    background: none;
    border-radius: 8px;
    border: solid 1px #262626;
}

.pagination .page-numbers + .page-numbers {
	margin-left: 5px;
}

.pagination span.current,
.pagination a:hover {
	background: #FACA08;
    border-color: #FACA08;
	color: #000;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
	border-radius: 150px;
	width: 30px;
	height: 30px;
	margin-left: 20px;
}

.pagination .page-numbers.prev {
	margin-left: 0;
	margin-right: 15px;
}

.pagination .page-numbers.next i,
.pagination .page-numbers.prev i {
	font-size: 12px;
}

/*********************************************
** Breadcrumb
*********************************************/

.bread-crumbs-pagina {
	margin: 0;
	color: #272727!important;
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	margin: 0;
    float: left;
    width: 100%;
    padding: 0;
}

.bread-crumbs-pagina #breadcrumbs i {
    color: #FACA08!important;
    margin-right: 5px;
}

.bread-crumbs-pagina span {
	color: #272727!important;
	font-size: 14px;
	font-weight: 500;
}

.bread-crumbs-pagina a {
	color: #272727!important;
	font-size: 14px;
	font-weight: 500;
}

.bread-crumbs-pagina .breadcrumb_last {
	color: #272727!important;
	font-size: 14px;
    font-weight: 600;
}

/*********************************************
** Modal Vídeo
*********************************************/

#modalVideo {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: none;
}

#modalVideo .boxFlex {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalVideo .boxFlex .boxVideoInterno {
    width: 900px;
    max-width: 90%;
    position: relative;
    max-height: 90%;
}

#modalVideo .boxFlex .boxVideoInterno .fechaModalVideo {
    position: absolute;
    top: -30px;
    right: -30px;
    cursor: pointer;
}

#modalVideo .boxFlex .boxVideoInterno .fechaModalVideo i {
    color: #fff;
    font-size: 26px;
}

#modalVideo .boxFlex .boxVideoInterno video {
    width: 100%;
    border-radius: 12px;
    max-height: 100%;
}

/*********************************************
** Modal Fale com um Especialista
*********************************************/

#modalEspecialista {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: none;
}

#modalEspecialista .boxFlex {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalEspecialista .boxFlex .boxFormulario {
    width: 780px;
    max-width: 90%;
    position: relative;
    max-height: 90%;
    background-color: #fff;
    padding: 40px;
    border-radius: 30px;
    overflow-y: auto;
}

#modalEspecialista .boxFlex .boxFormulario .fechaModal {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

#modalEspecialista .boxFlex .boxFormulario .fechaModal i {
    color: #5B5B5B;
    font-size: 26px;
}

@media (max-width: 1200px) {

	.container {
		width: 100%!important;
		max-width: 100%;
	}

}

@media (max-width: 1000px) {

	/* Tecnologia */

    .boxTecnologias ul li {
        padding: 25px;
    }

}

@media only screen and (max-width: 900px) {

	body {
		padding-top: 105px;
	}

}

@media only screen and (max-width: 768px) {

	/* Título */

	.tituloPrincipal {
		margin: 0 0 30px 0;
	}

	.tituloPrincipal .boxTag {
		font-size: 22px!important;
		line-height: 30px!important;
	}

	.tituloPrincipal .boxTag br {
		display: none;
	}

    .tituloPrincipal .preTitulo span {
        font-size: 12px;
        line-height: 22px;
    }

    .tituloPrincipal .preTitulo span::before {
        width: 3px;
        margin-right: 10px;
    }
    
    .tituloPrincipal .preTitulo span::after {
        width: 3px;
        margin-left: 10px;
    }

	/* Link */

	.boxLink a .styleBotaoInterno {
		    padding: 0 5px 0 15px;
	}

	.boxLink a .styleBotaoInterno br {
		display: none
	}

	.boxLink a .styleBotaoInterno span {
		font-size: 14px;
		line-height: 20px;
	}

	.boxLink a .styleBotaoInterno i {
		margin-left: 10px;
	}

    /* Manutenção e Suporte */

    .manutencaoESuporte {
        padding: 50px 0;
    }

    .manutencaoESuporte .boxTexto p {
        max-width: 100%;
    }

    .manutencaoESuporte ul li .boxInterno {
        padding: 30px 15px;
    }

    .manutencaoESuporte ul li .precoPlano {
        margin: 30px 0 15px 0;
        letter-spacing: 0;
    }

    /* Item post */

    .itemPost {
        padding: 0 10px;
    }

    .itemPost .boxDados h3 {
        font-size: 16px;
        line-height: 24px;
    }

    /* Tecnologia */

    .boxTecnologias {
        padding: 50px 0;
    }

    .boxTecnologias ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .boxTecnologias ul li:nth-child(1) {
        
        border-bottom: solid 1px #757f8d;
    }

    .boxTecnologias ul li:nth-child(2) {
        border-right: 0;
        border-bottom: solid 1px #757f8d;
    }

    .boxTecnologias ul li:nth-child(3) {
        border-bottom: solid 1px #757f8d;
        border-right: solid 1px #757f8d;
    }

    .boxTecnologias ul li:nth-child(4) {
        border-right: 0;
        border-bottom: solid 1px #757f8d;
    }

    .boxTecnologias ul li:nth-child(5) {
        border-right: solid 1px #757f8d;
    }

    /* Portfólio */

    .boxPortfolio {
        padding-bottom: 50px;
    }

    .boxPortfolio .boxTexto p {
        max-width: 100%;
    }

    /* Contato */

    .boxContato {
        padding: 50px 0;
    }

    .boxContato .container {
        flex-direction: column;
    }

    .boxContato .boxForm {
        padding-left: 15px;
        margin-top: 40px;
    }

    /* Dúvidas Frequentes */

    .duvidasFrequentes {
        padding: 50px 0;
    }

    .duvidasFrequentes .boxTexto p {
        max-width: 100%;
    }

    .duvidasFrequentes .boxTexto {
        margin-bottom: 10px;
    }

}

@media only screen and (max-width: 500px) {

    /* Tecnologias */

    .boxTecnologias ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .boxTecnologias ul li {
        border: 0!important;
    }

    .boxTecnologias ul li + li {
        border-top: solid 1px #757f8d!important;
    }

    .boxTopicos ul li:hover {
        transform: none!important;
    }

}