:root {
	--azul-escuro: #0c2c43;
	--azul-claro: #1c93b3;

	--font-regular: Helvetica, Tahoma, sans-serif;
}

body,
html {
	margin: 0;
	padding: 0;
	font-family: var(--font-regular);
	font-size: large;
	color: #212121;
	word-wrap: normal;
	overflow-x: hidden;
	scroll-behavior: smooth;
	background: #fafafa;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}
header {
	background-color: var(--azul-escuro);
	background-image: url("../img/header-background-imagem.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: space-around;

	align-items: center;
	padding: 150px 50px 0;
	width: 100%;
}
.titulo {
	padding: 10px;
}
.titulo img {
	width: 600px;
	margin: auto;
}
.info img {
	width: 90%;
	max-width: 100%;
	margin: auto;
}

.logotipo {
	position: absolute;
	top: 0;
	left: 0;
	img {
		width: 60%;
		max-width: 100%;
		max-height: 150px;
		height: auto;
		object-fit: contain;
		padding: 10px;
	}
}

@media screen and (max-width: 992.98px) {
	.titulo img {
		width: 600px;
	}
}

@media screen and (min-width: 768px) {
	.logotipo {
		top: 20px;
		left: 30px;

		img {
			width: 40%;
		}
	}
}
@media screen and (max-width: 768.98px) {
	header {
		flex-wrap: wrap;
		padding: 100px 0 0;
		justify-content: center;
	}

	.titulo {
		margin-bottom: 20px;
	}
	img.datahora {
		max-width: 80%;
	}
}

a {
	color: #494949;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

h1 {
	color: var(--azul-escuro);
	font-size: xx-large;
	font-weight: 800;
	text-align: center;
	font-family: var(--font-regular);
	margin: 0;
	text-transform: uppercase;
}
h2 {
	color: var(--azul-claro);
	text-align: center;
	margin: 0;
}
.tituloForm p {
	text-align: center;
	font-size: x-large;
	margin: 0;
	color: var(--azul-claro);
	font-weight: 600;
}

ul {
	list-style: none;
	padding: 1rem 3rem;
	margin: 0;
}
li {
	padding: 0.3rem;
}

section {
	padding: 50px 100px;
}

.formulario {
	margin-top: 50px;
}

.informacoes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	img {
		max-width: 150px;
	}
}

footer {
	background: var(--azul-escuro);
	color: white;
	text-align: center;
	padding: 10px;
	font-size: small;
	a {
		color: white;
	}
}

.btnInscricao,
.btnWpp {
	padding: 9px 40px;
	border-radius: 50px;
	position: fixed;
	color: #fff;
	z-index: 9;
}
.btnInscricao:hover,
.btnWpp:hover {
	color: #fff;
	text-decoration: none;
	transition: background-color ease 0.2s;
}
.btnInscricao::after,
.btnWpp::after {
	padding-left: 5px;
}
.btnInscricao {
	background-color: var(--azul-claro);
	bottom: 70px;
	right: 50px;
}
.btnInscricao:hover {
	background-color: var(--azul-escuro);
}
.btnInscricao::after {
	content: "Inscreva-se";
}
.btnWpp {
	background-color: #128c7e;
	bottom: 20px;
	right: 50px;
}
.btnWpp:hover {
	background-color: #25d366;
}
.btnWpp::after {
	content: "Fale conosco";
}

@media (max-width: 767.98px) {
	section {
		padding: 50px 20px;
	}
	.btnInscricao,
	.btnWpp {
		padding: 10px 18px;
		right: 20px;
	}
	.btnInscricao {
		bottom: 80px;
	}
	.btnWpp {
		bottom: 20px;
	}
	.btnInscricao::after,
	.btnWpp::after {
		content: none;
		padding-left: 0;
	}
}
