.banner {
	position: relative;
	background-image: url('../../imagens/avif/banner_.avif?cache=<?=$versaoCache?>');
	height: 50vh; 
	max-height: 400px;
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 200px 20px;
}
.banner div{
	background-color: rgba(0, 0, 0, 0.7); 
	padding: 40px; 
	position: absolute; 
	top: 50%; 
	left: 50%; 
	transform: translate(-50%, -50%); 
	text-align: center; 
	border-radius: 10px; 
	width: 90%; 
	max-width: 800px;
}
.banner h1 {
	margin: 0;
	font-size: 2.5em; 
	font-family: 'Arial', sans-serif; 
	margin-bottom: 10px;
}
.banner p {
	font-size: 1.2em; 
	font-family: 'Arial', sans-serif; 
	margin-bottom: 20px;
}
.banner a {
	display: inline-block; 
	margin-top: 20px; 
	padding: 15px 30px; 
	background-color: #241c4b; 
	color: white; 
	font-size: 1em; 
	text-decoration: none; 
	border-radius: 5px; 
	transition: background-color 0.3s;
}

/* Responsividade para telas muito pequenas (mobile) */
@media (max-width: 480px) {
	.banner {
		max-height: 5vh;
	}
	.banner h1 {
		font-size: 1.8em;
	}
	.banner p {
		font-size: 0.9em;
	}
	.banner a {
		padding: 10px 15px;
		font-size: 0.8em;
	}
}