@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

a {
	text-decoration: none;
}

::-webkit-scrollbar {
	width: 6px;
	background: transparent;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: #EFBA53;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: #0796FF;
}

* {
	padding: 0;
	margin: 0;
	font-family: "Inter";
}

.body {
	overflow-x: hidden;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 100%;
	min-height: 100vh;

	background: linear-gradient(113deg, #071B34 0%, rgba(7, 150, 255, 0.65) 47%, #071B34 100%);
	background-size: 100%;
	overflow-x: hidden;
	background-position: center;
	background-repeat: no-repeat;
}

.logo {
	width: 170px;
	margin: 32px auto;
}

.texto-principal {
	color: #FFF;
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;

	display: block;
	width: 75%;
	padding: 15px 30px;
	gap: 10px;
	border-radius: 10px;
	border: 4px solid #EFBA53;
	margin: 36px 0;
	margin-bottom: 10px;
}

.texto-principal>b {
	color: #EFBA53;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
}

.texto-secundario {
	display: block;
	color: #FFF;
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	width: 75%;
	margin: 36px 0;
	margin-top: 10px;
}

.video-box {
	position: relative;
	display: flex;
	width: 90%;
	margin: 38px 0;
	margin-bottom: 60px;
}

.video-box video {
	width: 100%;
	height: 300px;
	border-radius: 8px;
}

.video-box .first-play {
	position: absolute;
	width: 100%;
	height: 100%;
	background: black;
	flex: 1;
	z-index: 1;

	display: flex;
	justify-content: center;
	align-items: center;
}

.video-box .first-play .play-button {
	width: 155px;
	height: 100px;
	background-color: #0796FF;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.button {
	color: #071B34;
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-decoration: none;
	text-transform: uppercase;

	/*display: none;*/
	padding: 15px 20px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	background: #EFBA53;
}

footer {
	width: calc(100% + 20px);
	margin-top: auto;
	margin-bottom: -10px;
	display: flex;
	gap: 20px;
	padding: 20px 0px 20px 0px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	background: rgba(7, 27, 52, 0.50);
}

.designed-by {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 10px;
}

.designed-by p {
	color: #FFF;
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	line-height: 16px;
	height: fit-content;
}

.designed-by img {
	width: 104px;
	height: 33px;
}

.texto-copyright {
	color: #FFF;
	text-align: center;
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
}

.texto-copyright span {
	display: none;
}

@media only screen and (min-width:900px) {

	.container,
	body {
		overflow-x: hidden;
	}

	.logo {
		width: 250px;
		margin-top: 36px;
		margin-bottom: 0;
	}

	.texto-principal {
		width: 850px;
		margin: 20px;
	}

	.texto-secundario {
		width: 800px;
		margin: 20px;
	}

	.video-box {
		width: 600px;
		margin-top: 15px;
	}


	footer {
		flex-direction: row;
		align-items: center;
		position: relative;
		bottom: 0;
	}

	.designed-by {
		width: fit-content;
		justify-content: center;
		align-items: center;
	}

	.separator {
		width: 13px;
		height: 2px;
		background-color: white;
		border-radius: 2px;
		overflow: hidden;
	}

	.texto-copyright {
		display: flex;
	}

	.texto-copyright br {
		display: none;
	}

	.texto-copyright span {
		display: flex;
	}


}