@charset "UTF-8";
/* CSS - San Rafael | Codificado por: Ueek Agência Digital | Ano: 2018 */

/******************* Atribuições Gerais *********************/
.pagina { padding: 110px 0 60px; }

section.banner-section{
	padding-top: 110px;
	height: calc(100vh - 110px);
	position: relative;
}

section.banner-section .filter{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: rgba(0, 0, 0, 0.7);
	z-index: 2;
}

section.banner-section .banner{
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	position: relative;
}

section.banner-section .banner.w-video{
	width: 100%;
	height: 100%;
	position: relative;
}

section.banner-section .banner .text{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 25px;
	position: relative;
	z-index: 3;
	color: #FFF;
	width: 45%;
	text-align: center;
}

section.banner-section .banner .text h1{
	font-size: 60px;
	font-weight: 600;
	line-height: 78px;
}

section.banner-section .banner .text p{
	font-size: 18px;
}

section.banner-section .banner .text a{
	border: 2px solid #23B04D;
	background: #23B04D;
	border-radius: 10px;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	padding: 10px 15px;

	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity = 50);
	filter: alpha(opacity = 50);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

section.banner-section .banner .text a .iconify{
	font-size: 20px;
}

section.banner-section .banner .text a:hover{
	border: 2px solid #23B04D;
	background: transparent;
	border-radius: 10px;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	padding: 15px, 30px;
}

section.banner-section .banner video{
	width: 100%;
	position: absolute;
	z-index: 1;
}

section.banner-section .banner-swiper{
	overflow: hidden;
	width: 100%;
	height: 100%;
}

header#titulo{
	background: #f6f4f4;
    text-align: center;
    padding: 45px 0;
}

header#titulo h1 {
    color: #23B04D;
    font-size: 35px;
    font-weight: 700;
}

header#titulo img {
    margin: 20px 0;
	filter: grayscale(1);
}

header#titulo span a { color: #23B04D; }
header#titulo span a:hover { color: #000; }

/******************* Atribuições Gerais *********************/


/*************************** Sobre **************************/
article#intro { padding: 65px 0; }
article#intro #imagem { float: left; }

article#intro #texto {
	float: right;
	line-height: 30px;
	width: 640px;
}

article#intro #texto p { margin: 15px 0; }

#topicos section.topico {
	float: left;
	margin: 0 21px;
	width: 350px;
}

#topicos section.topico h3 {
	color: #23B04D;
	display: block;
	font-size: 18px;
	font-weight: 700;
	height: 32px;
	line-height: 32px;
	text-transform: uppercase;
	padding-left: 60px;
}

#topicos section.topico h3#missao { background: url(../img/missao.png) left center no-repeat; }
#topicos section.topico h3#visao { background: url(../img/visao.png) left center no-repeat; }
#topicos section.topico h3#valores { background: url(../img/valores.png) left center no-repeat; }

#topicos section.topico p { margin-top: 30px; }

#imagens {
	display: flex;
    gap: 20px;
	margin-top: 75px;
}

#imagens .imagem {
	background-size: cover !important;
	float: left;
	height: 300px;
	width: 25%;
}

#imagens #emp1 { background: url(../img/01.JPG) center no-repeat; }
#imagens #emp2 { background: url(../img/02.JPG) center no-repeat; }
#imagens #emp3 { background: url(../img/03.JPG) center no-repeat; }
#imagens #emp4 { background: url(../img/04.JPG) center no-repeat; }
/*************************** Sobre **************************/

/************************* Serviços *************************/
#servicos-interna {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 60px 0 80px; 
}

#servicos-interna .esquerda { float: left; }

#servicos-interna .direita {
	float: right;
	text-align: right;
}

#servicos-interna section.servico {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	font-size: 16px;
	height: 370px;
	padding: 30px;
}

#servicos-interna section.servico .img {
	background-size: cover !important;
			filter: grayscale(100%) brightness(80%);
	-webkit-filter: grayscale(100%) brightness(80%);
	transition: all 0.5s ease;

	height: 300px;
	width: 295px;
}

#servicos-interna section.servico .img:hover {
	filter: none;
}

#servicos-interna section.servico .texto { 
	width: 745px;
	padding: 40px;
}

#servicos-interna section.servico .texto h2 {
	color: #23B04D;
	font-size: 21px;
	font-weight: 700;
	margin: 35px 0;
}

#servicos-interna section.servico .texto p { line-height: 23px; }

#servicos-interna section.servico #i1 { background: url(../img/bg1.jpg) center no-repeat; }
#servicos-interna section.servico #i2 { background: url(../img/bg2.jpg) center no-repeat; }
#servicos-interna section.servico #i3 { background: url(../img/bg3.jpg) center no-repeat; }
#servicos-interna section.servico #i4 { background: url(../img/bg4.jpg) center no-repeat; }
#servicos-interna section.servico #i5 { background: url(../img/bg5.jpg) center no-repeat; }
/************************* Serviços *************************/

/************************** Cases ***************************/
p#intro-cases {
	display: block;
	line-height: 30px;
	padding: 80px 0;
}

#cases .case {
	background: #f6f4f4;
	border-radius: 10px;
	box-sizing: border-box;
	float: left;
	margin: 0 21px 42px;
	height: 320px;
	width: 350px;
}

#cases .case .img {
	background: url(../img/img-ex.jpg);
	background-size: cover;
	border-radius: 10px 10px 0 0;
	height: 165px;
}

#cases .case .img .plus {
	background: #3b84f6;
	border-radius: 60px;
	color: #fff;
	font-size: 30px;
	height: 55px;
	line-height: 50px;
	text-align: center;
	float: right;
	margin: 135px 19px 0 0;
	width: 55px;
}

#cases .case .img .plus:hover { background: #000; }

#cases .case h2 {
	font-size: 17px;
	font-weight: 700;
	padding: 30px 0 0 19px;
}

#cases .case h3 {
	color: #23B04D;
	font-size: 12px;
	font-weight: 700;
	padding-left: 19px;
	text-transform: uppercase;
}

#cases .case p {
	font-size: 13px;
	padding: 10px 19px 0 19px;
}
/************************** Cases ***************************/

/*************************** Case ***************************/
article#case-cliente { padding: 80px 0; }

article#case-cliente #imagens-case {
	float: left;
	width: 365px;
}

article#case-cliente #imagens-case #img-principal{
    max-width: 366px;
    max-height: 244px;
}

article#case-cliente #imagens-case #img-cliente{
    max-width: 175px;
}

article#case-cliente #imagens-case h6 {
	display: block;
	font-weight: 700;
	margin-top: 40px;
	text-transform: uppercase;
	width: 100%;
}

article#case-cliente #texto {
	float: right;
	line-height: 30px;
	width: 755px;
}

article#case-cliente #texto p { margin: 10px 0; }

#galeria .foto {
	background-size: cover;
	background-position: center;
	float: left;
	height: 250px;
	width: 25%;
}
/*************************** Case ***************************/

/************************* Contato **************************/
#pagina-contato { padding: 70px 0; }

#pagina-contato form#envia-contato {
	float: left;
	width: 500px;
}

#pagina-contato form#envia-contato label {
	display: block;
	font-weight: 700;
	width: 500px;
}

#pagina-contato form#envia-contato input[type="text"],
#pagina-contato form#envia-contato input[type="email"],
#pagina-contato form#envia-contato textarea {
	border: 1px solid #ccc;
	box-sizing: border-box;
	color: #000;
	font-family: 'Titillium Web', sans-serif;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	margin-bottom: 15px;
	padding-left: 15px;
	width: 500px;
}

#pagina-contato form#envia-contato textarea {
	height: 140px;
	resize: none;
}

#pagina-contato form#envia-contato input[type="submit"] {
	background: #23B04D;
	border: 2px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	color: #fff;
	float: right;
	font-family: 'Titillium Web', sans-serif;
	font-size: 15px;
	font-weight: 700;
	margin: 0 auto;
	height: 40px;
	text-align: center;
	text-transform: uppercase;
	width: 110px;
}

#pagina-contato form#envia-contato input[type="submit"]:hover {
	background: #fff;
	border: 2px solid #23B04D;
	color: #23B04D;
}

#contatos {
	text-align: right;
	float: right;
	width: 500px;
}

#contatos a{
	color: #000;
	transition: all 0.2s ease;
}

#contatos a:hover{
	color: #23B04D;
	font-weight: 500;
}

iframe { 
	height: 400px;
	width: 100%;
}
/************************* Contato **************************/

/* Seção de serviços */

#nossos-servicos {
	height: 326px;
	margin-top: 57px;
	margin-bottom: 57px;
	overflow: hidden;
	position: relative;
}

#nossos-servicos .image {
	bottom: 0;
	height: 100%;
	position: absolute;
	right: 0;
	width: 58%;
}

#nossos-servicos .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 36%;
}

#nossos-servicos .content .title {
	color: #23B04D;
	font-weight: 700;
	font-size: 40px;
    margin-top: 30px;
	padding-bottom: 25px;
	position: relative;
    width: fit-content;
}

#nossos-servicos .content .title:after {
	background: linear-gradient(90deg,#23B04D 1.53%,rgba(35,176,77,0) 97.49%);
    bottom: 0;
	content: "";
	height: 4px;
    left: 0;
	margin-bottom: 15px;
	position: absolute;
	width: 100%;
}

#nossos-servicos .content .text {
	color: #6D6D6D;
	font-size: 15px;
	font-weight: 600;
	line-height: 23px;
}

#nossos-servicos .content #botao-padrao {
	padding: 14px 31px 14px 29px;
}

#nossos-servicos .content .iconify {
	font-size: 18px;
}

.pg-servico header#titulo h1 {
	color: black;
}

.pg-servico header#titulo {
	padding: 71px 0;
}

.pg-servico header#titulo .conteudo {
    align-items: center;
	display: flex;
    justify-content: center;
    gap: 20px;
	position: relative;
}

.pg-servico .back-button {
	align-items: center;
	color: #23B04D;
	display: flex;
	font-size: 18px;
	font-weight: 600;
    left: 0;
	line-height: 27px;
	gap: 10px;
	position: absolute;
    top: -51px;
}

.pg-servico .back-button:hover {
    color: #1b5c2e;
}

.pg-servico .back-button .iconify {
	font-size: 18px;
}

.pg-servico .services-detail .content {
	display: flex;
	gap: 60px;
	padding-top: 60px;
}

.pg-servico .services-detail .content .text {
	color: black;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding: 20px 0;
	width: 60%;
}

.pg-servico .services-detail .content img {
	border-radius: 10px;
	height: 610px;
	object-fit: cover;
	width: 40%;
}

.pg-servico .service-video {
	background: #23B04D;
	margin-top: 60px;
	margin-bottom: 300px;
	padding: 100px 0;
}

.pg-servico .service-video .conteudo {
	margin-top: -300px;
}

.pg-servico .service-video .conteudo .banner-item {
	display: block;
    height: 500px;
    position: relative;
	top: 300px;
	width: 100%;
}

.pg-servico .service-video .conteudo .banner-item:hover .icon {
	opacity: 1;
}

.pg-servico .service-video .conteudo .banner-item img {
	border-radius: 10px;
	height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.pg-servico .service-video .conteudo .banner-item .bg-gradient {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
	border-radius: 10px;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
    width: 100%;

	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.pg-servico .service-video .conteudo .banner-item .icon {
	align-items: center;
    background: black;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    height: 80px;
    opacity: 0.5;
    position: absolute;
    width: 80px;

	left: 50%;
	top: 50%;

	transform: translate(-50%, -50%);

	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.pg-servico .service-video .conteudo .banner-item .iconify {
	color: white;
	font-size: 30px;
	margin-left: 5px;
}

#gallery-section .gallery-swiper {
	height: 400px;
}

#gallery-section .gallery-swiper .gallery-image {
	display: block;
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

#gallery-section .gallery-swiper .gallery-image img {
	bottom: 0;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;

	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

#gallery-section .gallery-swiper .gallery-image:hover img {
	height: 103%;
	max-height: 103%;
	max-width: 103%;
	width: 103%;
}

#clientes #botao-padrao {
	margin: 0 auto;
	padding: 14px 31px 14px 29px;
}

.gallery-employer {
	margin-top: 75px;
}

#google_translate_element {
	display: none;
}

header#navbar .nav-default .nav-links .flag {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 5px;
	height: 22px;
	margin-top: 10px;
}