* {
	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: #333333;
	background-color: #000;
	background-image: url(../../img/mapa_dark.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover
}

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

.site {
	display: grid;
	grid-template-columns: minmax(200px, 1200px);
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 100vh
}

.site>.conteudo {
	position: relative;
	height: 100vh;
	display: grid;
	align-content: center
}

.lista-empresas {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px
}

@media screen and (max-width:700px) {
	.site {
		padding: 40px
	}

	.site>.conteudo {
		height: auto;
		align-content: flex-start
	}

	.lista-empresas {
		grid-template-columns: 1fr
	}
}

.bloco-empresa {
	width: 100%;
	height: 250px;
	padding: 20px;
	cursor: pointer;
	border: .35rem solid
}

.bloco-empresa:hover {
	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
}

.bloco-empresa .logomarca {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain
}

.bloco-empresa .logomarca.representacoes {
	background-image: url(../../img/logo_representacoes_v.png)
}

.bloco-empresa .logomarca.transportes {
	background-image: url(../../img/logo_transportes_v.png)
}

.bloco-empresa .logomarca.clean {
	background-image: url(../../img/logo_clean_v.png)
}

.bloco-empresa .logomarca.arka {
	background-image: url(../../img/logo_arka_v.png)
}

@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)
}

.site-desenvolvimento {
	color: #FFF;
	padding-bottom: 100px;
	border-top: 1px solid #CCC
}

.site-desenvolvimento>div {
	display: grid;
	grid-template-columns: 1fr justify-content:space-around;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 30px;
	padding: 30px 30px;
	font-size: small;
	text-align: center
}