/* Formulário de cadastro/contato — visual moderno e arredondado */
.lead-form {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	max-width: 420px;
}

.lead-form .field {
	position: relative;
}

.lead-form input {
	width: 100%;
	height: 56px;
	padding: 0 1.25rem;
	border: 1.5px solid #e3e9f6;
	border-radius: 1rem;
	font-size: 1rem;
	font-family: 'Roboto', sans-serif;
	color: #1c1e2e;
	background: #fff;
	box-shadow: 0 2px 6px rgba(28, 30, 46, 0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input::placeholder {
	color: #9aa3b8;
}

.lead-form input:focus {
	outline: none;
	border-color: #ed6524;
	box-shadow: 0 0 0 4px rgba(237, 101, 36, 0.12);
}

.lead-form input:invalid:not(:placeholder-shown) {
	border-color: #e8620e;
}

.lead-form .btn-lead-submit {
	height: 56px;
	border: none;
	border-radius: 1rem;
	background: #ed6524;
	color: #fff;
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.lead-form .btn-lead-submit:hover {
	background: #d95a1e;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px -6px rgba(237, 101, 36, 0.45);
}

.lead-form .btn-lead-submit:active {
	transform: translateY(0);
}

.lead-form .btn-lead-submit:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
}

@media (max-width: 575.98px) {
	.lead-form {
		max-width: 100%;
	}
}
