/* Formulário de agendamento [pse_form_agendamento] — fiel à tarja do lp_html.
   O fundo azul institucional é dado pelo container do Elementor. */

.pse-form-agendamento {
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-family: 'DM Sans', sans-serif;
}

.pse-form-agendamento input[type="text"],
.pse-form-agendamento input[type="email"],
.pse-form-agendamento input[type="tel"] {
	font-family: 'DM Sans', sans-serif;
	font-size: 17px;
	padding: 16px 20px;
	border-radius: 12px;
	border: none;
	background: #fff;
	color: #262A2E;
	width: 100%;
	min-height: 48px;
	box-sizing: border-box;
}

.pse-form-agendamento input::placeholder { color: #8a949e; }

.pse-form-agendamento input:focus-visible,
.pse-form-agendamento button:focus-visible {
	outline: 3px solid #0B5ED7;
	outline-offset: 2px;
}

.pse-form-agendamento .pse-consent {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: #ffffff;
	cursor: pointer;
}
.pse-form-agendamento .pse-consent input {
	width: 20px;
	height: 20px;
	accent-color: #0B5ED7;
	flex-shrink: 0;
}
.pse-form-agendamento .pse-consent a {
	color: #8FC0F5;
	text-decoration: underline;
}

/* Honeypot — invisível para humanos */
.pse-form-agendamento .pse-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	overflow: hidden;
}

.pse-form-agendamento .pse-btn-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	font-size: 18px;
	padding: 16px 36px;
	border-radius: 50px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all .2s ease;
	min-height: 48px;
	background: #0B5ED7;
	color: #fff;
}
.pse-form-agendamento .pse-btn-submit:hover {
	background: #fff;
	color: #06294D;
}
.pse-form-agendamento .pse-btn-submit[disabled] {
	opacity: .6;
	cursor: default;
}

.pse-form-agendamento .pse-form-msg { font-size: 16px; line-height: 1.5; }
.pse-form-agendamento .pse-form-msg.pse-ok {
	display: flex; align-items: flex-start; gap: 10px;
	color: #fff; font-weight: 500;
}
.pse-form-agendamento .pse-form-msg.pse-ok::before {
	content: '\2713';
	display: inline-flex; align-items: center; justify-content: center;
	width: 24px; height: 24px; border-radius: 50%;
	background: #3C9A5F; color: #fff; font-size: 13px; font-weight: 700;
	flex-shrink: 0;
}
.pse-form-agendamento .pse-form-msg.pse-erro { color: #ffd7d7; font-weight: 500; }
