@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: #26347c;
}

* {
	margin: 0;
	border: 0;
	padding: 0;
	box-sizing: border-box;
}
body,
html {
	margin: 0;
	padding: 0;
	color: var(--color-text);
	word-wrap: normal;
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-family: var(--font-family);
	background: #153d8f;
	background-image: linear-gradient(45deg, rgba(21, 61, 143, 1) 0%, rgba(42, 49, 116, 1) 50%, rgba(25, 71, 152, 1) 100%);
}

header {
	background: url("../img/decoracao.webp");
	background-repeat: no-repeat;
	background-position: top left;
	background-size: auto;
}

img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}
.logotipos {
	text-align: center;
	width: 100%;
	padding: 1rem;
	margin-bottom: 5rem;
}
img.logotipo {
	height: 90px;
	filter: brightness(0) invert(1);
}

.titulo {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	padding: 0 5rem;

	img.aluno {
		width: 40%;
	}
	img.texto {
		width: 35%;
	}
}

img.texto {
	width: 800px;
	margin: auto;
}

.border {
	background: #ffffff;
	box-shadow: #000 0px 0px 0px 3px inset, #4862ab -10px 10px 0px -3px, #000 -10px 10px;
	height: 30px;
	width: 90%;
	margin: auto;
}

.content {
	padding: 3rem 10%;
	text-align: center;
}

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: 30%;
	text-align: center;
	margin: 5rem 0 3rem;

	img {
		height: 150px;
		width: auto;
		object-fit: contain;
	}
	strong {
		font-size: large;
	}
}
.line {
	width: 100%;
	text-align: center;
	font-size: small;
}

.btn-inscricao {
	background: #4862ab;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	color: #ffffff;
	z-index: 9;
}
.btn-inscricao:hover {
	background: #6781ef;
	color: var(--color-white);
}
.btn-inscricao::after {
	content: "Inscreva-se";
	padding-left: 0.5rem;
}

@media screen and (max-width: 767.98px) {
	.logotipos {
		margin-bottom: 3rem;
	}
	.titulo {
		flex-wrap: wrap;
		img.aluno {
			width: 90%;
		}
		img.texto {
			width: 90%;
			margin-bottom: 5rem;
		}
	}
	.footer-box {
		width: 100%;
		margin: 2rem;
	}
}
@media screen and (max-width: 575.98px) {
	.titulo {
		padding: 0 2rem;
	}
	.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;
	}
}
