/* TudoCálculo footer — tools-site pattern */

.tc-footer {
	margin-top: 4rem;
	background:
		radial-gradient(1200px 280px at 10% -10%, rgba(13, 148, 136, 0.12), transparent 60%),
		linear-gradient(180deg, #0b1724 0%, #0f1f2e 100%);
	color: #d7e2ec;
	font-family: var(--tc-font, "Manrope", system-ui, sans-serif);
}

.tc-footer a {
	color: #e8f1f7;
	text-decoration: none;
	transition: color 0.15s ease;
}

.tc-footer a:hover {
	color: #5eead4;
}

.tc-footer__main {
	max-width: 1180px;
	margin: 0 auto;
	padding: 3.25rem 1.25rem 2.5rem;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 2rem 1.75rem;
}

.tc-footer__brand .tc-brand__name {
	color: #fff;
	font-size: 1.4rem;
}

.tc-footer__brand .tc-brand__name span {
	color: #2dd4bf;
}

.tc-brand--footer {
	margin-bottom: 1rem;
}

.tc-footer__about {
	margin: 0 0 1rem;
	max-width: 32ch;
	line-height: 1.55;
	color: #9db0c2;
	font-size: 0.95rem;
}

.tc-footer__email {
	display: inline-block;
	font-size: 0.92rem;
	font-weight: 650;
	color: #5eead4 !important;
}

.tc-footer__heading {
	margin: 0 0 0.9rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7f95a8;
}

.tc-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tc-footer__list li + li {
	margin-top: 0.55rem;
}

.tc-footer__list a {
	font-size: 0.95rem;
	font-weight: 600;
}

.tc-footer__note {
	margin: 1.1rem 0 0;
	font-size: 0.82rem;
	line-height: 1.5;
	color: #7f95a8;
}

.tc-footer__bar {
	max-width: 1180px;
	margin: 0 auto;
	padding: 1.1rem 1.25rem 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.55rem 1.25rem;
}

.tc-footer__copy,
.tc-footer__made {
	margin: 0;
	font-size: 0.82rem;
	color: #7f95a8;
}

@media (max-width: 920px) {
	.tc-footer__main {
		grid-template-columns: 1fr 1fr;
		padding-top: 2.5rem;
	}

	.tc-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.tc-footer__main {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.tc-footer__bar {
		flex-direction: column;
	}
}
