.fabcv-body {
	margin: 0;
	background: #0a1f44;
	display: flex;
	justify-content: center;
	font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

.fabcv-card {
	width: 100%;
	max-width: 480px;
	min-height: 100vh;
	background: linear-gradient(180deg, var(--fabcv-topo, #0a1f44) 0%, var(--fabcv-base, #040d21) 100%);
	color: var(--fabcv-texto, #ffffff);
	font-family: 'Segoe UI', Roboto, Arial, sans-serif;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}

.fabcv-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 15% 20%, rgba(80,160,255,0.18) 0, transparent 40%),
		radial-gradient(circle at 85% 10%, rgba(80,160,255,0.12) 0, transparent 35%),
		radial-gradient(circle at 75% 70%, rgba(80,160,255,0.15) 0, transparent 40%);
	pointer-events: none;
}

.fabcv-card-inner {
	position: relative;
	z-index: 1;
	padding: 40px 28px 32px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.fabcv-foto-wrap {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	overflow: hidden;
	border: 6px solid rgba(255,255,255,0.85);
	box-shadow: 0 0 0 2px rgba(120,180,255,0.4), 0 10px 30px rgba(0,0,0,0.4);
	background: #fff;
	margin-bottom: 28px;
}

.fabcv-foto {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fabcv-info {
	margin-bottom: 24px;
}

.fabcv-posto {
	font-size: 20px;
	letter-spacing: 1px;
	font-weight: 700;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.fabcv-nome {
	font-size: 17px;
	font-weight: 600;
	margin: 0 0 14px;
	letter-spacing: .5px;
	opacity: .95;
}

.fabcv-cargo {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	margin: 0;
	max-width: 340px;
	opacity: .95;
	text-transform: uppercase;
}

.fabcv-botoes {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 36px;
}

.fabcv-botao {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fabcv-texto, #fff);
	transition: transform .15s ease, background .15s ease;
	text-decoration: none;
}

.fabcv-botao:hover {
	background: var(--fabcv-destaque, #25D366);
	transform: translateY(-3px);
}

.fabcv-botao svg {
	width: 26px;
	height: 26px;
}

.fabcv-om-logo {
	margin-bottom: 40px;
}

.fabcv-om-logo img {
	max-width: 220px;
	max-height: 220px;
	object-fit: contain;
}

.fabcv-om-logo p {
	font-size: 12px;
	letter-spacing: 1px;
	margin-top: 10px;
	opacity: .85;
	max-width: 300px;
}

.fabcv-footer {
	margin-top: auto;
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.fabcv-footer-logo {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.fabcv-footer-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.fabcv-footer-text strong {
	font-size: 18px;
	letter-spacing: 1px;
}

.fabcv-footer-text em {
	font-style: italic;
	font-size: 14px;
	opacity: .85;
}

@media (max-width: 420px) {
	.fabcv-foto-wrap { width: 170px; height: 170px; }
	.fabcv-posto { font-size: 17px; }
}
