.acf-form-wrapper {
	max-width: 640px;
	margin: 0 auto;
}

.acf-contact-form .acf-field {
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
}

.acf-contact-form label {
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 15px;
}

.acf-required {
	color: #c0392b;
}

.acf-contact-form input[type="text"],
.acf-contact-form input[type="email"],
.acf-contact-form input[type="tel"],
.acf-contact-form textarea {
	padding: 10px 12px;
	border: 1px solid #ccd2d8;
	border-radius: 6px;
	font-size: 15px;
	font-family: inherit;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.15s ease;
}

.acf-contact-form input:focus,
.acf-contact-form textarea:focus {
	outline: none;
	border-color: #1f3b57;
	box-shadow: 0 0 0 3px rgba(31, 59, 87, 0.12);
}

.acf-contact-form input.acf-invalid,
.acf-contact-form textarea.acf-invalid {
	border-color: #c0392b;
}

.acf-error {
	color: #c0392b;
	font-size: 13px;
	margin-top: 4px;
	min-height: 16px;
}

/* Honeypot: oculto visualmente, pero accesible a bots que ignoran CSS */
.acf-honeypot {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	height: 0;
	overflow: hidden;
}

.acf-submit-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.acf-submit-btn {
	background: #1f3b57;
	color: #fff;
	border: none;
	padding: 12px 26px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.acf-submit-btn:hover {
	background: #14283a;
}

.acf-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.acf-spinner {
	width: 18px;
	height: 18px;
	border: 2px solid #ccd2d8;
	border-top-color: #1f3b57;
	border-radius: 50%;
	animation: acf-spin 0.7s linear infinite;
}

@keyframes acf-spin {
	to {
		transform: rotate(360deg);
	}
}

.acf-form-message {
	margin-top: 16px;
	padding: 12px 14px;
	border-radius: 6px;
	font-size: 14px;
	display: none;
}

.acf-form-message.acf-success {
	display: block;
	background: #e8f6ee;
	color: #1e7e42;
	border: 1px solid #b7e4c7;
}

.acf-form-message.acf-error {
	display: block;
	background: #fdecea;
	color: #c0392b;
	border: 1px solid #f5c6cb;
}
