/* CSS do Rodapé */
#rodape {
	background: linear-gradient(180deg, #00575e, #053a3e);
	color: rgba(255, 255, 255, 0.92);
}

#rodape .rodape__container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 34px clamp(12px, 20vw, 240px) 18px;
}

#rodape .rodape__top {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	gap: 26px;
	align-items: start;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

#rodape .rodape__brand {
	min-width: 0;
}

#rodape .rodape__logo {
	height: 56px;
	width: auto;
	max-width: 100%;
	display: block;
}

#rodape .rodape__desc {
	margin: 12px 0 0;
	max-width: 56ch;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.86);
}

#rodape .rodape__col {
	display: grid;
	gap: 8px;
	min-width: 0;
}

#rodape .rodape__title {
	margin: 2px 0 6px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.2px;
	color: #ffffff;
}

#rodape .rodape__line {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
}

#rodape .rodape__label {
	font-weight: 800;
	color: rgba(255, 255, 255, 0.92);
}

#rodape .rodape__link {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	word-break: break-word;
}

#rodape .rodape__link:hover,
#rodape .rodape__link:focus {
	text-decoration: underline;
}

#rodape .rodape__whats {
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #ffffff;
	max-width: 360px;
}

#rodape .rodape__whats:hover,
#rodape .rodape__whats:focus {
	border-color: rgba(37, 211, 102, 0.75);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

#rodape .rodape__whatsBadge {
	font-weight: 800;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(37, 211, 102, 0.16);
	border: 1px solid rgba(37, 211, 102, 0.45);
	color: #25D366;
	white-space: nowrap;
}

#rodape .rodape__whatsText {
	font-weight: 700;
	color: rgba(255, 255, 255, 0.92);
}

#rodape .rodape__bottom {
	padding-top: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

#rodape .rodape__copy {
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.82);
}

#rodape .rodape__topLink {
	font-size: 13px;
	font-weight: 800;
	color: #d4af37;
	text-decoration: none;
}

#rodape .rodape__topLink:hover,
#rodape .rodape__topLink:focus {
	text-decoration: underline;
}

#rodape .rodape__link:focus-visible,
#rodape .rodape__topLink:focus-visible,
#rodape .rodape__whats:focus-visible {
	outline: 2px solid #d4af37;
	outline-offset: 3px;
}

@media (max-width: 900px) {
	#rodape .rodape__container {
		padding: 28px 16px 18px;
	}

	#rodape .rodape__top {
		grid-template-columns: 1fr;
	}
}
