@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: var(--color-background);
	color: var(--color-text);
	word-wrap: normal;
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-family: var(--font-family);
}

header {
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 6, 20, 1) 100%), url("../img/img-background.webp");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
}

img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}
.titulo img {
	display: block;
	padding: 1rem;
}
img.logotipo {
	width: 600px;
}
img.logotipoAnglo {
	width: 100px;
	max-width: 100%;
}
img.texto {
	width: 450px;
	margin: auto;
}
.topo-imagem img {
	width: auto;
	max-height: 800px;
}

.logotipos {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 20px 10%;
	gap: 30px;
}

.topo {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}
.titulo {
	width: fit-content;
	margin: 50px auto 100px;
}
.topo-imagem {
	width: 50%;
	text-align: right;
	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: 20%;
	text-align: center;
	margin: 2% 0 4%;

	img {
		height: 130px;
		width: 100px;
		object-fit: contain;
	}
}

.btn-inscricao {
	background: #ff963a;
	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;
}

@media screen and (max-width: 1050.98px) {
	.topo-imagem {
		margin-bottom: 3rem;
		width: 100%;
	}
}

@media screen and (max-width: 991.98px) {
	.logotipos {
		padding: 20px 20px;
		flex-direction: column-reverse;
	}
}

@media screen and (max-width: 767.98px) {
	.content {
		padding: 0 5% 10%;
	}
	.titulo {
		width: fit-content;
		display: block;
		margin: 100px auto 50px;
	}
	img.logotipoAnglo {
		height: 100px;
	}
}
@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;
	}
}
