* {
	box-sizing: border-box
}

img,
picture,
video,
embed {
	max-width: 100%;
	border: 0
}

a {
	text-decoration: none;
	cursor: pointer;
	color: inherit;
	display: contents
}

::-webkit-scrollbar {
	width: 5px
}

::-webkit-scrollbar-track {
	background: #D5D5D5
}

::-webkit-scrollbar-thumb {
	background: #888
}

::-webkit-scrollbar-thumb:hover {
	background: #555
}

@media only screen and (max-width:600px) {
	::-webkit-scrollbar {
		width: 2px
	}
}

* {
	box-sizing: border-box
}

@property --angle {
	syntax: '<angle>';
	initial-value: 90deg;
	inherits: true
}

@property --gradX {
	syntax: '<percentage>';
	initial-value: 50%;
	inherits: true
}

@property --gradY {
	syntax: '<percentage>';
	initial-value: 0;
	inherits: true
}

html,
body {
	min-height: 100%
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100%;
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	position: relative;
	color: #FFF;
	background-color: #000;
}

@media screen and (max-width:700px) {
	body {
		background-position: top left -390px;
		background-size: 1900px;
		font-size: 18px;
	}
}

.site {
	position: relative;
}

.site > div {
	position: relative;
}

.site > .corpo {
	display: grid;
	grid-template-columns: minmax(200px, 1100px);
	align-items: center;
	justify-content: center;
}





.site > .barra-topo {
	background-color: #333;
	padding: 10px 20px;
}

.site > .barra-topo > .conteudo {
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.site > .barra-topo > .conteudo > div:first-child img {
	height: 30px;
}

.sociais {
	display: flex;
    justify-content: flex-start;
	gap: 10px;
}


.texto {
	font-size: 1rem;
	text-align: justify;
}

.texto.center {
	text-align: center;
}














.site > .cabecalho {
	padding: 20px;
	height: 450px;
	position: relative;
}

.site > .cabecalho::before {
	content: '';
    background-image: url(../../img/bg-cabecalho.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
	animation-name: cabecalho-bg-animation;
	animation-duration: 6s;
	animation-fill-mode: both;
	animation-iteration-count: infinite;
	/* animation-delay: 2s; */
}

.site > .cabecalho::after {
	content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
	opacity: .5;
	background-color: #00A;
	background: linear-gradient(-45deg, #000, #00C, #000, #00A);
	background-size: 400% 400%;
	animation: cabecalho-lente-animation 10s ease infinite;
}

@keyframes cabecalho-lente-animation {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes cabecalho-bg-animation {
	0% {background-position: 0% 60%;}
	25% {background-position: 0% 40%;}
	50% {background-position: 0% 50%;}
	75% {background-position: 0% 40%;}
	100% {background-position: 0% 60%;}
}

@keyframes cabecalho-bg-animation-mobile {
	50% {background-position: 80% 0%;}
	100% {background-position: 70% 0%;}
}

.site > .cabecalho > .conteudo > img {
	-webkit-filter: drop-shadow(5px 5px 5px #222);
	filter: drop-shadow(5px 5px 5px #222);
}

@media only screen and (max-width:700px) {

	.site > .cabecalho::before {
		animation-name: cabecalho-bg-animation-mobile;
		animation-iteration-count: 1;
	}

	.site > .cabecalho > .conteudo {
		text-align: center;
	}
	
}











.site > .conteudo {
	padding: 20px;
}






.site > .desenvolvimento {
	color: #FFF;
	padding-bottom: 100px;
	margin-top: 50px;
}

.site > .desenvolvimento > div {
	display: grid;
	grid-template-columns: 1fr;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 30px;
	padding: 30px 30px;
	font-size: small;
	text-align: center;
	border-top: 1px solid #CCC;
}





h1 {
	font-size: x-large;
	padding: 0;
	margin: 20px 0;
}

h1.center {
	text-align: center;
}

h1.titulo {
	color: #F00;
	position: relative;
	margin: 20px 0 40px 0;
	display: flex;
}

h1.titulo.center {
	justify-content: center;
}

h1.titulo > div:first-child {
	position: relative;
}

h1.titulo > div:first-child > span {
	color: #FFF;
	font-weight: normal;
	padding-right: 5px;
}

h1.titulo > div:first-child::before {
	content: '';
	position: absolute;
	bottom: -10px;
	width: 60%;
	height: 2px;
	background-color: #F00;
	left: 0;
}

h1.titulo.center > div:first-child::before {
	transform: translateX(-50%);
	left: 50%
}

h1.titulo.center > div:first-child::after {
	width: 54px;
	transform: translateX(-50%);
	left: 50%
}

h1.titulo > div > div {
	font-size: .7em;
	font-weight: normal;
	color: #CCC
}


.no-margin-top {
    margin-top: 0!important
}

.no-margin-bottom {
    margin-bottom: 0!important
}



.bloco-quem-somos {
	display: grid;
	grid-template-columns: 350px 1fr;
	align-items: flex-start;
	gap: 20px;
}

@media only screen and (max-width:700px) {

	.bloco-quem-somos {
		grid-template-columns: 1fr;
	}
	
}


.lista-servicos {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

@media only screen and (max-width:700px) {

	.lista-servicos {
		grid-template-columns: 1fr;
	}
	
}

.servico {
    display: grid;
    grid-template-rows: 200px 1fr auto;
	padding: 20px;
	border: 1px solid #333;
    align-items: center;
}

.servico:hover {
	padding: 16px;
	border: 5px solid #333;
	border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) .1turn, var(--c1) .15turn, var(--c2) .25turn) 30;
	animation: borderRotate var(--d) linear infinite forwards
}





@keyframes borderRotate {
	100% {
		--angle: 420deg
	}
}

@keyframes borderRadial {
	20% {
		--gradX: 100%;
		--gradY: 50%
	}

	40% {
		--gradX: 100%;
		--gradY: 100%
	}

	60% {
		--gradX: 50%;
		--gradY: 100%
	}

	80% {
		--gradX: 0;
		--gradY: 50%
	}

	100% {
		--gradX: 50%;
		--gradY: 0
	}
}

:root {
	--d: 2500ms;
	--angle: 90deg;
	--gradX: 100%;
	--gradY: 50%;
	--c1: rgba(168, 239, 255, 1);
	--c2: rgba(168, 239, 255, .1)
}



.servico > .imagem {
    width: 100%;
    height: 200px;
    background-color: #FFF;
    position: relative;
    overflow: hidden
}

.servico > .imagem > .foto {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #FFF;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    transition: all .5s
}

.servico:hover > .imagem > .foto {
    transform: scale(1.2)
}

.servico > .titulo {
	padding: 10px 0;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
}

.servico > .texto {
	padding: 10px 0;
	text-align: center;
}







.site > .rodape {
	padding: 10px 20px;
}

.site > .rodape > .conteudo {
	display: flex;
    justify-content: space-around;
    align-items: center;
    align-items: flex-start;
	flex-wrap: wrap;
}


@media only screen and (max-width:700px) {

	.site > .rodape > .conteudo {
		justify-content: flex-start;
	}
	
}


.lista-telefones {
	display: grid;
	grid-gap: 10px;
}
.telefone > div {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	gap: 10px;
}
.telefone > div:first-child > div:first-child > i {
	font-size: larger;
}
.telefone .nome {
	font-size: small;
}
.telefone .numero {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	gap: 5px;
	font-size: larger;
}
.telefone .numero span {
	font-size: small;
	font-weight: normal;
}
.telefone .botoes {
	font-size: small;
	font-weight: normal;
	gap: 5px;
}