.cg-b-footer {
	--cg-b-border: rgba(255,255,255, 0.15);
	--cg-b-gap: 30px;
	padding: 40px 0;
	display: block;
	width: 100%;
	background-color: var(--cg-bg, transparent);
	color: var(--cg-color, inherit);
}
.cg-b-footer__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
}
.cg-b-footer__top, .cg-b-footer__bottom {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: var(--cg-b-gap);
	width: 100%;
}
.cg-b-footer__top {
	margin-bottom: 30px;
}
.cg-b-footer__links {
	display: flex; 
	flex-direction: row;
	justify-content: space-between;
	gap: var(--cg-b-gap);
	margin: 40px 0;
	padding: 40px 0;
	border-top: 1px solid var(--cg-b-border);
	border-bottom: 1px solid var(--cg-b-border);
	width: 100%;
}
.cg-b-footer__col {
	flex: 1;
	min-width: 200px;
	display: flex;
	flex-direction: column;
}
.cg-b-footer__col h4 {
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 700;
	align-self: flex-start;
	color: inherit;
}
.cg-b-footer__col ul, 
.cg-b-footer__col div > ul,
.cg-b-footer__col nav > ul {
	list-style: none; 
	padding: 0; 
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.cg-b-footer__col li {
	margin: 0;
	padding: 0;
}
.cg-b-footer__col a {
	text-decoration: none; 
	opacity: 0.8;
	transition: opacity 0.2s;
	color: var(--cg-link, inherit);
}
.cg-b-footer__col a:hover {
	opacity: 1;
	color: var(--cg-link-hover, inherit);
}

/* ---- Ícones sociais — container com borda, exato como o original ---- */
.cg-b-footer__social {
	display: flex; 
	flex-direction: row;
	gap: 10px; 
	margin-bottom: 20px;
}
.cg-b-footer__social a.ico {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 6px;
	opacity: 0.75;
	transition: opacity 0.2s, border-color 0.2s;
	color: inherit;
	text-decoration: none;
}
.cg-b-footer__social a.ico:hover {
	opacity: 1;
	border-color: rgba(255,255,255,0.7);
}

/* ---- Botões CTAs — pill style como o original ---- */
.cg-b-btn {
	padding: 10px 22px; 
	border-radius: 50px;
	text-decoration: none;
	display: inline-flex; 
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	transition: opacity 0.2s;
}
.cg-b-btn--solid { 
	background: var(--cg-btn-solid-bg, #000);
	color: var(--cg-btn-solid-color, #FFF);
}
.cg-b-btn--ghost { 
	border: 1.5px solid currentColor;
	background: transparent;
	color: var(--cg-btn-ghost, inherit);
}
.cg-b-btn:hover { opacity: 0.85; }

.cg-b-footer__ctas {
	display: flex;
	flex-direction: row;
	gap: 12px;
	align-items: center;
}
.cg-b-footer__brand {
	display: flex;
	flex-direction: column;
}
.cg-b-footer__logo-txt {
	font-size: 24px;
	font-weight: 900;
	color: inherit;
}
.cg-b-footer__tagline {
	margin: 5px 0 0 0;
	font-size: 14px;
	opacity: 0.7;
	color: inherit;
}

/* ---- Rodapé inferior ---- */
.cg-b-footer__bottom {
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	font-size: 13px;
	opacity: 0.7;
	color: inherit;
}
.cg-b-footer__bottom a {
	color: inherit;
	text-decoration: underline;
}
.cg-b-footer__partner::before {
	content: ' · ';
}
.cg-b-footer__contact a {
	color: inherit;
}

@media (max-width: 991px) {
	.cg-b-footer__links, .cg-b-footer__top {
		flex-wrap: wrap;
	}
	.cg-b-footer__bottom {
		align-items: center;
		text-align: center;
	}
}
