/* Component-level footer overrides to match dark anime theme */
#footer-principal {
	background: linear-gradient(180deg, #0b0f12, #050608);
	color: #e6f8ef;
	padding: 4rem 2rem 2rem;
	border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3rem;
}

.footer-col h4 {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	position: relative;
}

.footer-col h4::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--primary, #7c3aed);
}

.brand-col .brand {
	margin-bottom: 1.2rem;
}

.brand-col .brand .title {
	font-size: 1.5rem;
	background: linear-gradient(135deg, #fff, #7c3aed);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-logo {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	margin-right: 0.8rem;
}

.footer-desc {
	color: #9ca3af;
	font-size: 0.95rem;
	line-height: 1.6;
	max-width: 320px;
}

.footer-links,
.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li,
.footer-contact li {
	margin-bottom: 1rem;
}

.footer-links a {
	color: #9ca3af;
	text-decoration: none;
	transition: all 0.2s ease;
	font-size: 0.9rem;
}

.footer-links a:hover {
	color: #7c3aed;
	padding-left: 5px;
}

.footer-contact li {
	color: #9ca3af;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.footer-contact .material-icons {
	font-size: 1.2rem;
	color: #7c3aed;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
	background: #7c3aed;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 2rem 0;
}

.footer-bottom-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.footer-bottom p {
	color: #6b7280;
	font-size: 0.85rem;
}

.legal-links {
	display: flex;
	gap: 2rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.legal-links a {
	color: #6b7280;
	text-decoration: none;
	font-size: 0.85rem;
	transition: color 0.2s;
}

.legal-links a:hover {
	color: #fff;
}

@media (max-width: 992px) {
	.footer-container {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 576px) {
	.footer-container {
		grid-template-columns: 1fr;
	}

	.footer-bottom-container {
		flex-direction: column;
		text-align: center;
	}
}