body {
	font-family: Arial, sans-serif;
	background-image: url("https://images.unsplash.com/photo-1727709350469-5fde916217a8?q=80&w=3540&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.container {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	text-align: center;
	max-width: 400px;
	width: 100%;
	position: relative;
}
p#numeroPerguntas {
	position: absolute;
	margin: 0px !important;
	bottom: 10px;
	right: 10px;
	font-size: 12px;
}
h1,
h2 {
	color: #333;
}

button {
	margin: 10px;
	padding: 10px 20px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

button:hover {
	background-color: #0056b3;
}

input,
select,
textarea {
	margin: 10px 0;
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #ddd;
}

.r-nao {
	background-color: darkred;
}

#pergunta-texto {
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}
.zonaAjuda {
	position: absolute;
	top: 10px;
	left: 10px;

	font-size: 14px;
	text-align: left;
}
.tooltip {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 20px;
	cursor: pointer;
}

.floater {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 20px;
	border-radius: 8px;
	max-width: 500px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	margin-bottom: 20px;
}

.floater.documentosAjuda {
	width: fit-content;
}

.floater.documentosAjuda a {
	text-decoration: none;
	color: black;
}
.notaSection {
	display: block; /* Ensure it's block for height calculations */
	max-height: 0;
	overflow: hidden;
	transition: all 0.5s ease-out;
}
#notaSection.show {
	margin-top: 20px;
	max-height: 500px;
	overflow-y: scroll;
}
.zonaAjuda p {
	margin: 0px;
}

.notaTitle {
	font-weight: 600;
	margin-top: 20px !important;
}

.notaTitle:nth-child(1) {
	margin-top: 0px !important;
}

.zonaAjuda ol {
	margin-top: 5px !important;
}

.zonaAjuda ol li {
	margin-bottom: 10px;
}

.smallerList {
	font-size: 12px;
}

.zonaAjuda.notasInicioProjeto {
}
