@import url("https://fonts.cdnfonts.com/css/petrov-sans-trial");

:root {
	--font-family: "Trebuchet MS", sans-serif;
	--color-white: #ffffff;
	--color-text: #f8f7f7;
	--color-background: #000614;
}

* {
	margin: 0;
	border: 0;
	padding: 0;
	box-sizing: border-box;
}
body,
html {
	margin: 0;
	padding: 0;
	background: #000000;
	color: var(--color-text);
	word-wrap: normal;
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-family: var(--font-family);
}

header {
	background-color: #000000;
}

img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}
img.logotipo {
	width: 600px;
}
img.logotipoAnglo {
	width: 100px;
	max-width: 100%;
}
.topo-imagem img {
	width: auto;
	max-height: 800px;
}

.logotipos {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: left;
	padding: 20px 10% 0;
}

.topo {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}
.titulo {
	width: 50%;
	margin: 50px auto 100px;
	img {
		display: block;
	}
}
.topo-imagem {
	width: 40%;
	text-align: left;
	max-height: 700px;
}
.content {
	padding: 0 10% 10%;
	text-align: center;
}
p {
	text-align: center;
	font-size: large;
}

footer {
	color: white;
	padding: 2% 10%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	gap: 20px;
}
footer i {
	color: #ffffff;
	font-size: x-large;
	margin: 0px 5px;
}
footer a,
footer a:hover {
	color: #ffffff;
	text-decoration: underline;
}
a {
	text-decoration: none;
}
.footer-box {
	width: 40%;
	text-align: center;
	margin: 2% 0 4%;

	img {
		height: 130px;
		width: 100px;
		object-fit: contain;
	}
}

.btn-inscricao {
	background: #ffc000;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	color: #000000;
	z-index: 9;
}
.btn-inscricao:hover {
	background: #09213a;
	color: var(--color-white);
}
.btn-inscricao::after {
	content: "Inscreva-se";
	padding-left: 0.5rem;
}

.mob {
	display: none;
}
.desk {
	display: block;
}

@media screen and (max-width: 767.98px) {
	.content {
		padding: 0 5% 10%;
	}
	.titulo {
		width: fit-content;
		display: block;
		margin: 10px auto 50px;
		padding: 30px;
	}
	img.logotipoAnglo {
		height: 100px;
	}
	.mob {
		display: block;
	}
	.desk {
		display: none;
	}
	.topo-imagem {
		width: 100%;
		text-align: left;
		img {
			max-width: 70%;
		}
	}
}
@media screen and (max-width: 575.98px) {
	.footer-box {
		width: 100%;
	}
	.btn-inscricao {
		padding: 0.5rem 1rem;
		bottom: 2rem;
		right: 2rem;
		width: auto;
		font-size: larger;
		text-align: center;
	}
	.btn-inscricao::after {
		content: none;
		padding-left: 0;
	}
}

h1 {
	font-size: xx-large;
	color: #ffc000;
	margin-bottom: 0.5rem;
}
span {
	text-transform: uppercase;
}
.informacoes {
	div {
		margin: 2rem auto;
		font-size: large;
	}
	ul {
		list-style: none;
		text-align: left;
		margin: 1rem auto 3rem;
		width: 60%;
	}
	li {
		padding: 10px;
	}
}
@media screen and (max-width: 575.98px) {
	.informacoes {
		ul {
			width: 90%;
		}
	}
}
