body {
	font-family: 'Poppins', sans-serif;
	background: radial-gradient(circle at top, #0a0f1a, #05080f 80%);
	color: #dbe9ff;
	margin: 0;
	padding: 0;
	min-height: 100vh;
	overflow-x: hidden;
	padding-top: 70px;
}
h1 {
	text-align: center;
	margin-top: 70px;
	font-size: 2.4em;
	color: #d8eaff;
	font-weight: 600;
	letter-spacing: 0.5px;
	animation: fadeInDown 1s ease;
}
.top-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background-color: #0a0f1a;
	padding: 10px 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}
.header-logo {
	display: flex;
	align-items: center;
}
.header-logo img {
	height: 40px;
	width: 40px;
	border-radius: 50%;
	object-fit: cover;
}
.header-nav {
	display: flex;
	align-items: center;
	gap: 12px;
}
.header-nav a {
	color: #00aaff;
	text-decoration: none;
	font-weight: 500;
	padding: 6px 10px;
	border-radius: 6px;
	transition: color 0.3s ease, background 0.3s ease;
}
.header-nav a:hover {
	color: #ffffff;
	background-color: #00aaff22;
}
.btn-voltar {
	background: none;
	color: #00aaff;
	text-decoration: none;
	font-weight: 500;
	padding: 6px 10px;
	border-radius: 6px;
	border: none;
	font-size: 0.95em;
	transition: none;
}
.btn-voltar:hover {
	color: #ffffff;
	background-color: transparent;
	transform: none;
}
form {
	background: rgba(15, 20, 35, 0.85);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(0, 102, 255, 0.15);
	border-radius: 16px;
	padding: 40px;
	width: 90%;
	max-width: 420px;
	margin-top: 45px;
	animation: fadeInUp 1s ease;
}
label {
	font-weight: 600;
	margin-top: 12px;
	display: block;
	color: #a8c4ff;
}
input,select,.form-control {
	padding: 12px;
	border: 1px solid rgba(0, 102, 255, 0.25);
	border-radius: 8px;
	background: rgba(10, 15, 25, 0.9);
	color: #e0ecff;
	width: 100%;
	box-sizing: border-box;
	margin-top: 6px;
	transition: 0.3s ease;
}
input:focus,select:focus {
	outline: none;
	border-color: #1e90ff;
	background: rgba(10, 15, 25, 1);
}
button {
	background: linear-gradient(90deg, #005eff, #00bfff);
	color: white;
	padding: 14px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 700;
	margin-top: 25px;
	font-size: 1rem;
	transition: 0.3s ease;
	width: 100%;
}
button:hover {
	transform: translateY(-3px);
	background: linear-gradient(90deg, #00bfff, #005eff);
}
#grafico-container {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	height: 400px;
}
#graficoVotos {
	width: 100% !important;
	height: auto !important;
}
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.conteudo {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
.conteudo-inner {
	width: 100%;
	max-width: 600px;
	text-align: center;
}
.form-container {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
}
@media (max-width: 480px) {
	.top-header {
		padding: 10px;
	}
	.header-content {
		flex-direction: column;
		align-items: center;
		gap: 10px;
		text-align: center;
	}
	.header-logo img {
		height: 36px;
		width: 36px;
	}
	.header-nav {
		flex-direction: column;
		align-items: center;
		gap: 8px;
		width: 100%;
	}
	.header-nav a {
		font-size: 0.95em;
		padding: 6px 12px;
		width: auto;
	}
	.btn-voltar {
		font-size: 0.9em;
		padding: 6px 12px;
		background: none;
		color: #00aaff;
		text-decoration: none;
		font-weight: 500;
		border-radius: 6px;
		border: none;
		transition: none;
	}
	.btn-voltar:hover {
		color: #ffffff;
		background-color: transparent;
		transform: none;
	}
	h1 {
		font-size: 1.8em;
		margin-top: 50px;
	}
	form {
		padding: 30px;
	}
}
