/* ==========================================
   SITE FOOTER
========================================== */

.site-footer {
	background: #171e29;
	color: rgba(255, 255, 255, 0.78);
}

.site-footer__main {
	padding: 76px 24px 64px;
}

.site-footer__container {
	width: min(100%, 1240px);
	margin-inline: auto;

	display: grid;
	grid-template-columns:
		minmax(0, 1.15fr)
		minmax(150px, 0.8fr)
		minmax(180px, 0.9fr)
		minmax(230px, 1fr);

	gap: clamp(42px, 6vw, 82px);
}

/* ==========================================
   BRAND
========================================== */

.site-footer__logo {
	display: inline-block;
	margin-bottom: 22px;

	color: var(--color-gold);

	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.site-footer__about {
	max-width: 300px;
	margin: 0;

	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
	line-height: 1.7;
}

/* ==========================================
   HEADINGS
========================================== */

.site-footer__heading {
	margin: 0 0 24px;

	color: var(--color-gold);

	font-family: var(--font-heading);
	font-size: 1.18rem;
	font-weight: 600;
	line-height: 1.2;
}

/* ==========================================
   LINKS
========================================== */

.site-footer__links,
.site-footer__contact {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__links {
	display: grid;
	gap: 13px;
}

.site-footer__links a {
	display: inline-flex;
	align-items: center;
	gap: 8px;

	color: rgba(255, 255, 255, 0.78);
	font-size: 0.84rem;
	line-height: 1.5;
	text-decoration: none;

	transition:
		color 180ms ease,
		transform 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
	color: var(--color-gold);
	transform: translateX(5px);
}

.site-footer__platforms a span {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9rem;
}

/* ==========================================
   CONTACT
========================================== */

.site-footer__contact {
	display: grid;
	gap: 15px;
}

.site-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;

	color: rgba(255, 255, 255, 0.78);
	font-size: 0.84rem;
	line-height: 1.5;
}

.site-footer__contact svg {
	flex: 0 0 auto;

	width: 17px;
	height: 17px;
	margin-top: 2px;

	fill: none;
	stroke: var(--color-gold);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-footer__contact a {
	color: inherit;
	text-decoration: none;

	transition: color 180ms ease;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
	color: var(--color-gold);
}

/* ==========================================
   FOOTER BOTTOM
========================================== */

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
	width: min(100% - 48px, 1240px);
	min-height: 68px;
	margin-inline: auto;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-footer__bottom p,
.site-footer__bottom a {
	margin: 0;

	color: rgba(255, 255, 255, 0.58);
	font-size: 0.76rem;
	line-height: 1.5;
}

.site-footer__bottom a {
	text-decoration: none;
	transition: color 180ms ease;
}

.site-footer__bottom a:hover {
	color: var(--color-gold);
}

/* ==========================================
   FLOATING CONTACT BUTTONS
========================================== */

.prime-floating-contact {
	position: fixed;
	right: 20px;
	bottom: 18px;
	z-index: 9000;

	display: flex;
	flex-direction: column;
	gap: 11px;
}

.prime-floating-contact__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 56px;
	height: 56px;

	border-radius: 50%;

	box-shadow:
		0 8px 24px rgba(0, 0, 0, 0.24);

	text-decoration: none;

	transition:
		transform 180ms ease,
		box-shadow 180ms ease;
}

.prime-floating-contact__button:hover,
.prime-floating-contact__button:focus-visible {
	transform: translateY(-3px) scale(1.04);

	box-shadow:
		0 12px 30px rgba(0, 0, 0, 0.3);
}

.prime-floating-contact__button--whatsapp {
	background: #1fd46b;
	color: #ffffff;
}

.prime-floating-contact__button--phone {
	background: #f6a000;
	color: #101720;
}

.prime-floating-contact__button svg {
	width: 25px;
	height: 25px;

	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 980px) {

	.site-footer__container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 48px;
	}
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

	.site-footer__main {
		padding: 58px 20px 48px;
	}

	.site-footer__container {
		display: grid;
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.site-footer__about {
		max-width: 360px;
	}

	.site-footer__heading {
		margin-bottom: 18px;
	}

	.site-footer__bottom-inner {
		width: min(100% - 40px, 1240px);
		padding: 18px 0;

		flex-direction: column;
		align-items: flex-start;
		gap: 7px;
	}

	.prime-floating-contact {
		right: 14px;
		bottom: 14px;
		gap: 9px;
	}

	.prime-floating-contact__button {
		width: 50px;
		height: 50px;
	}

	.prime-floating-contact__button svg {
		width: 22px;
		height: 22px;
	}
}