
html body {
	margin: 0;
	font-family: Arial, sans-serif;
}

.site-footer {
	background: #dedbdb;
	box-shadow: inset 0 3px #c9bab2;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	min-height: 110px;
	padding: 20px 10px 40px 10px;
	display: flex;
	align-items: center;
	gap: 60px;
	position: relative;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 120px;
}

.footer-logo {
	height: 200px;
	width: 300px;
	display: block;
    overflow: hidden;
}

.footer-logo img {
	height: 100%;
	width: 100%;
	object-fit: cover;
    object-position: center;
}

.footer-name {
	font-size: 28px;
	line-height: 1;
	color: #151515;
}

.footer-subtitle {
	font-size: 12px;
	color: rgba(0, 0, 0, 0.65);
	margin-top: 2px;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.footer-title {
	font-size: 18px;
	color: #151515;
	margin-bottom: 8px;
}

.footer-item,
.footer-link {
	font-size: 15px;
	color: rgba(0, 0, 0, 0.75);
	text-decoration: none;
	line-height: 1.6;
	-webkit-tap-highlight-color: transparent;
}

.footer-link:hover {
	opacity: 0.75;
}

.footer-social {
	min-width: 200px;
}

.social-icons {
	display: flex;
	align-items: center;
    
	gap: 10px;
}

.social {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #1f1f1f;
	border-radius: 4px;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.social svg {
	width: 16px;
	height: 16px;
	fill: #ffffff;
}

.footer-top {
	margin-left: auto;
	align-self: flex-start;
	padding-top: 4px;
}

.footer-credits {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	font-size: 12px;
	color: rgba(0, 0, 0, 0.65);
	white-space: nowrap;
}

.to-top {
	font-size: 12px;
	color: rgba(0, 0, 0, 0.75);
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.to-top:hover {
	opacity: 0.75;
}

/* Foco sem "azul" */
.site-footer a:focus,
.site-footer a:active {
	outline: none;
}

.site-footer a:focus-visible {
	outline: 2px solid rgba(0, 0, 0, 0.35);
	outline-offset: 3px;
}

@media (max-width: 860px) {
	.footer-inner {
		flex-wrap: wrap;
		gap: 24px;
	}

	/* Mobile: centraliza a logo do footer */
	.footer-brand {
		width: 100%;
		justify-content: center;
	}

	.footer-logo {
		margin: 0 auto;
	}

	.footer-top {
		width: 100%;
		margin-left: 0;
		align-self: auto;
		padding-top: 0;
		text-align: right;
	}

	.footer-credits {
		position: static;
		transform: none;
		width: 100%;
		text-align: center;
		margin-top: 8px;
		white-space: normal;
	}
}
