/* =====================================================
   UNIFOCO
   ===================================================== */

/* --- Layout --- */
#page-wrapper {
	padding-top: 90px;
}

/* --- Navbar --- */
#sidebar {
	position: fixed;
	top: 0; left: 0; right: 0;
	width: 100%;
	height: 90px;
	background: #ffffff;
	z-index: 1200;
	box-shadow: 0 2px 16px rgba(0,0,0,0.10);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	padding: 0 28px;
}
#sidebar .nav-logo-center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	pointer-events: none;
}
#sidebar .nav-logo-center a {
	pointer-events: all;
	border-bottom: none;
}
#sidebar .nav-logo-center img {
	height: 68px;
	width: auto;
	display: block;
}
#sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}
#sidebar ul li { border: none; }
#sidebar ul li a {
	display: inline-block;
	padding: 6px 16px;
	color: rgba(21,32,132,0.75);
	text-decoration: none;
	border-bottom: none;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.06em;
	transition: color 0.2s;
}
#sidebar ul li a:hover {
	color: #152084;
	border-bottom: none;
}

/* --- Footer --- */
#footer-wrapper {
	background: linear-gradient(180deg, #f3f4fb 0%, #eaecf8 100%);
	padding: 3.4em 0 2em;
}
#footer .footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.4em;
	align-items: stretch;
}
#footer .footer-card-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2em;
	align-items: start;
}
#footer .footer-card {
	background: linear-gradient(145deg, #0e1660 0%, #152084 45%, #1a2ba8 100%);
	border-radius: 16px;
	padding: 1.35em 1.25em;
	box-shadow: 0 16px 30px rgba(14,22,96,0.28);
	height: 100%;
}
#footer .footer-card h3 {
	font-size: 1.3em;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 0.8em;
}
#footer .footer-card ul {
	margin: 0; padding: 0;
	list-style: none;
}
#footer .footer-card li {
	margin-bottom: 0.7em;
	color: rgba(255,255,255,0.88);
}
#footer .footer-card li:last-child { margin-bottom: 0; }
#footer .footer-card a {
	color: #9da8ff;
	border-bottom-color: rgba(255,255,255,0.2);
}
#footer .footer-card a:hover { color: #ffffff; }
#footer .footer-card iframe {
	border-radius: 10px;
	margin-top: 0.8em;
}
#footer .footer-card p { margin: 0; color: rgba(255,255,255,0.88); }

/* --- Copyright --- */
#copyright {
	margin-top: 2em;
	padding-top: 1.5em;
	border-top: 1px solid rgba(21,32,132,0.2);
	text-align: center;
}
#copyright ul.menu { margin-bottom: 1em; }
#copyright ul.menu li {
	color: #152084;
	font-weight: 600;
	border-left-color: rgba(21,32,132,0.25);
}
#copyright .brand-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-top: 16px;
	flex-wrap: wrap;
}
#copyright .brand-strip img {
	filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

/* --- Promo Banner --- */
#promo-wrapper {
	background: linear-gradient(135deg, rgba(14,22,96,0.75) 0%, rgba(26,43,168,0.75) 100%), url('../../images/promo.jpg') center/cover no-repeat;
	padding: 2.8em 0;
	margin-top: 20px;
	display: flex;
	align-items: center;
}
#promo {
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#promo h2 {
	font-weight: 800;
	font-size: 2.2em;
	color: #fff;
	margin-bottom: 1em;
	line-height: 1.3;
}
#promo .button {
	display: inline-block;
	padding: 0.85em 2.2em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: 8px;
}

/* --- Responsive --- */
@media screen and (max-width: 736px) {
	#promo-wrapper { padding: 2em 0; }
	#promo h2 { font-size: 1.6em; }
	#footer-wrapper { padding: 2.4em 0 1.5em; }
	#footer .footer-grid { grid-template-columns: 1fr; gap: 1em; }
	#footer .footer-card { padding: 1.1em 1em; }
	#sidebar { padding: 0 14px; }
	#sidebar ul { gap: 6px; }
	#sidebar ul li a { padding: 6px 12px; font-size: 11px; }
}
