.ccunt-complemento {
	--ccunt-primary: #1d5b78;
	--ccunt-primary-dark: #143f54;
	--ccunt-soft: #eef5f8;
	--ccunt-border: #d7e2e7;
	--ccunt-text: #24323a;
	--ccunt-muted: #61717a;
	box-sizing: border-box;
	width: min(100%, 720px);
	margin: 2rem auto;
	overflow: hidden;
	color: var(--ccunt-text);
	background: #fff;
	border: 1px solid var(--ccunt-border);
	border-radius: 18px;
	box-shadow: 0 12px 36px rgba(20, 63, 84, 0.1);
}

.ccunt-complemento *,
.ccunt-complemento *::before,
.ccunt-complemento *::after {
	box-sizing: border-box;
}

.ccunt-complemento__header {
	padding: 2rem 2rem 1.5rem;
	background: linear-gradient(135deg, var(--ccunt-primary-dark), var(--ccunt-primary));
	color: #fff;
}

.ccunt-complemento__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.82;
}

.ccunt-complemento__header h2 {
	margin: 0;
	color: inherit;
	font-size: clamp(1.8rem, 5vw, 2.35rem);
	line-height: 1.1;
}

.ccunt-complemento__name {
	margin: 0.75rem 0 0;
	font-size: 1rem;
	font-weight: 600;
}

.ccunt-complemento__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: var(--ccunt-border);
	border-bottom: 1px solid var(--ccunt-border);
}

.ccunt-complemento__meta > div {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 1.1rem 2rem;
	background: var(--ccunt-soft);
}

.ccunt-complemento__meta span,
.ccunt-complemento__primary span,
.ccunt-complemento__line span,
.ccunt-complemento__total span {
	color: var(--ccunt-muted);
	font-size: 0.82rem;
	font-weight: 600;
}

.ccunt-complemento__amounts {
	padding: 1.75rem 2rem 1.25rem;
}

.ccunt-complemento__primary {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-bottom: 1.35rem;
}

.ccunt-complemento__primary strong {
	color: var(--ccunt-primary-dark);
	font-size: clamp(2rem, 7vw, 3rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
}

.ccunt-complemento__line,
.ccunt-complemento__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	border-top: 1px solid var(--ccunt-border);
}

.ccunt-complemento__line strong {
	font-size: 1.08rem;
}

.ccunt-complemento__total {
	margin-top: 0.25rem;
	padding: 1rem;
	background: var(--ccunt-soft);
	border: 0;
	border-radius: 10px;
}

.ccunt-complemento__total span,
.ccunt-complemento__total strong {
	color: var(--ccunt-primary-dark);
	font-size: 1.08rem;
}

.ccunt-complemento__note {
	margin: 0;
	padding: 0 2rem 1.75rem;
	color: var(--ccunt-muted);
	font-size: 0.82rem;
}

.ccunt-complemento--message {
	padding: 2rem;
	text-align: center;
}

.ccunt-complemento--message h2 {
	margin: 0.85rem 0 0.5rem;
	color: var(--ccunt-primary-dark);
}

.ccunt-complemento--message p {
	max-width: 540px;
	margin: 0 auto;
	color: var(--ccunt-muted);
}

.ccunt-complemento__icon {
	display: grid;
	width: 42px;
	height: 42px;
	margin: 0 auto;
	place-items: center;
	color: #fff;
	background: var(--ccunt-primary);
	border-radius: 50%;
	font-family: Georgia, serif;
	font-size: 1.25rem;
	font-weight: 700;
}

.ccunt-complemento__button {
	display: inline-flex;
	margin-top: 1.25rem;
	padding: 0.75rem 1.25rem;
	color: #fff !important;
	background: var(--ccunt-primary);
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none !important;
}

.ccunt-complemento__button:hover,
.ccunt-complemento__button:focus {
	background: var(--ccunt-primary-dark);
}

@media (max-width: 560px) {
	.ccunt-complemento {
		border-radius: 12px;
	}

	.ccunt-complemento__header,
	.ccunt-complemento__amounts,
	.ccunt-complemento--message {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.ccunt-complemento__meta {
		grid-template-columns: 1fr;
	}

	.ccunt-complemento__meta > div {
		padding: 0.9rem 1.25rem;
	}

	.ccunt-complemento__note {
		padding-right: 1.25rem;
		padding-left: 1.25rem;
	}
}

