*, *:before, *:after {
	box-sizing: inherit;
}

* {
	scroll-behavior: inherit !important;
}

html, body {
	font-family: var(--font-family);
	font-size: var(--font-size);
	color: var(--font-color);
	height: auto;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	box-sizing: border-box;
}

body {
	font-weight: 400;
	line-height: 1.8;
	background: var(--body);
}

a {
	display: inline-flex;
	color: var(--link-color);
	cursor: default;
}

a, a:active, a:focus, a:hover {
	outline: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

a[href]:hover, a[onClick]:hover {
	cursor: pointer;
}

ul {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--font-color);
	margin: 0;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	line-height: 1.2;
	word-break: break-word;
	overflow-wrap: break-word;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }
h5 { font-size: var(--h5); }
h6 { font-size: var(--h6); }

p {
	margin: 0;
}

.img, img {
	max-width: 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	height: auto;
}

img, svg {
	vertical-align: middle;
}

label {
	cursor: pointer;
	font-weight: 400;
	background: var(--body);
	color: var(--font-color);
}

*::-moz-selection {
	background: #d6b161;
	color: #fff;
	text-shadow: none;
}

::-moz-selection {
	background: #555;
	color: #fff;
	text-shadow: none;
}

::selection {
	background: #555;
	color: #fff;
	text-shadow: none;
}

*::-moz-placeholder {
	color: #999;
	font-size: var(--font-size);
	opacity: 1;
}

*::placeholder {
	color: #999;
	font-size: var(--font-size);
	opacity: 1;
}

/* largura e altura da barra */
*::-webkit-scrollbar {
	width: 1rem;
	height: 1rem;
}

/* fundo do trilho */
*::-webkit-scrollbar-track {
	background: transparent;
}

/* "polegar" (a parte que se move) */
*::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,.3);
	border-radius: .25rem;
}

/* efeito ao passar o mouse */
*::-webkit-scrollbar-thumb:hover {
	background: #999;
}





