/* Adesão — design system próprio (mantém --adesao-brand / cssNovoCadastroPublico). */

body.bg-body-tertiary {
	background: #eef2f7;
	background-image:
		radial-gradient(ellipse at top, rgba(255,255,255,0.85), transparent 55%),
		linear-gradient(180deg, #e9eef5 0%, #eef2f7 40%, #e8edf4 100%);
	min-height: 100vh;
	color: #1f2d40;
}

.adesao-page,
.container.mb-5 {
	padding-top: 0.35rem;
}

/* Header */
.adesao-header-bar {
	background-color: var(--adesao-brand, #006699);
	color: var(--adesao-brand-text, #fff);
	box-shadow: 0 2px 12px rgba(15, 35, 65, 0.18);
}
.adesao-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}
.adesao-header-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
	flex: 1 1 auto;
}
.adesao-header-acoes {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.45rem;
	flex: 0 0 auto;
}
.adesao-header-logout {
	display: inline-block;
	margin: 0;
}
.adesao-logo-header {
	display: block;
	max-width: 160px;
	max-height: 64px;
	width: auto;
	height: auto;
	object-fit: contain;
	flex: 0 0 auto;
	/* impede cssNovoCadastroPublico (ex.: filter invert em img) de apagar a logo */
	filter: none !important;
	opacity: 1 !important;
	visibility: visible !important;
	background: transparent !important;
	border-radius: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
}
.adesao-header-titulo {
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.25;
	color: var(--adesao-brand-text, #fff);
	word-break: break-word;
}
.adesao-btn-vendedor {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	white-space: nowrap;
	border-radius: 999px;
	padding: 0.45rem 0.9rem;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.2;
	color: var(--adesao-brand-text, #fff);
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.55);
	text-decoration: none;
}
.adesao-btn-vendedor:hover,
.adesao-btn-vendedor:focus {
	color: var(--adesao-brand-text, #fff);
	background: rgba(255, 255, 255, 0.24);
	border-color: rgba(255, 255, 255, 0.8);
}
.adesao-btn-vendedor-txt-short {
	display: none;
}
.adesao-btn-sair {
	border-radius: 999px;
	font-weight: 600;
}
.adesao-badge-header {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	background: rgba(255,255,255,0.18);
	color: var(--adesao-brand-text, #fff);
	font-size: 0.85rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	vertical-align: middle;
	max-width: 14rem;
}
.adesao-badge-nome {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 160px;
}

/* Botao voltar */
.adesao-btn-voltar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	border: 1px solid #d5deea !important;
	background: #fff !important;
	color: #33455f !important;
	font-weight: 700;
	border-radius: 10px;
	padding: 0.55rem 1.2rem;
	min-height: 46px;
	box-sizing: border-box;
	line-height: 1.2;
}

/* Stepper de etapas (clicavel nas concluidas) */
.adesao-passos-wrap {
	margin: 0.75rem auto 0.85rem;
}
.adesao-stepper {
	background: #fff;
	border: 1px solid #dbe6f3;
	border-radius: 12px;
	padding: 0.7rem 0.6rem;
	box-shadow: 0 2px 8px rgba(20, 46, 87, 0.05);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.adesao-stepper-list {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.adesao-step {
	flex: 1 1 0;
	min-width: 0;
	position: relative;
}
.adesao-step-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	width: 100%;
	min-height: 72px;
	padding: 0.55rem 0.3rem;
	border-radius: 10px;
	text-decoration: none !important;
	color: inherit;
	border: 1px solid transparent;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.adesao-step-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	font-size: 0.9rem;
	font-weight: 700;
	background: #e8edf3;
	color: #5e7087;
}
.adesao-step-label {
	font-size: 0.86rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.15;
	color: #5e7087;
	white-space: normal;
	overflow-wrap: anywhere;
	max-width: 100%;
}
.adesao-step.is-todo .adesao-step-link {
	cursor: default;
	opacity: 0.72;
}
.adesao-step.is-active .adesao-step-index {
	background: var(--adesao-brand, #0b57bd);
	color: var(--adesao-brand-text, #fff);
}
.adesao-step.is-active .adesao-step-label {
	color: var(--adesao-brand, #0b57bd);
	font-weight: 700;
}
.adesao-step.is-active .adesao-step-link {
	background: rgba(11, 87, 189, 0.08);
	border-color: rgba(11, 87, 189, 0.2);
	cursor: default;
}
.adesao-step.is-done .adesao-step-index {
	background: #16c5b1;
	color: #fff;
}
.adesao-step.is-done .adesao-step-label {
	color: #147a6e;
}
.adesao-step.is-done .adesao-step-link {
	cursor: pointer;
}
.adesao-step.is-done .adesao-step-link:hover {
	background: #e8faf7;
	border-color: #9fe0d6;
}
.adesao-step.is-locked .adesao-step-link {
	cursor: not-allowed;
	opacity: 0.78;
}
.adesao-step.is-locked .adesao-step-link:hover {
	background: transparent;
	border-color: transparent;
}
.adesao-step.is-locked .adesao-step-label {
	color: #7a8aa0;
}

.plano-resumo-eyebrow {
	margin: 0 0 0.15rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #7a8aa0;
}
.plano-resumo-info {
	min-width: 0;
}
.adesao-step.is-done .adesao-step-link:hover .adesao-step-label {
	text-decoration: underline;
}

/* Planos */
.planos-intro {
	margin-bottom: 1rem;
}
.planos-intro-titulo {
	margin: 0 0 0.25rem;
	font-size: 1.35rem;
	font-weight: 800;
	color: #15233a;
	letter-spacing: -0.01em;
}
.planos-intro-apoio {
	margin: 0;
	font-size: 0.95rem;
	color: #6f7f95;
}
.planos-grid > [class*="col-"] {
	display: flex;
}
.boxPanel {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	border: 1px solid #d9e3f0;
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(20, 46, 87, 0.05);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.boxPanel:hover,
.boxPanel:focus {
	border-color: #9db8d8;
	box-shadow: 0 10px 22px rgba(20, 46, 87, 0.1);
	transform: translateY(-2px);
	outline: none;
}
.boxPanel.border-select {
	border-color: var(--adesao-brand, #4a90e2);
	box-shadow: 0 0 0 2px rgba(74, 144, 226,.25);
}
.boxPanel .panel-body {
	display: flex;
	flex: 1;
	min-height: 140px;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	background: #fbfcfe;
}
.boxPanel .panel-body img {
	display: block;
	max-width: 100%;
	max-height: 140px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
}
.plano-card-caption {
	padding: 0.55rem 0.7rem 0.7rem;
	border-top: 1px solid #eef2f7;
	background: #fff;
}
.plano-card-nome {
	margin: 0;
	font-size: 0.88rem;
	font-weight: 600;
	color: #1d2b44;
	line-height: 1.3;
}
.plano-card-valor {
	margin: 0.2rem 0 0;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--adesao-brand, #0a4aa3);
}
.plano-resumo-card {
	background: #fff;
	border: 1px solid #dbe8fb;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(20, 46, 87, 0.07);
	overflow: hidden;
}
.plano-resumo-sticky {
	position: sticky;
	top: 0.75rem;
}
.plano-resumo-head {
	padding: 0.7rem 0.9rem;
	background: var(--adesao-brand, #0b57bd);
	color: var(--adesao-brand-text, #fff);
}
.plano-resumo-head span {
	font-size: 0.9rem;
	font-weight: 600;
}
.plano-resumo-body {
	padding: 0.9rem;
}
.plano-resumo-info + .plano-resumo-actions {
	margin-top: 0.85rem;
}
.plano-resumo-nome {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 0.3rem;
	color: #1d2b44;
}
.plano-resumo-subtitulo {
	display: block;
	font-size: 0.85rem;
	color: #5d6f8a;
	margin-bottom: 0.55rem;
}
.plano-resumo-descricao {
	font-size: 0.84rem;
	line-height: 1.4;
	color: #4f6079;
	max-height: 160px;
	overflow: auto;
}
.plano-resumo-total {
	margin-top: 0.75rem;
	padding: 0.65rem 0.8rem;
	border-radius: 6px;
	background: #f7fafd;
	border: 1px solid #dce9ff;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--adesao-brand, #0a4aa3);
}
.plano-resumo-actions {
	margin-top: 0.85rem;
}
.plano-resumo-actions .btn {
	width: 100%;
}
.btn-primary {
	background-color: var(--adesao-brand, #0d6efd) !important;
	border-color: var(--adesao-brand, #0d6efd) !important;
	font-weight: 700;
	border-radius: 10px;
	padding: 0.55rem 1.2rem;
	box-shadow: 0 4px 12px rgba(15, 35, 65, 0.12);
}
.btn-primary:hover,
.btn-primary:focus {
	filter: brightness(0.96);
}
.btn-outline-primary {
	border-color: var(--adesao-brand, #0d6efd) !important;
	color: var(--adesao-brand, #0d6efd) !important;
	font-weight: 650;
	border-radius: 10px;
}
.btn-light {
	border: 1px solid #d5deea;
	border-radius: 10px;
	font-weight: 600;
}
/* Ações principais (Voltar/Continuar) — tamanho único; não afeta .btn-sm */
.btn-primary:not(.btn-sm):not(.btn-lg),
.btn-light:not(.btn-sm):not(.btn-lg),
.btn-outline-primary:not(.btn-sm):not(.btn-lg) {
	min-height: 46px;
	padding: 0.55rem 1.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
	box-sizing: border-box;
}
.btn-primary.btn-lg,
.btn-light.btn-lg,
.btn-outline-primary.btn-lg {
	min-height: 46px;
	padding: 0.55rem 1.2rem;
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
	box-sizing: border-box;
}
.form-control,
.form-select {
	border-radius: 8px;
	border-color: #d4deea;
	min-height: 38px;
	font-size: 0.9375rem;
	padding: 0.375rem 0.7rem;
	line-height: 1.35;
}
/* File nativo nao acompanha min-height do form-control — evita botao/texto colados no topo */
.form-control[type="file"],
input[type="file"].form-control {
	min-height: 0;
	height: auto;
	padding: 0.4rem 0.65rem;
	line-height: 1.4;
}
.form-control-sm[type="file"],
input[type="file"].form-control-sm {
	min-height: 0;
	height: auto;
	padding: 0.3rem 0.5rem;
	line-height: 1.35;
	font-size: 0.875rem;
}
.form-control:focus,
.form-select:focus {
	border-color: var(--adesao-brand, #0b57bd);
	box-shadow: 0 0 0 0.2rem rgba(11, 87, 189, 0.12);
}
.input-group-text {
	border-radius: 8px 0 0 8px;
	border-color: #d4deea;
	background: #f5f8fc;
	font-size: 0.9375rem;
	padding: 0.375rem 0.7rem;
}
/* Desktop: campos mais compactos (mobile permanece tocavel) */
@media (min-width: 768px) {
	.form-control,
	.form-select {
		min-height: 34px;
		font-size: 0.875rem;
		padding: 0.28rem 0.6rem;
		border-radius: 7px;
	}
	.form-control-sm,
	.form-select-sm {
		min-height: 30px;
		font-size: 0.8125rem;
		padding: 0.2rem 0.5rem;
	}
	.input-group-text {
		font-size: 0.875rem;
		padding: 0.28rem 0.6rem;
		border-radius: 7px 0 0 7px;
	}
	.form-label {
		font-size: 0.8rem;
		margin-bottom: 0.25rem;
	}
	.cadastro-section {
		padding: 1rem 1.1rem;
		border-radius: 14px;
	}
	.cadastro-section-header {
		margin-bottom: 0.85rem;
		padding-bottom: 0.7rem;
	}
	.cadastro-section-header h4,
	.cadastro-section-header h3 {
		font-size: 1.05rem;
	}
	.row.g-3 {
		--bs-gutter-y: 0.75rem;
		--bs-gutter-x: 0.75rem;
	}
	/* Formularios curtos (CPF, login) nao esticam a tela inteira */
	.adesao-form-estreito {
		max-width: 440px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* Cadastro / seções */
.cadastro-shell {
	display: grid;
	gap: 1rem;
	padding-bottom: 2rem;
}
.cadastro-section {
	background: #fff;
	border: 1px solid #dce6f2;
	border-radius: 16px;
	padding: 1.25rem 1.3rem;
	box-shadow: 0 8px 24px rgba(20, 46, 87, 0.06);
}
.cadastro-section-header {
	margin-bottom: 1rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid #eef2f7;
}
.cadastro-section-header h4,
.cadastro-section-header h3 {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 800;
	color: #15233a;
	letter-spacing: -0.01em;
}
.cadastro-section-header p {
	margin: 0.35rem 0 0;
	font-size: 0.92rem;
	color: #6b7f97;
	line-height: 1.4;
}
.adesao-limite-dependentes {
	margin-top: 0.65rem !important;
	padding: 0.65rem 0.85rem;
	background: #eef6fb;
	border: 1px solid #d5e6f2;
	border-radius: 10px;
	color: #1f4b66 !important;
	font-size: 0.92rem !important;
}
.adesao-limite-dependentes strong {
	color: #12384f;
}

/* Foto titular / dependente (cropper + camera) */
.adesao-foto-titular-wrap {
	max-width: 280px;
}
.adesao-foto-card {
	position: relative;
	padding: 1rem 0.9rem 0.9rem;
	background: #f8fafc;
	border: 1px solid #dce6f2;
	border-radius: 14px;
}
.adesao-foto-card .form-label {
	display: block;
	margin-bottom: 0.65rem;
	padding-right: 2.6rem;
	font-weight: 700;
	color: #15233a;
}
.adesao-camera-btn.camera-button,
.adesao-camera-btn.camera-button i,
.adesao-camera-btn.camera-button i::before {
	color: var(--adesao-brand, #0b57bd);
}
.adesao-camera-btn.camera-button {
	position: absolute;
	right: 10px;
	top: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #fff;
	border: 1px solid #dce6f2;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(20, 46, 87, 0.06);
	z-index: 2;
}
.adesao-camera-btn.camera-button:hover,
.adesao-camera-btn.camera-button:focus {
	border-color: var(--adesao-brand, #0b57bd);
	background: #eef5fb;
}
.adesao-camera-btn.camera-button i {
	font-size: 1.1rem;
}
.adesao-foto-preview {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	min-height: 140px;
}
.adesao-foto-avatar {
	display: block;
	width: 100%;
	max-width: 150px;
	max-height: 190px;
	margin: 0 auto;
	padding: 0.25rem;
	object-fit: contain;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #e6edf5;
}
.adesao-foto-input {
	font-size: 0.88rem;
	border-radius: 10px;
}
.adesao-foto-card--dep {
	margin-bottom: 0.25rem;
}
.adesao-foto-card--dep .adesao-foto-avatar {
	max-width: 120px;
	max-height: 152px;
}
@media (max-width: 767.98px) {
	.adesao-foto-titular-wrap {
		max-width: none;
	}
	.adesao-camera-btn.camera-button {
		width: 36px;
		height: 36px;
		right: 8px;
		top: 8px;
	}
	.adesao-foto-avatar {
		max-width: 124px;
		max-height: 156px;
	}
}

.cadastro-termos-box {
	padding: 1rem;
	background: #fff8e8;
	border: 1px solid #f2dfaa;
	border-radius: 12px;
}
.cadastro-termos-box h5 {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 700;
}
.cadastro-msg-acesso {
	padding: 0.9rem 1rem;
	background: #eef5fb;
	border: 1px solid #dbe6f3;
	border-radius: 10px;
	word-wrap: break-word;
}
.form-label {
	font-size: 0.85rem;
	font-weight: 650;
	color: #40556f;
	margin-bottom: 0.35rem;
}
.adesao-check {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin: 0.55rem 0;
	line-height: 1.35;
	padding: 0.55rem 0.7rem;
	border-radius: 10px;
	background: #f7fafd;
	border: 1px solid #e6eef8;
}
.adesao-check input {
	margin-top: 0.15rem;
}
.was-validated .adesao-check input:invalid {
	outline: 2px solid #dc3545;
	outline-offset: 2px;
}
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
	border-color: #dc3545;
}
.adesao-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0 0 1rem;
}
.adesao-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: #eef5ff;
	border: 1px solid #d6e5ff;
	color: #23456f;
	font-size: 0.82rem;
	font-weight: 650;
}
.adesao-chip strong {
	font-weight: 800;
	color: #15233a;
}
.adesao-erro,
.alert-danger {
	background: #fff2f2;
	border: 1px solid #f3c4c4;
	color: #8a1f1f;
	border-radius: 10px;
	padding: 0.75rem 0.9rem;
	margin-bottom: 0.85rem;
}
.adesao-ok,
.alert-success {
	background: #eefaf3;
	border: 1px solid #bfe8cf;
	color: #146c3c;
	border-radius: 10px;
	padding: 0.75rem 0.9rem;
	margin-bottom: 0.85rem;
}
.adesao-aviso {
	background: #fff8e8;
	border: 1px solid #f2dfaa;
	color: #7a5a10;
	border-radius: 10px;
	padding: 0.7rem 0.85rem;
}
.adesao-arquivo-item {
	background: #f8fbff;
	border: 1px solid #e6eef8;
	border-radius: 6px;
	padding: 0.6rem;
	margin-bottom: 0.5rem;
}
.adesao-arquivo-item > label.small {
	display: block;
	margin-bottom: 0.35rem;
}
.adesao-arquivo-item input[type="file"] {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.adesao-assinatura-box {
	margin-top: 0.75rem;
}
.adesao-assinatura-modal-wrap {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	background: #f8fafc;
	border: 1px dashed #c5d3e4;
	border-radius: 12px;
	overflow: hidden;
}
.adesao-assinatura-box canvas,
.adesao-assinatura-canvas {
	display: block;
	width: 100%;
	height: 220px;
	background: #fff;
	border: 0;
	border-radius: 0;
	cursor: crosshair;
	touch-action: none;
	max-width: 100%;
}
.adesao-pdf-box {
	border: 1px solid #dbe6f3;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	margin-bottom: 1.25rem;
}
.adesao-pdf-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	flex-wrap: wrap;
	padding: 0.55rem 0.85rem;
	background: #f7fafc;
	border-bottom: 1px solid #e3ebf5;
}
.adesao-pdf-toolbar-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: #243447;
}
.adesao-pdf-toolbar-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem;
}
.adesao-pdf-zoom {
	min-width: 3.2rem;
	text-align: center;
	font-size: 0.85rem;
	color: #5b6b7c;
}
.adesao-pdf-viewer {
	max-height: 70vh;
	overflow: auto;
	padding: 12px;
	background: #edf1f6;
}
.adesao-pdf-loading {
	padding: 2.5rem 1rem;
	text-align: center;
	color: #5b6b7c;
}
.adesao-pdf-page {
	margin: 0 auto 14px;
	max-width: 100%;
}
.adesao-pdf-page canvas {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0 2px 10px rgba(20, 40, 70, 0.12);
	border-radius: 2px;
}
.adesao-pdf-iframe-fallback {
	display: block;
	width: 100%;
	height: 70vh;
	min-height: 480px;
	border: 0;
	background: #edf1f6;
}
.adesao-modal {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	z-index: 1050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
.adesao-modal-conteudo {
	background: #fff;
	border-radius: 8px;
	padding: 1rem;
	max-width: 720px;
	width: 100%;
	max-height: 90vh;
	overflow: auto;
}
.adesao-panel {
	background: #fff;
	border: 1px solid #dbe6f3;
	border-radius: 8px;
	padding: 1.1rem;
	margin-bottom: 1rem;
	box-shadow: 0 2px 8px rgba(20, 46, 87, 0.05);
}
.adesao-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1d3557;
	margin: 0 0 0.5rem;
}
.adesao-form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
	gap: 0.75rem;
}
.adesao-pay-tabs {
	flex-wrap: wrap;
	gap: 0.25rem;
}
.adesao-pay-tabs .nav-link {
	cursor: pointer;
}
.adesao-pay-tabs .nav-link.active {
	background-color: var(--adesao-brand, #0d6efd) !important;
}

.adesao-pay-body .form-pagamento > .btn-primary,
.adesao-pay-body .tab-pane > form > .btn-primary {
	width: 100%;
	min-height: 46px;
	margin-top: 0.35rem;
}
.adesao-pay-hero {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
	padding: 1.15rem 1.25rem;
	border-radius: 14px;
	background: var(--adesao-brand, #0b57bd);
	color: var(--adesao-brand-text, #fff);
	box-shadow: 0 10px 28px rgba(20, 46, 87, 0.18);
}
.adesao-pay-hero-eyebrow {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.85;
	margin-bottom: 0.25rem;
}
.adesao-pay-hero-plano {
	margin: 0;
	font-size: 1.55rem;
	font-weight: 800;
	line-height: 1.2;
	word-break: break-word;
}
.adesao-pay-hero-sub {
	margin: 0.35rem 0 0;
	font-size: 0.92rem;
	opacity: 0.9;
}
.adesao-pay-hero-socio {
	margin: 0.55rem 0 0;
	font-size: 0.88rem;
	opacity: 0.92;
}
.adesao-pay-hero-valor {
	flex: 0 0 auto;
	min-width: 150px;
	padding: 0.75rem 0.95rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.22);
	text-align: right;
	align-self: center;
}
.adesao-pay-hero-valor-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	opacity: 0.85;
}
.adesao-pay-hero-valor-num {
	display: block;
	margin-top: 0.15rem;
	font-size: 1.45rem;
	font-weight: 800;
	line-height: 1.15;
}
.adesao-pay-hero-valor-detalhe {
	display: block;
	margin-top: 0.3rem;
	font-size: 0.72rem;
	line-height: 1.3;
	opacity: 0.88;
	max-width: 220px;
}
.adesao-pay-panel {
	background: #fff;
	border: 1px solid #e1eaf4;
	border-radius: 14px;
	padding: 1.15rem 1.2rem 1.35rem;
	box-shadow: 0 4px 18px rgba(20, 46, 87, 0.06);
}
.adesao-pay-panel-head {
	margin-bottom: 0.95rem;
}
.adesao-pay-panel-head h3 {
	margin: 0;
	font-size: 1.12rem;
	font-weight: 700;
	color: #15233a;
}
.adesao-pay-panel-head p {
	margin: 0.25rem 0 0;
	font-size: 0.9rem;
	color: #6b7f97;
}
.adesao-pay-seg {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	padding: 0.35rem;
	margin: 0 0 1rem;
	background: #f3f7fb;
	border-radius: 10px;
}
.adesao-pay-seg .nav-link {
	border: 0;
	border-radius: 8px;
	padding: 0.55rem 0.95rem;
	font-weight: 600;
	color: #40556f;
	background: transparent;
}
.adesao-pay-seg .nav-link:hover {
	background: #fff;
	color: var(--adesao-brand, #0b57bd);
}
.adesao-pay-seg .nav-link.active {
	background: #fff !important;
	color: var(--adesao-brand, #0b57bd) !important;
	box-shadow: 0 1px 6px rgba(20, 46, 87, 0.1);
}
.adesao-pay-body {
	padding-top: 0.25rem;
}
.adesao-cartao-layout {
	align-items: flex-start;
}
.adesao-card-wrapper,
.adesao-card-wrapper-mobile {
	margin-top: 0.35rem;
}
.adesao-card-wrapper .jp-card-container,
.adesao-card-wrapper-mobile .jp-card-container {
	margin: 0 auto;
}
.adesao-box-comercial {
	border-color: #f0d9a8;
	background: #fff9ef;
}
.adesao-cupom-box,
.adesao-simulacao,
.adesao-bonus-box {
	background: #f7fbff;
	border: 1px solid #dce9ff;
	border-radius: 12px;
	padding: 0.85rem 0.95rem;
}
.adesao-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: 0.95rem;
}
.adesao-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.95rem;
}
.adesao-choice-grid > form {
	margin: 0;
	height: 100%;
}
.adesao-card,
.adesao-card-btn {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	text-align: left;
	background: #fff;
	border: 1px solid #d7e2ef;
	border-radius: 14px;
	padding: 1.15rem 1.15rem 1.2rem;
	box-shadow: 0 4px 14px rgba(20, 46, 87, 0.05);
	color: inherit;
	text-decoration: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
	height: 100%;
	min-height: 148px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
}
.adesao-card:hover,
.adesao-card-btn:hover {
	border-color: var(--adesao-brand, #4a90e2);
	box-shadow: 0 10px 24px rgba(20, 46, 87, 0.1);
	transform: translateY(-2px);
	text-decoration: none;
	color: inherit;
}
.adesao-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 12px;
	background: rgba(11, 87, 189, 0.08);
	color: var(--adesao-brand, #0b57bd);
	font-size: 1.15rem;
	margin-bottom: 0.75rem;
	flex: 0 0 auto;
}
.adesao-card-body {
	min-width: 0;
	width: 100%;
}
.adesao-card h3,
.adesao-card-btn h3 {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
	font-weight: 800;
	color: #15233a;
}
.adesao-card p,
.adesao-card-btn p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.4;
	color: #6b7f97;
}
.adesao-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
	height: 100%;
}
.adesao-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.75rem;
}
.adesao-card-meta span {
	font-size: 0.75rem;
	font-weight: 650;
	color: #5e7087;
	background: #f3f7fb;
	border-radius: 6px;
	padding: 0.25rem 0.45rem;
}
.adesao-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	justify-content: space-between;
	margin-top: 1.15rem;
	padding-top: 1rem;
	border-top: 1px solid #eef2f7;
}
.adesao-actions.justify-content-center {
	justify-content: center;
}
.adesao-actions .btn {
	flex: 0 0 auto;
	min-height: 46px;
	min-width: 120px;
	padding: 0.55rem 1.35rem;
	font-weight: 700;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
	box-sizing: border-box;
	text-align: center;
	white-space: nowrap;
}
.adesao-actions .btn-light {
	border: 1px solid #d5deea;
	background: #fff;
	color: #33455f;
}
.adesao-actions .btn-primary {
	margin-left: auto;
	box-shadow: 0 4px 12px rgba(15, 35, 65, 0.12);
}
.adesao-actions.justify-content-center .btn-primary {
	margin-left: 0;
}
.adesao-footer-link {
	margin-top: 1rem;
	text-align: center;
}
.adesao-footer-link a {
	color: var(--adesao-brand, #0a4aa3);
	font-weight: 650;
	text-decoration: none;
}
.adesao-footer-link a:hover {
	text-decoration: underline;
}
.adesao-success-panel {
	padding-top: 1.9rem;
	padding-bottom: 1.9rem;
}
.adesao-success-icon {
	font-size: 3rem;
	color: #198754;
	margin-bottom: 0.55rem;
	line-height: 1;
}
.adesao-code {
	display: block;
	padding: 0.7rem 0.85rem;
	background: #f4f7fb;
	border: 1px solid #dbe6f3;
	border-radius: 10px;
	word-break: break-all;
	font-size: 0.85rem;
}
.adesao-pix-valor {
	font-size: 1.35rem;
	font-weight: 800;
	color: #146c3c;
}
.adesao-pix-qr {
	display: inline-block;
	padding: 0.85rem;
	background: #fff;
	border: 1px solid #e1eaf4;
	border-radius: 14px;
	box-shadow: 0 4px 14px rgba(20, 46, 87, 0.06);
}
.adesao-pix-qr img {
	max-width: 240px;
	width: 100%;
	display: block;
}
.adesao-form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: flex-end;
}

/* ---------- Responsivo ---------- */
@media (max-width: 991.98px) {
	.plano-resumo-descricao {
		max-height: 72px;
	}
}
@media (max-width: 767.98px) {
	.adesao-header-titulo {
		font-size: 0.98rem;
	}
	.adesao-logo-header {
		max-width: 96px;
		max-height: 44px;
	}
	.adesao-header-row {
		gap: 0.5rem;
	}
	.adesao-header-brand {
		gap: 0.55rem;
	}
	.adesao-btn-vendedor {
		padding: 0.4rem 0.7rem;
		font-size: 0.8rem;
		min-height: 2.25rem;
	}
	.adesao-btn-vendedor-txt-full {
		display: none;
	}
	.adesao-btn-vendedor-txt-short {
		display: inline;
	}
	.adesao-badge-header {
		max-width: 7.5rem;
		font-size: 0.75rem;
		padding: 0.3rem 0.55rem;
	}
	.adesao-passos-wrap {
		margin: 0.55rem auto 0.75rem;
	}
	.adesao-stepper {
		padding: 0.55rem 0.4rem;
	}
	.adesao-step-link {
		min-height: 78px;
		padding: 0.55rem 0.2rem;
		gap: 0.45rem;
	}
	.adesao-step-index {
		width: 2.15rem;
		height: 2.15rem;
		font-size: 1rem;
	}
	.adesao-step-label {
		font-size: 0.8rem;
		line-height: 1.2;
	}
	.adesao-page-planos {
		padding-bottom: calc(6.75rem + env(safe-area-inset-bottom, 0px)) !important;
	}
	.planos-layout > .col-lg-4 {
		height: 0;
		min-height: 0;
		padding: 0 !important;
		margin: 0 !important;
		overflow: visible;
	}
	.plano-resumo-sticky {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		top: auto;
		z-index: 1030;
		border-radius: 16px 16px 0 0;
		border: 1px solid #d7e2ef;
		border-bottom: 0;
		box-shadow: 0 -8px 24px rgba(20, 46, 87, 0.16);
		margin: 0;
		background: #fff;
		padding-bottom: env(safe-area-inset-bottom, 0px);
	}
	.plano-resumo-body {
		display: flex;
		align-items: center;
		gap: 0.85rem;
		padding: 0.85rem 0.95rem;
	}
	.plano-resumo-info {
		flex: 1 1 auto;
		min-width: 0;
	}
	.plano-resumo-nome {
		margin: 0;
		font-size: 1rem;
		line-height: 1.25;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.plano-resumo-subtitulo {
		display: block;
		margin: 0.15rem 0 0;
		font-size: 0.78rem;
		color: #6b7f97;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.plano-resumo-subtitulo:empty {
		display: none;
	}
	.plano-resumo-total {
		display: inline-block;
		margin-top: 0.35rem;
		padding: 0.25rem 0.5rem;
		font-size: 0.9rem;
		border-radius: 6px;
	}
	.plano-resumo-actions {
		flex: 0 0 auto;
		margin: 0;
	}
	.plano-resumo-info + .plano-resumo-actions {
		margin-top: 0;
	}
	.plano-resumo-actions form {
		margin: 0;
	}
	.plano-resumo-actions .btn {
		min-width: 118px;
		height: 46px;
		padding: 0 1rem;
		font-weight: 700;
		border-radius: 10px;
		white-space: nowrap;
	}
	.plano-resumo-actions .btn:disabled {
		opacity: 0.45;
	}
	.boxPanel .panel-body {
		min-height: 96px;
		padding: 0.4rem;
	}
	.boxPanel .panel-body img {
		max-height: 86px;
	}
	.plano-card-nome {
		font-size: 0.78rem;
	}
	.plano-card-valor {
		font-size: 0.72rem;
	}
	.cadastro-section {
		padding: 0.85rem;
	}
	.adesao-actions {
		flex-direction: column-reverse;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 0.6rem;
	}
	.adesao-actions .btn {
		width: 100%;
		min-width: 0;
		margin-left: 0;
		padding: 0.65rem 1rem;
		font-size: 1rem;
	}
	.adesao-actions .btn-primary {
		margin-left: 0;
	}
	.adesao-actions.justify-content-center {
		flex-direction: column;
	}
	.adesao-choice-grid {
		grid-template-columns: 1fr;
		gap: 0.7rem;
	}
	.adesao-choice-grid .adesao-card,
	.adesao-choice-grid .adesao-card-btn {
		flex-direction: row;
		align-items: center;
		min-height: 0;
		padding: 0.9rem 0.95rem;
		gap: 0.8rem;
	}
	.adesao-choice-grid .adesao-card-icon {
		margin-bottom: 0;
		width: 2.6rem;
		height: 2.6rem;
		font-size: 1.1rem;
		border-radius: 10px;
	}
	.adesao-choice-grid .adesao-card-body {
		flex: 1 1 auto;
	}
	.adesao-choice-grid .adesao-card h3,
	.adesao-choice-grid .adesao-card-btn h3 {
		font-size: 0.95rem;
		margin-bottom: 0.15rem;
		line-height: 1.25;
	}
	.adesao-choice-grid .adesao-card p,
	.adesao-choice-grid .adesao-card-btn p {
		font-size: 0.8rem;
		line-height: 1.35;
	}
	.adesao-pdf-viewer {
		max-height: 60vh;
	}
	.adesao-pdf-iframe-fallback {
		height: 60vh;
		min-height: 360px;
	}
	.adesao-pay-hero {
		flex-direction: column;
		padding: 1rem;
	}
	.adesao-pay-hero-plano {
		font-size: 1.25rem;
	}
	.adesao-pay-hero-valor {
		width: 100%;
		text-align: left;
		min-width: 0;
	}
	.adesao-pay-hero-valor-detalhe {
		max-width: none;
	}
	.adesao-pay-panel {
		padding: 0.95rem;
	}
	.adesao-pay-seg .nav-link {
		padding: 0.5rem 0.75rem;
		font-size: 0.9rem;
	}
	.adesao-card-wrapper-mobile .jp-card-container {
		transform: scale(0.82);
		transform-origin: top center;
	}
}
@media (max-width: 575.98px) {
	.planos-intro-titulo {
		font-size: 1.02rem;
	}
	.adesao-step-link {
		min-height: 84px;
	}
	.adesao-step-label {
		font-size: 0.78rem;
	}
	.col-6 .plano-card-caption {
		padding: 0.4rem 0.45rem 0.5rem;
	}
	.container {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}
}

/* Toast de mensagens (estilo addMensagem do sistema) */
.adesao-toast-wrap {
	position: fixed;
	top: 1rem;
	right: 1rem;
	left: auto;
	z-index: 1080;
	width: min(420px, calc(100vw - 1.5rem));
	max-width: 100%;
	pointer-events: none;
}
.adesao-toast-item {
	pointer-events: auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	margin: 0 0 0.65rem;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	box-shadow: 0 10px 28px rgba(15, 35, 65, 0.18);
	animation: adesao-toast-in 0.28s ease-out;
}
.adesao-toast-item.adesao-toast-out {
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}
.adesao-toast-text {
	flex: 1;
	line-height: 1.4;
	font-size: 0.95rem;
}
.adesao-toast-item .btn-close {
	flex-shrink: 0;
	margin-top: 0.15rem;
}
@keyframes adesao-toast-in {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (max-width: 575.98px) {
	.adesao-toast-wrap {
		top: 0.75rem;
		right: 0.75rem;
		left: 0.75rem;
		width: auto;
	}
}

/* Loading overlay (evita multiplos cliques) */
.adesao-loading {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(15, 35, 65, 0.45);
	backdrop-filter: blur(2px);
}
.adesao-loading-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	padding: 1.35rem 1.6rem;
	border-radius: 14px;
	background: rgba(15, 35, 65, 0.88);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	min-width: 180px;
}
.adesao-loading-texto {
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
}
body.adesao-loading-active {
	overflow: hidden;
}
.adesao-btn-busy {
	opacity: 0.75;
	pointer-events: none;
}

/* Resumo / recibo */
.adesao-resumo {
	text-align: left;
	margin: 1.25rem 0 1.5rem;
	padding: 1.1rem 1.15rem;
	border-radius: 14px;
	background: #f7fafc;
	border: 1px solid #e2eaf3;
}
.adesao-resumo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1.25rem;
	margin-bottom: 1rem;
}
.adesao-resumo-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6b7c93;
	margin-bottom: 0.2rem;
}
.adesao-resumo-valor {
	font-size: 1.02rem;
	font-weight: 700;
	color: #1f2d40;
	margin: 0;
}
.adesao-resumo-sub {
	display: block;
	font-size: 0.85rem;
	color: #6b7c93;
	margin-top: 0.15rem;
}
.adesao-resumo-totais {
	background: #fff;
	border: 1px dashed #d5e0ec;
	border-radius: 10px;
	padding: 0.85rem 1rem;
	margin-bottom: 1rem;
}
.adesao-resumo-linha {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.95rem;
	margin-bottom: 0.4rem;
}
.adesao-resumo-linha:last-child {
	margin-bottom: 0;
}
.adesao-resumo-linha.total {
	margin-top: 0.55rem;
	padding-top: 0.55rem;
	border-top: 1px solid #e2eaf3;
	font-size: 1.05rem;
	font-weight: 700;
	color: #198754;
}
.adesao-resumo-formas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 1rem;
}
.adesao-resumo-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #d5e0ec;
	font-size: 0.85rem;
	font-weight: 600;
	color: #1f2d40;
}
.adesao-resumo-tabela {
	width: 100%;
	font-size: 0.9rem;
	margin: 0;
}
.adesao-resumo-tabela th,
.adesao-resumo-tabela td {
	padding: 0.45rem 0.35rem;
	border-bottom: 1px solid #e8eef5;
}
.adesao-resumo-tabela th {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #6b7c93;
	font-weight: 700;
}
@media (max-width: 575.98px) {
	.adesao-resumo-grid {
		grid-template-columns: 1fr;
	}
}

/* Datepicker jQuery UI (vencimento 1a parcela no comercial) */
.ui-datepicker {
	z-index: 2000 !important;
	font-size: 0.9rem;
}
.adesao-datepicker-btn {
	min-width: 2.75rem;
}

/* Pagamento personalizado (compositor multi-metodo) */
.adesao-personalizado .adesao-personalizado-resumo h4,
.adesao-personalizado .list-group-item {
	font-size: 0.95rem;
}
.adesao-personalizado #div_listaParcelasFormaPag .list-group-item {
	flex-wrap: wrap;
	gap: 0.5rem;
}
.adesao-personalizado #customPaymentForm {
	background: #f8fafc;
}
.card-wrapper-modal {
	min-height: 180px;
}

/* Conclusao / panorama */
.adesao-page-conclusao {
	max-width: 980px;
}
.adesao-conclusao-hero {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1rem 1.25rem;
	align-items: center;
	padding: 1.35rem 1.4rem;
	margin-bottom: 1.25rem;
	border-radius: 18px;
	background: linear-gradient(135deg, #edf7f1 0%, #f4f8fc 55%, #eef3f9 100%);
	border: 1px solid #d7e8dd;
}
.adesao-conclusao-hero-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #198754;
	color: #fff;
	font-size: 1.45rem;
	box-shadow: 0 8px 18px rgba(25, 135, 84, 0.25);
}
.adesao-conclusao-eyebrow {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #5f7a68;
}
.adesao-conclusao-title {
	margin: 0.15rem 0;
	font-size: 1.65rem;
	font-weight: 800;
	color: #1f2d40;
}
.adesao-conclusao-lead {
	margin: 0;
	color: #60748b;
	font-size: 0.95rem;
}
.adesao-conclusao-hero-meta {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	align-items: flex-end;
}
.adesao-conclusao-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #d5e0ec;
	font-size: 0.8rem;
	color: #41556d;
	font-weight: 600;
}
.adesao-conclusao-aviso {
	margin-bottom: 1rem;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #e2eaf3;
	text-align: left;
}
.adesao-conclusao-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: 1rem;
}
.adesao-conclusao-card {
	background: #fff;
	border: 1px solid #e2eaf3;
	border-radius: 14px;
	padding: 1.05rem 1.15rem;
	text-align: left;
}
.adesao-conclusao-card-wide {
	margin-bottom: 1.25rem;
}
.adesao-conclusao-card-passaporte {
	border-color: #cfe0f5;
	background: linear-gradient(180deg, #f7fbff 0%, #ffffff 70%);
}
.adesao-conclusao-card-title {
	margin: 0 0 0.75rem;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #5d7088;
	display: flex;
	align-items: center;
	gap: 0.45rem;
}
.adesao-conclusao-card-title i {
	color: var(--adesao-brand, #006699);
}
.adesao-conclusao-nome {
	margin: 0 0 0.85rem;
	font-size: 1.15rem;
	font-weight: 800;
	color: #1f2d40;
}
.adesao-conclusao-lista {
	list-style: none;
	margin: 0;
	padding: 0;
}
.adesao-conclusao-lista li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.45rem 0;
	border-bottom: 1px dashed #e8eef5;
	font-size: 0.92rem;
}
.adesao-conclusao-lista li:last-child {
	border-bottom: 0;
}
.adesao-conclusao-lista span {
	color: #6b7c93;
}
.adesao-conclusao-lista strong {
	color: #1f2d40;
	text-align: right;
	font-weight: 700;
}
.adesao-conclusao-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.6rem;
	margin-top: 0.9rem;
}
.adesao-conclusao-stats > div {
	background: #f7fafc;
	border: 1px solid #e2eaf3;
	border-radius: 10px;
	padding: 0.65rem 0.5rem;
	text-align: center;
}
.adesao-conclusao-stats span {
	display: block;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #6b7c93;
	font-weight: 700;
	margin-bottom: 0.2rem;
}
.adesao-conclusao-stats strong {
	font-size: 1.15rem;
	color: #1f2d40;
}
.adesao-conclusao-deps {
	margin-top: 0.85rem;
	padding-top: 0.75rem;
	border-top: 1px solid #e2eaf3;
}
.adesao-conclusao-deps-list {
	list-style: none;
	margin: 0.4rem 0 0;
	padding: 0;
}
.adesao-conclusao-deps-list li {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.4rem 0.55rem;
	border-radius: 8px;
	background: #f4f8fc;
	margin-bottom: 0.35rem;
	font-size: 0.9rem;
}
.adesao-conclusao-deps-list span {
	color: #6b7c93;
}
.adesao-conclusao-actions {
	margin-top: 1.25rem;
	gap: 0.75rem;
}
.adesao-comprovante-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 0.25rem 0;
}
.adesao-comprovante-texto {
	flex: 1 1 220px;
	min-width: 0;
}
.adesao-comprovante-texto p {
	color: #5b6f86;
	font-size: 0.92rem;
	line-height: 1.45;
}
.adesao-btn-imprimir {
	flex: 0 0 auto;
	border-radius: 999px;
	font-weight: 700;
	padding: 0.65rem 1.15rem;
	white-space: nowrap;
}
.adesao-print-only {
	display: none;
}
@media (max-width: 767.98px) {
	.adesao-conclusao-hero {
		grid-template-columns: auto 1fr;
	}
	.adesao-conclusao-hero-meta {
		grid-column: 1 / -1;
		align-items: flex-start;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.adesao-conclusao-grid {
		grid-template-columns: 1fr;
	}
	.adesao-comprovante-box {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
	.adesao-btn-imprimir {
		width: 100%;
	}
}
@media print {
	body.bg-body-tertiary {
		background: #fff !important;
		background-image: none !important;
		color: #111 !important;
	}
	.adesao-header,
	.adesao-passos,
	.no-print,
	.adesao-conclusao-actions,
	.adesao-conclusao-comprovante {
		display: none !important;
	}
	.adesao-page-conclusao,
	.adesao-conclusao,
	.container {
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	.adesao-print-only {
		display: block !important;
		margin-bottom: 1rem;
		padding-bottom: 0.75rem;
		border-bottom: 2px solid #222;
	}
	.adesao-print-doc-label {
		margin: 0;
		font-size: 1.35rem;
		font-weight: 800;
		letter-spacing: -0.02em;
	}
	.adesao-print-doc-clube,
	.adesao-print-doc-data {
		margin: 0.2rem 0 0;
		font-size: 0.95rem;
		color: #333;
	}
	.adesao-conclusao-hero {
		display: none !important;
	}
	.adesao-conclusao-aviso {
		border: 1px solid #ccc !important;
		background: #f7f7f7 !important;
		box-shadow: none !important;
	}
	.adesao-conclusao-grid {
		display: block !important;
	}
	.adesao-conclusao-card,
	.adesao-conclusao-card-wide {
		box-shadow: none !important;
		border: 1px solid #ccc !important;
		border-radius: 0 !important;
		margin: 0 0 0.75rem !important;
		padding: 0.75rem !important;
		break-inside: avoid;
		page-break-inside: avoid;
	}
	.adesao-conclusao-card-title {
		font-size: 1rem !important;
		color: #111 !important;
	}
	.adesao-resumo-tabela {
		width: 100%;
		border-collapse: collapse;
	}
	.adesao-resumo-tabela th,
	.adesao-resumo-tabela td {
		border: 1px solid #bbb;
		padding: 0.35rem 0.5rem;
		font-size: 0.85rem;
	}
}

/* Modal renovação / rematrícula */
.adesao-renovacao-modal {
	border: 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(20, 46, 87, 0.22);
}
.adesao-renovacao {
	padding: 1.35rem 1.4rem 1.25rem;
}
.adesao-renovacao-header {
	margin-bottom: 1.1rem;
}
.adesao-renovacao-eyebrow {
	margin: 0 0 0.2rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--adesao-brand, #0b57bd);
}
.adesao-renovacao-title {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 750;
	color: #15233a;
	line-height: 1.3;
}
.adesao-renovacao-lead {
	margin: 0.4rem 0 0;
	color: #5b6b82;
	font-size: 0.95rem;
}
.adesao-renovacao-socio {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	background: #f5f8fc;
	border: 1px solid #e2eaf4;
	margin-bottom: 1rem;
}
.adesao-renovacao-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	overflow: hidden;
	flex: 0 0 auto;
	border: 2px solid #d6e5ff;
	background: #fff;
}
.adesao-renovacao-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.adesao-renovacao-nome {
	margin: 0 0 0.4rem;
	font-size: 1.02rem;
	font-weight: 700;
	color: #15233a;
}
.adesao-renovacao-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}
.adesao-renovacao-aviso {
	padding: 0.95rem 1rem;
	border-radius: 12px;
	background: #f7f9fc;
	border: 1px solid #dbe6f3;
	margin-bottom: 1rem;
}
.adesao-renovacao-aviso > p {
	margin: 0;
	color: #3d4f68;
	font-size: 0.92rem;
	line-height: 1.45;
}
.adesao-renovacao-aviso .form-label {
	margin-top: 0.65rem;
	margin-bottom: 0.35rem;
	font-weight: 650;
	color: #23456f;
}
.adesao-renovacao-aviso .form-select {
	border-radius: 10px;
	border-color: #c9d7ea;
	min-height: 44px;
}
.adesao-renovacao-aviso .form-select:focus {
	border-color: var(--adesao-brand, #0b57bd);
	box-shadow: 0 0 0 0.2rem rgba(11, 87, 189, 0.15);
}
.adesao-renovacao-acoes {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0.55rem;
	padding-top: 0.15rem;
}
.adesao-renovacao-acoes .btn {
	min-height: 42px;
	border-radius: 10px;
	font-weight: 650;
}
.adesao-renovacao-vazio {
	padding: 1.25rem 1.35rem;
	border-radius: 12px;
	background: #f7f9fc;
	border: 1px solid #dbe6f3;
	color: #3d4f68;
}
