@charset "UTF-8";
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
}

nav {
	border-bottom: 1px solid #ddd;
}

a {
	outline: none;
	text-decoration: none;
	color: #262626;
}

h1, h2, h3, h4, h5, h6, p {
	margin-block-end: 5px;
	margin-block-start: 5px;
}

img {
	border-radius: 8px;
}
iframe {
	border-radius: 8px;
}

header {
	padding: 0 !important;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin-bottom: 20px;
	z-index: 999;
}

.bg-white {
	background-color: #FFF;
	padding: 40px 0;
}
.bg-light {
	background-color: #F9FAFA;
	padding: 40px 0;
}
.bg-dark {
	background-color: #25282D;
	padding: 40px 0;
	color: #FFF;
}
.bg-dark p {
	color: #ddd;
}
.bg-accent {
	background-color: #29A1FF;
	padding: 40px 0;
	color: #FFF;
}

.container {
	display: flex;
	flex-wrap: wrap;
	margin: auto;
	max-width: 1000px;
	padding: 0 2%;
	justify-content: space-between;
}
.column {
	flex-direction: column;
}

.left {
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: center;
	padding-right: 10px;
}

.right {
	flex: 1;
	padding-left: 10px;
}

.mt-2 {
	margin-top: 20px;
}
.top {
	margin-top: 70px;
}

.header {
	z-index: 999;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 5px 0;
	flex-wrap: wrap;
	align-items: center;
}
.logo {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.logo img {
	width: 50px;
	height: 50px;
	margin-right: 10px;
}
.logo h2 {
	font-weight: bold;
	font-size: 18px;
	color: #262626;
}
.header .menus {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}
.header .menus ul {
	padding-inline: 0;
	display: flex;
	list-style-type: none;
}
.header .menus ul li a {
	padding: 10px 10px;
	border-radius: 8px;
	transition: all ease .2s;
}

.header .menus ul li a:hover {
	color: #555;
	background-color: #f3f3f3;
}

.emphasis {
	text-transform: uppercase;
	color: #29A1FF;
	font-size: 12px;
	line-height: 5px;
}
.hero h3 {
	font-size: 28px;
}
.hero h5 {
	font-size: 16px;
	color: #555;
	font-weight: normal;
}
.primary-button a{
	display: inline-block;
	background-color: #29A1FF;
	padding: 10px 15px;
	border-radius: 8px;
	margin-top: 15px;
	color: #FFF;
	font-weight: bold;
}
.primary-button a:hover {
	background-color: #1d96f3
}

.secondary a{
	background-color: #FFF;
	color: #29a1ff;
}
.secondary a:hover {
	background-color: #f8f8f8;
}

.hero img {
	width: 100%;
}

.work {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.work h3 {
	font-size: 20px;
}
.work  p {
	font-size: 14px;
	color: #555;
}

.video {
	display: flex;
	width: 100%;
	height: auto;
	align-items: center;
	justify-content: center;
}
.video-area{
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; 
	height: 0;
	max-width: 100%;
}
.video-area iframe{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
}


.about {
	display: flex;
	align-items: center;
}

.about h3 {
	font-size: 20px;
}
.about p {
	font-size: 14px;
	font-weight: normal;
	line-height: 18px;
}

.about img {
	width: 100%;
}

.collection {
	width: 100%;
}
.collection h3 {
	font-size: 20px;
	margin-bottom: 10px;
}
.collection .cards {
	display: flex;
	width: 100%;
	justify-content: space-between;
	flex-wrap: wrap;
}
.collection a {
	width: 22%;
}
.card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.card img {
	width: 100%;
	transition: all ease .2s;
}
.collection a:hover img {
	transform: scale(1.1);
}

.price {
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.price h3 {
	font-size: 20px;
}
.price h1 {
	font-size: 48px;
}
.price .price-item {
	width: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.list{
	background-color: #FFF;
	padding: 8px;
	border-radius: 8px;
	border: 1px solid #eee;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.list-item {
	border-bottom: 1px solid #eee;
}
.list-item h3 {
	font-size: 16px;
	color: #262626;
}
.list-item p {
	font-size: 14px;
	color: #555;
}

.bg-dark a {
	color: #ddd;
}
.rp-item .logo h2 {
	color: #FFF;
	font-size: 18px;
}
.rp-item a:hover {
	text-decoration: underline;
}
.rp-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.rp-item .logo {
	margin-bottom: 10px;
}

@media (max-width: 768px) {
	.container {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.left {
		margin-bottom: 20px;
		padding-right: 0;
		width: 100%;
		align-items: flex-start;
	}
	.right {
		display: flex;
		padding-left: 0;
		width: 100%;
		align-items: center;
		justify-content: center;
	}

	.header {
		flex-direction: column;
	}
	.header .menus {
		justify-content: center;
		align-items: center;
	}
	.header .menus ul li a {
		font-size: 12px;
		padding: 5px 5px;
	}

	.work .right {
		flex-direction: column;
		align-items: flex-start;
	}

	.cards a {
		width: 45%;
	}
	.card {
		margin-bottom: 5px;
		margin-top: 5px;
	}

	.rp-item {
		align-items: center;
		justify-content: center;
		padding-bottom: 10px;
		margin-bottom: 20px;
		border-bottom: 1px solid #555;
	}
}


/*--------------Documentação--------------*/

.parametro {
	margin: 10px 0;
}
.parametro p {
	font-weight: bold;
}