/* CSS */
:root {
	--color: #DB1924;
	--color-2: #a60f18;
	--color-3: #8c060e;
	--color-4: #222222;
}

body {
	background: #fff;
	color: #444;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	line-height: 1.7857em;
	box-sizing: content-box;
}

a {
	text-decoration: none;
	color: #333;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: "Open Sans", Arial, Tahoma, sans-serif;
	font-weight: 600;
}

.vert-center {
	justify-content: center;
	align-items: center;
}

.vert-bottom {
	justify-content: bottom;
	align-items: bottom;
}

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

.w-90 {
	width: 90%;
}

.color {
	color: var(--color);
}

.bg-color {
	background: linear-gradient(var(--color), var(--color-2));
	color: #fff;
}

.btn-color {
	background-color: var(--color);
	color: #fff;
}

.btn-color:hover {
	background-color: var(--color-3);
	color: #fff;
}

.area-titulo {
	text-align: center;
	padding-bottom: 1em;
}

.area-btn {
	text-align: center;
	padding: 1em 0;
}

.anima {
	animation-name: anima;
	animation-duration: .7s;
	animation-timing-function: linear;
}

@keyframes anima {
	0% { opacity: 0.1; }
	100% { opacity: 1; }
}

#btn-flutuante-wpp {
	position: fixed;
	bottom: .5em;
	right: .5em;
	z-index: 9999;
}
#btn-flutuante-wpp svg {
	width: 3.7em;
}
#btn-flutuante-wpp svg #background {
	fill: #29a71a;
}

.nav-site {
	background-color: var(--color-4);
	padding: .3em 0;
	color: #fff;
	font-size: .87em;
	text-align: right;
}
.nav-site a {
	color: #eee;
	padding: .2em .7em;
}
.nav-site a:hover {
	color: #fff;
}

.header-site {
	padding: .3em 0;
	border-bottom: 2px solid var(--color-2);
}
.header-site a {
	margin: 0 .4em;
	font-weight: 500;
	color: var(--color-4);
	border-bottom: 2px solid transparent;
}
.header-site .nav-item a:hover {
	color: var(--color);
	border-bottom: 2px solid var(--color);
}
/*
.header-site li.active,
.header-site li:hover::after {
	content: "";
	background: none !important;
    border-color: transparent transparent #DB1924 transparent;
    border-style: solid;
    border-width: 0 7px 7px;
    display: block;
	margin-bottom: -1em;
	margin-left: 45%;
    bottom: 0;
    width: 0;
}
*/
.header-site img {
	height: 2.1em;
}

section {
	width: 100%;
	padding: 3em 0 4em 0;
}
section img {
	width: 80%;
	margin: 0 auto;
}

.titulo-pag {
	background: linear-gradient(var(--color), var(--color-2));
	color: #fff;
	padding: 1.3em 0;
	text-align: center;
}

.categories {
	text-align: center;
	transition: all .3s ease;
	margin-bottom: 2em;
}

.produto {
	position: relative;
	text-align: center;
	transition: all .3s ease;
}

.produto img {
	width: 100%;
	height: auto;
	display: block;
	border-bottom: .5em solid #eee;
	margin-bottom: 1em;
}

.produto:hover img {
	border-bottom: .5em solid var(--color);
	margin-bottom: 1em;
}

.produto .cta-produto {
	width: 100%;
	background-color: #eee;
	color: #333;
	padding: .3em 1em;
	margin-bottom: 1em;
	font-size: .9em;
}

.produto:hover .cta-produto {
	background-color: var(--color-2);
	color: #fff;
}

.produto h6 {
	color: var(--color-4);
	font-weight: 600;
}

.produto:hover h6 {
	color: var(--color);
}

.servico {
	margin: 1em 0 1.5em 0;
	padding: 1em;
	border: 1px solid #eee;
}

.footer-site {
	border-top: 1px solid #ddd;
	width: 100%;
	padding: 4em 0 1em 0;
	font-size: .9em;
	background-color: var(--color-4);
	background-image: url('../img/bg-ind-2.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: #fff;
}

.footer-site a {
	color: #fff;
}

.footer-site .logo-footer {
	width: 70%;
	max-width: 11em;
	margin-bottom: 1em;
}

.footer-site .copyright {
	text-align: center;
	padding: 2em 0;
}