/**
 * StepDecor Footer
 * Consumed by StepDecorCore\Widgets\HeaderFooter\Site_Footer::render().
 */

.sd-footer {
	background: #080808;
	padding: 4rem 5% 2rem;
}

.sd-footer__grid {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr 1fr;
	gap: 4rem;
	margin-bottom: 3rem;
	max-width: var(--sd-container-width);
	margin-inline: auto;
}

.sd-footer__brand p {
	color: rgba(255, 255, 255, .35);
	font-size: .82rem;
	line-height: 1.85;
	margin-top: .9rem;
}

.sd-footer__social {
	display: flex;
	gap: .6rem;
	margin-top: 1.4rem;
}

.sd-footer__social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .45);
	font-size: .8rem;
	transition: all var(--sd-transition-fast);
}

.sd-footer__social a:hover {
	background: var(--sd-color-accent);
	color: #fff;
}

.sd-footer__col h4 {
	color: rgba(255, 255, 255, .85);
	font-size: .72rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 1.2rem;
}

.sd-footer__col ul li {
	margin-bottom: .55rem;
}

.sd-footer__col ul li a {
	color: rgba(255, 255, 255, .35);
	font-size: .82rem;
	transition: color var(--sd-transition-fast);
}

.sd-footer__col ul li a:hover {
	color: var(--sd-color-accent);
}

.sd-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .05);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	max-width: var(--sd-container-width);
	margin-inline: auto;
}

.sd-footer__bottom p {
	color: rgba(255, 255, 255, .2);
	font-size: .76rem;
}

.sd-whatsapp-btn {
	position: fixed;
	bottom: 2rem;
	right: 1.5rem;
	z-index: var(--sd-z-sticky-cta);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 32px rgba(37, 211, 102, .4);
	transition: transform var(--sd-transition-fast);
}

.sd-whatsapp-btn:hover {
	transform: scale(1.1);
}

@media (max-width: 1100px) {
	.sd-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 680px) {
	.sd-footer__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}
