/* ===== Página Fale Conosco — redesign ===== */

.contact-page-wrap {
	max-width: 760px;
	margin: 0 auto 40px;
}

.contact-alt-email {
	font-size: 14px;
	color: #646464;
	margin-bottom: 18px;
	padding: 10px 16px;
	background: #f7f8f9;
	border-radius: 6px;
}
.contact-alt-email a {
	color: #2ab343;
	font-weight: bold;
	text-decoration: none;
}
.contact-alt-email a:hover {
	text-decoration: underline;
}

.contact-card {
	background: #ffffff;
	border: 1px solid #e2e5e8;
	border-radius: 8px;
	padding: 28px 30px;
	box-shadow: 0 2px 10px rgba(22, 35, 43, 0.04);
}

/* Grid dos campos: 2 colunas no desktop, 1 no mobile */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 24px;
}
.contact-field--full {
	grid-column: 1 / -1;
}

.contact-field label {
	display: block;
	font-size: 13px;
	font-weight: bold;
	color: #16232b;
	margin-bottom: 6px;
}
.contact-required {
	color: #2ab343;
}

.contact-field input[type="text"],
.contact-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	font-size: 14px;
	font-family: inherit;
	color: #16232b;
	border: 1px solid #d6d6d6;
	border-radius: 6px;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-field textarea {
	resize: vertical;
	min-height: 110px;
}
.contact-field input[type="text"]:focus,
.contact-field textarea:focus {
	outline: none;
	border-color: #2ab343;
	box-shadow: 0 0 0 3px rgba(42, 179, 67, 0.15);
}

.contact-hint {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: #999;
}

/* Captcha */
.contact-captcha {
	background: #f7f8f9;
	border: 1px dashed #d6d6d6;
	border-radius: 6px;
	padding: 14px 16px;
}
.contact-captcha__row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}
.contact-captcha__sum {
	font-size: 16px;
	font-weight: bold;
	color: #16232b;
}
.contact-captcha input[type="text"] {
	width: 60px;
	text-align: center;
}

/* Botão de envio */
.contact-submit {
	text-align: center;
	padding-top: 6px;
}
.contact-btn {
	display: inline-block;
	padding: 12px 40px;
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.1s ease;
}
.contact-btn--primary {
	background: #2ab343;
	color: #ffffff;
}
.contact-btn--primary:hover {
	background: #239039;
}
.contact-btn--primary:active {
	transform: translateY(1px);
}
.contact-submit .contact-hint {
	text-align: center;
	margin-top: 10px;
}

/* Estado: mensagem enviada com sucesso */
.contact-feedback {
	text-align: center;
	padding: 44px 24px;
}
.contact-feedback__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: #e9f7ec;
	color: #2ab343;
	font-size: 28px;
	font-weight: bold;
}
.contact-feedback p {
	font-size: 15px;
	color: #16232b;
	margin-bottom: 20px;
}
.contact-feedback .contact-btn {
	background: #16232b;
	color: #fff;
}
.contact-feedback .contact-btn:hover {
	background: #24343f;
}

@media (max-width: 767px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.contact-card {
		padding: 20px 18px;
	}
	.contact-btn--primary {
		width: 100%;
	}
}
