/* RESET */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

/* CORES */
:root {
	--cor-principal: #F0D103;
	--cor-texto: #fff;
}

/* BODY */
body {
	background: url("../images/site.jpg") no-repeat center center fixed;
	background-size: cover;
	color: var(--cor-texto);
}

/* CONTAINER */
.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

/* NAVBAR */
.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
}

.logo img {
	width: 120px;
}

/* MENU */
nav ul {
	list-style: none;
	display: flex;
	gap: 20px;
}

nav ul li a {
	color: antiquewhite;
	text-decoration: none;
}

/* MENU MOBILE */
.menu-celular {
	display: none;
	width: 25px;
	cursor: pointer;
}

/* BANNER */
.banner {
	background: rgba(0, 0, 255, 0.3);
}

.banner-img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 10px;
}

/* CONTEÚDO */
.col-1 {
	width: 100%;
	text-align: center;
	margin: 40px 0;
}

.col-1 h1 {
	color: var(--cor-principal);
	margin-bottom: 20px;
}

.col-1 p {
	padding: 0 20px;
	text-align: justify;
}

/* IMAGENS CENTRALIZADAS */
.img-center {
	display: block;
	margin: 20px auto;
	max-width: 90%;
	border-radius: 10px;
}

/* RESPONSIVO */
@media (max-width: 768px) {

	nav ul {
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background: black;
		flex-direction: column;
		text-align: center;
		display: none;
	}

	nav ul.active {
		display: flex;
	}

	.menu-celular {
		display: block;
	}

	.banner-img {
		height: 200px;
	}

	.img-center {
		max-width: 95%;
	}
}