/*
    Código desenvolvido por: https://github.com/rafaelnct
    Gerente da Rihz 
*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: none;
}

*,
html,
body {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
}

html {
	display: block;
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
	font-size: 86%;
}

body {
	background-color: #000;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	margin: 0 auto;
	padding: 0;
}

img {
	width: 100%;
	margin: 0 auto;
}

.txt01,
.txt02,
.txt03 {
	display: grid;
	align-content: space-between;
}

p,
a,
img,
div {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

@font-face {
	font-family: popLght;
	src: url(../fonts/Poppins-Light.ttf);
}
@font-face {
	font-family: popMdim;
	src: url(../fonts/Poppins-Medium.ttf);
}

body {
	-webkit-font-smoothing: antialiased;
	font-family: popLght;
}

/*--------------------------------------------------------------------*/

header {
	grid-area: hd;
}

main {
	grid-area: mn;
}

footer {
	grid-area: ft;
}

h1 {
	font-size: 1.4em;
	line-height: 1rem;
	font-family: popLght;
}
h2 {
	font-size: 4em;
	line-height: 5rem;
	font-family: popMdim;
}

p {
	font-family: popLght;
	font-size: 1rem;
}

.engloba-resize {
	position: relative;
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	margin: auto;
	width: 1920px;
	height: 1080px;
}

.resize {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr auto;
	grid-template-areas:
		'hd'
		'mn'
		'ft';
	position: absolute;
	width: 1920px;
	height: 1080px;
	transform-origin: center center;
}

header {
	background: #2b6f74;
	display: none;
	width: 100%;
	height: 3rem;
}

.header-container {
	margin: 0 auto;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 3rem;
}

.logo {
	background: #76c2c7;
	height: 1.25rem;
	width: 5rem;
}

main {
	display: block;
	width: 100%;
	height: 100%;
}

.main-container {
	margin: 0 auto;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 3rem 3rem 2.1rem;
}

.main-container-content {
	margin: 0 auto;
	height: 100%;
	display: grid;
	padding-top: 2.2rem;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0 3.1rem;
}

footer {
	background: #2b6f74;
	display: none;
	width: 100%;
	height: 1rem;
}
