<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ========== GRID PRINCIPAL ========== */

.texto_descritivo {
    width: 100% !important;
  }

.estrutura_inicial #di-ouvidoria {
	height: 320px;
	width: 100%;
	margin-bottom: 5%;
}

#ouvidoria-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 16px;
	padding: 16px 0 16px 0;
	justify-items: center;
}

/* ========== ESTILO DOS CARDS ========== */
.ouvidoria-card {
	width: 104%;
	max-width: 400px;
	border-radius: 10px;
	padding: 15px;
	text-align: left;
	transition: all 0.3s ease-in-out;
	border: 2px solid;
	background: #fff;
	text-align: left;
	min-height: 125px;
}

.ouvidoria-card:hover {
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* ========== CABEÇALHO DO CARD ========== */
.ouvidoria-header {
	display: flex;
	align-items: center;
	justify-content: left;
	gap: 8px;
	font-weight: bold;
	font-size: 18px;
}

.ouvidoria-header img {
	width: 30px;
	height: 30px;
}

#sugestao .ouvidoria-header img {
	width: 30px;
	height: 37px;
}

/* ========== CONTEÚDO DO CARD ========== */
.ouvidoria-body {
	font-size: 12px;
	color: #333;
	margin-top: 10px;
	line-height: 1.3;

}

/* ========== CORES DOS CARDS ========== */
#sugestao {
	border-color: #10A37F;
	color: #10A37F;
}

#reclamacao {
	border-color: #E53935;
	color: #E53935;
}

#elogio {
	border-color: #4CAF50;
	color: #4CAF50;
}

#solicitacao {
	border-color: #3F51B5;
	color: #3F51B5;
}

#denuncia {
	border-color: #D32F2F;
	color: #D32F2F;
}

#avaliacao {
	border-color: #8D6E63;
	color: #8D6E63;
}





/*=========forms=======================*/
/* ========== SEÇÃO DA CONSULTA ========== */
#consulta-form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 20px;
}

/* Texto à esquerda */
.consulta-texto {
	max-width: 40%;
}

.consulta-texto h6 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

.consulta-texto p {
	font-size: 11px;
	color: #666;
	line-height: 1.3;

}

/* Formulário à direita */
.consulta-form {
	display: flex;
	align-items: center;
	border: 2px solid #10A37F;
	border-radius: 10px;
	overflow: hidden;
	max-width: 50%;
	flex-grow: 1;
}

.consulta-form input {
	flex-grow: 1;
	padding: 10px 15px;
	border: none;
	font-size: 14px;
	outline: none;
}

.consulta-form button {
	background-color: #10A37F;
	color: #fff;
	padding: 10px 20px;
	font-size: 14px;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease-in-out;
}

.consulta-btn {
	background-color: var(--azul-background-color);
	color: #fff;
	padding: 10px 20px;
	font-size: 14px;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease-in-out;
	border-radius: 10px;
}


.consulta-btn:hover {
	background-color: var(--root-color-hover);
}


.consulta-form button:hover {
	background-color: #0e8a6b;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
	#consulta-form {
		flex-direction: row;
		text-align: center;
	}

	.consulta-texto {
		max-width: 100%;
		margin-bottom: 15px;
	}

	.consulta-form {
		max-width: 100%;
	}
}



/* ========== RESPONSIVIDADE ========== */
@media (max-width: 1024px) {
	#ouvidoria-container {
		grid-template-columns: repeat(3, 1fr);
	}

	.estrutura_inicial #di-ouvidoria {
		height: 320px;
		width: 100%;
		margin-bottom: 51%;
	}
	.texto_descritivo {
		width: 100% !important;
	  }
}

@media (max-width: 768px) {
	#ouvidoria-container {
		grid-template-columns: repeat(2, 1fr);
	}
	.texto_descritivo {
		width: 100% !important;
	  }
}
@media (max-width: 680px) {
	.estrutura_inicial #di-ouvidoria {
		height: 320px;
		width: 100%;
		margin-bottom: 50%;
	}

}
@media (max-width: 576px) {
	.estrutura_inicial #di-ouvidoria {
		height: 320px;
		width: 100%;
		margin-bottom: 70%;
	}

}
@media (max-width: 480px) {
	#ouvidoria-container {
		grid-template-columns: repeat(1, 1fr);
	}
	.texto_descritivo {
		width: 100% !important;
	  }
	.estrutura_inicial #di-ouvidoria {
		height: 320px;
		width: 100%;
		margin-bottom: 750px;
	}

	.ouvidoria-card {
		width: 100%;
		max-width: 400px;
		border-radius: 10px;
		padding: 15px;
		text-align: center;
		transition: all 0.3s ease-in-out;
		border: 2px solid;
		border-top-color: currentcolor;
		border-right-color: currentcolor;
		border-bottom-color: currentcolor;
		border-left-color: currentcolor;
		background: #fff;
		text-align: left;
	}

	.ouvidoria-body {
		font-size: 16px;
		color: #333;
		margin-top: 10px;
	}

	#consulta-form {
		flex-direction: row;
		text-align: center;
		justify-content: center;
	}

	.consulta-form input {
		flex-grow: 1;
		padding: 10px 15px;
		border: none;
		font-size: 10px;
		outline: none;
	}

	.consulta-form input::placeholder {
		font-size: 9px;
	}

	.consulta-form button {
		background-color: #10A37F;
		color: #fff;
		padding: 10px 20px;
		font-size: 12px;
		border: none;
		cursor: pointer;
		transition: background 0.3s ease-in-out;
	}
} 
@media (max-width: 380px) {
	.texto_descritivo {
		width: 100% !important;
	  }
	.estrutura_inicial #di-ouvidoria {
		height: 320px;
		width: 100%;
		margin-bottom: 800px;
	}
}</pre></body></html>