/* HJFR Contact Form — alinhado ao sistema de caixas do site (superfície clara, sem branco puro) */
.hjfr-cf {
	max-width: 760px;
	margin: 0 auto;
	background: #e1ebf4;
	border: 1px solid #b8dde8;
	border-left: 4px solid #f6b10d;
	border-radius: 6px;
	padding: 1.75rem 2rem;
	box-shadow: 0 6px 18px rgba(36, 50, 52, .12);
}
.hjfr-cf, .hjfr-cf p, .hjfr-cf label { color: #243234; font-size: 1rem; line-height: 1.6; }
.hjfr-cf__row { display: flex; gap: 1rem; flex-wrap: wrap; margin: 0; }
.hjfr-cf__field { flex: 1 1 260px; margin: 0 0 1rem; }
.hjfr-cf__field label,
.hjfr-cf__consent label { font-weight: 600; color: #005b8c; display: block; margin-bottom: .3rem; }
.hjfr-cf__req { color: #e6202e; }
.hjfr-cf input[type="text"],
.hjfr-cf input[type="email"],
.hjfr-cf select,
.hjfr-cf textarea {
	width: 100%;
	background: #f0f8fc;
	border: 1px solid #9dc3d4;
	border-radius: 6px;
	padding: .6rem .75rem;
	font: inherit;
	color: #243234;
	box-sizing: border-box;
}
.hjfr-cf input:focus,
.hjfr-cf select:focus,
.hjfr-cf textarea:focus {
	outline: 2px solid #0054a1;
	outline-offset: 1px;
	border-color: #0054a1;
}
.hjfr-cf__consent { margin: .25rem 0 1rem; }
.hjfr-cf__consent label { font-weight: 400; color: #243234; display: flex; gap: .5rem; align-items: flex-start; }
.hjfr-cf__consent input { margin-top: .3rem; flex: none; }
.hjfr-cf__consent a { color: #005b8c; }
.hjfr-cf__button {
	background: #0054a1;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: .85rem 2.25rem;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}
.hjfr-cf__button:hover { background: #003d75; }
.hjfr-cf__button:focus-visible { outline: 2px solid #f6b10d; outline-offset: 2px; }
.hjfr-cf__notice { border-radius: 6px; padding: .8rem 1rem; font-weight: 600; margin: 0 0 1rem; }
.hjfr-cf__notice--ok { background: #eaf7ee; color: #00602a; border: 1px solid #007f32; }
.hjfr-cf__notice--err { background: #fdecec; color: #9c101c; border: 1px solid #e6202e; }
/* honeypot: fora do ecrã (nunca display:none — alguns bots detetam) */
.hjfr-cf__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 600px) { .hjfr-cf { padding: 1.25rem 1rem; } }
