.ctls-section {
	--ctls-orange: #F05A17;
	--ctls-blue: #08245F;
	--ctls-bg-dark: #0C0D15;
	--ctls-card-bg: #F7F7F9;
	--ctls-container-max: 1200px;
	box-sizing: border-box;
	padding: 56px 24px;
	font-family: 'Segoe UI', Arial, sans-serif;
}
.ctls-section *, .ctls-section *::before, .ctls-section *::after {
	box-sizing: border-box;
}

.ctls-wrapper {
	max-width: var(--ctls-container-max);
	margin: 0 auto;
}

.ctls-intro {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 40px;
}
.ctls-title {
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	color: var(--ctls-blue);
	margin: 0 0 16px;
}
.ctls-subtitle {
	font-size: 15px;
	line-height: 1.7;
	color: #4a4f5c;
	margin: 0;
}
.ctls-subtitle strong {
	color: var(--ctls-blue);
}

.ctls-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 40px;
	align-items: start;
}

/* ---------- Formulário ---------- */
.ctls-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.ctls-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.ctls-field label {
	font-size: 14px;
	font-weight: 700;
	color: var(--ctls-blue);
}
.ctls-field input,
.ctls-field select,
.ctls-field textarea {
	font: inherit;
	font-size: 15px;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1.5px solid #dcdde3;
	background: #fff;
	color: #1a1a1a;
	width: 100%;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.ctls-field textarea {
	resize: vertical;
	min-height: 130px;
}
.ctls-field input:focus,
.ctls-field select:focus,
.ctls-field textarea:focus {
	outline: none;
	border-color: var(--ctls-orange);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--ctls-orange) 15%, transparent);
}
.ctls-field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2308245F'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 20px;
	padding-right: 40px;
}

/* Honeypot: existe no HTML pra enganar robôs, mas fica totalmente fora da
   visão/leitura de gente de verdade (nem "display:none", que alguns leitores
   de tela ignoram do mesmo jeito que os robôs simples). */
.ctls-hp-field {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	left: -9999px !important;
}

.ctls-submit {
	align-self: flex-start;
	appearance: none;
	border: none;
	background: var(--ctls-orange);
	color: #fff;
	font-weight: 800;
	font-size: 15px;
	padding: 13px 32px;
	border-radius: 10px;
	cursor: pointer;
	transition: filter .15s ease, transform .15s ease;
}
.ctls-submit:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
}
.ctls-submit:disabled {
	opacity: .7;
	cursor: default;
	transform: none;
}

.ctls-feedback {
	margin: 4px 0 0;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 14px;
	border-radius: 10px;
}
.ctls-feedback[hidden] {
	display: none;
}
.ctls-feedback.is-success {
	background: #e8f7ee;
	color: #1a7a44;
}
.ctls-feedback.is-error {
	background: #fdecea;
	color: #b3261e;
}

/* ---------- Sidebar ---------- */
.ctls-sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.ctls-card {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: var(--ctls-card-bg);
	border-radius: 14px;
	padding: 20px;
}
.ctls-card-icon {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	color: var(--ctls-orange);
}
.ctls-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 800;
	color: var(--ctls-blue);
}
.ctls-card p {
	margin: 0 0 4px;
	font-size: 14px;
	line-height: 1.5;
	color: #3d4150;
}
.ctls-card a {
	color: #3d4150;
	text-decoration: none;
}
.ctls-card a:hover {
	color: var(--ctls-orange);
	text-decoration: underline;
}

.ctls-footer-empresa {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid #e4e4ea;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 14px;
	justify-content: center;
	font-size: 12.5px;
	color: #8a8d99;
	text-align: center;
}
.ctls-footer-empresa strong {
	color: #5b5f6d;
}

@media (max-width: 860px) {
	.ctls-grid {
		grid-template-columns: 1fr;
	}
	.ctls-sidebar {
		order: 2;
	}
}
@media (max-width: 480px) {
	.ctls-section {
		padding: 40px 16px;
	}
	.ctls-submit {
		align-self: stretch;
		text-align: center;
	}
}
