.fa-formulario-alarma {
	max-width: 1080px;
	margin: 0 auto;
	padding: 32px 24px;
	background: #f5f5f7;
	border-radius: 12px;
	box-sizing: border-box;
	font-family: inherit;
}

.fa-formulario-alarma * {
	box-sizing: border-box;
}

.fa-header {
	text-align: center;
	margin-bottom: 28px;
}

.fa-header h2 {
	font-size: 30px;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 8px;
}

.fa-header p {
	font-size: 16px;
	color: #5b6b84;
	margin: 0;
}

.fa-progress {
	display: flex;
	gap: 12px;
	margin-bottom: 32px;
}

.fa-progress-segment {
	flex: 1;
	min-width: 0;
}

.fa-progress-segment-label {
	font-size: 13px;
	color: #5b6b84;
	margin-bottom: 6px;
}

.fa-progress-segment-track {
	height: 6px;
	background: #d9dee5;
	border-radius: 999px;
	overflow: hidden;
}

.fa-progress-segment-fill {
	height: 100%;
	width: 0%;
	background: #2ea3f2;
	border-radius: 999px;
	transition: width 0.3s ease;
}

.fa-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	color: #5b6b84;
	font-size: 14px;
	cursor: pointer;
	padding: 0 0 20px;
}

.fa-back:hover {
	color: #2ea3f2;
}

.fa-back[hidden] {
	display: none;
}

.fa-question {
	font-size: 22px;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 20px;
	line-height: 1.3;
}

.fa-options {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.fa-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: #ffffff;
	border: 1px solid #dbe1e8;
	border-radius: 8px;
	cursor: pointer;
	font-size: 16px;
	color: #374151;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fa-option:hover {
	border-color: #2ea3f2;
}

.fa-option.is-selected {
	border-color: #2ea3f2;
	box-shadow: 0 0 0 1px #2ea3f2;
}

.fa-option-radio {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #cfd8e3;
	flex-shrink: 0;
	position: relative;
}

.fa-option.is-selected .fa-option-radio {
	border-color: #2ea3f2;
}

.fa-option.is-selected .fa-option-radio::after {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: #2ea3f2;
}

.fa-contact-field {
	margin-bottom: 16px;
}

.fa-contact-field label {
	display: block;
	font-size: 14px;
	color: #5b6b84;
	margin-bottom: 6px;
}

.fa-email-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.fa-email-input {
	flex: 1 1 240px;
	height: 52px;
	padding: 0 16px;
	border: 1px solid #cfd8e3;
	border-radius: 8px;
	font-size: 16px;
	color: #3f4e67;
	outline: none;
}

.fa-email-input:focus {
	border-color: #2ea3f2;
	box-shadow: 0 0 0 2px rgba(46, 163, 242, 0.15);
}

.fa-submit-btn {
	flex: 0 0 auto;
	height: 52px;
	padding: 0 28px;
	background: #f6c343;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	color: #1f2937;
	cursor: pointer;
	transition: background 0.15s ease;
}

.fa-submit-btn:hover:not(:disabled) {
	background: #f0b52f;
}

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

.fa-privacy {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 14px;
	font-size: 13px;
	color: #5b6b84;
}

.fa-privacy input {
	margin-top: 3px;
}

.fa-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.fa-message {
	margin-top: 16px;
	font-size: 14px;
}

.fa-message.is-error {
	color: #dc2626;
}

.fa-message.is-success {
	color: #16a34a;
}

.fa-success-screen {
	text-align: center;
	padding: 24px 0;
}

.fa-success-screen h2 {
	font-size: 26px;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 10px;
}

.fa-success-screen p {
	font-size: 16px;
	color: #5b6b84;
	margin: 0;
}

@media (max-width: 640px) {
	.fa-header h2 {
		font-size: 24px;
	}

	.fa-question {
		font-size: 19px;
	}

	.fa-email-row {
		flex-direction: column;
	}

	.fa-submit-btn {
		width: 100%;
	}
}
