@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.footer {
	background-color: #27284f;
	background-image: url('/wp-content/themes/Transparencia_Dev/assets/fundo-header.png');
	background-size: cover;
	background-position: center;
	color: white;
	font-family: 'Rubik', sans-serif;
	padding: 60px 20px 30px;
	max-width: 100%;
}

/* ===== CONTAINER PRINCIPAL ===== */
.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	flex-wrap: nowrap;
	flex-direction: row;
	align-items: center;
	text-align: left;
}

/* ===== BLOCO ESQUERDO ===== */
.footer-esquerda {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 30px;
}

.logo-esquerda img,
.logo-direita img {
	max-height: 80px;
	width: auto;
}

.info-footer {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	text-align: left;
	max-width: 320px;
	align-items: flex-start;
}

.linha-divisoria {
	display: block;
	width: 1px;
	height: 120px;
	background-color: rgba(255, 255, 255, 0.3);
	margin: 0;
}

/* ===== BLOCO DIREITO ===== */
.footer-direita {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	text-align: center;
}

/* ===== REDES SOCIAIS ===== */
#footer-redes-sociais {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	text-align: center;
}

.footer--title--redes {
	color: white;
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 8px;
}

.footer--lista--sociais {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 0;
	margin: 0;
}

.footer--lista--sociais li {
	transition: transform 150ms ease-in-out, opacity 150ms ease-in-out;
}

.footer--lista--sociais li:hover {
	transform: scale(1.1);
}

.footer--lista--sociais li a {
	color: white;
	font-size: 1.5rem;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer--lista--sociais li a:hover {
	color: #fff;
}

/* ===== COPYRIGHT ===== */
.footer-copy {
	text-align: center;
	margin-top: 40px;
	font-size: 10px;
	font-weight: 300;
	color: white;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}

	.footer-esquerda {
		flex-direction: column;
		gap: 20px;
	}

	.footer-direita {
		margin-top: 20px;
	}

	#footer-redes-sociais {
		margin-top: 15px;
	}

	.footer--lista--sociais {
		gap: 12px;
	}

	.footer--title--redes {
		font-size: 0.9rem;
	}
}
