        :root {
            --stj-blue-dark: #004164;
            --stj-gold: #F5AF00;
            --stj-green-sober: #577F70;
            --stj-light-bg: #F1F2F3;
            --stj-gray-text: #323F4B;
            --stj-light-gray-text: #52606D;
            --stj-white: #FFFFFF;
            --shadow-md: rgba(0, 0, 0, 0.1) 0px 4px 12px;
            --shadow-lg: rgba(0, 0, 0, 0.15) 0px 8px 24px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
			margin: 0;
            line-height: 1.6;
            color: var(--stj-gray-text);
            background-color: var(--stj-light-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            font-family: museo-sans, sans-serif;
        }

        /* --- Header --- */
        .header-stj {
            background-color: white;
            color: var(--stj-white);
            padding: 10px 0;
            box-shadow: var(--shadow-md);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-logos {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .header-logo {
            font-family: "museo-sans", sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--stj-white);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .header-logo i {
            margin-right: 8px;
            color: var(--stj-gold);
            font-size: 1.8rem;
        }
        .header-logo.cefor {
            font-size: 1.2rem;
            opacity: 0.8;
        }

        .user-access-info {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--stj-white);
            font-size: 0.95rem;
        }

        .user-access-info .btn-access {
            background-color: var(--stj-blue-dark);
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .user-access-info .btn-access:hover {
            background-color: var(--stj-gold);
			color: var(--stj-blue-dark);
			text-decoration: underline;
            transform: translateY(-2px);
        }
		
		/* --- Footer --- */
        .footer-ia {
            background-color: var(--stj-blue-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 40px 20px 20px;
            font-size: 0.9rem;
            border-top: 5px solid var(--stj-gold);
        }

        .footer-content-ia {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer-col-ia {
            flex: 1;
            min-width: 200px;
            max-width: 300px;
        }

        .footer-col-ia p {
			line-height: 1.4rem;
        }

        .footer-col-ia h4 {
            font-size: 1.1rem;
			font-weight: 700;
            color: var(--stj-white);
            margin-bottom: 20px;
            position: relative;
        }

        .footer-col-ia h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 40px;
            height: 2px;
            background-color: var(--stj-green-sober);
        }

        .footer-col-ia ul {
            list-style: none;
            padding: 0;
        }

        .footer-col-ia ul li {
            margin-bottom: 10px;
        }

        .footer-col-ia ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-col-ia ul li a:hover {
            color: var(--stj-gold);
        }

        .social-links-ia a {
            color: var(--stj-white);
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-links-ia a:hover {
            color: var(--stj-gold);
        }

        .footer-bottom-ia {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }

        /* --- Responsividade --- */
        @media (max-width: 992px) {
            .footer-content-ia {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-col-ia {
                max-width: 100%;
            }
            .footer-col-ia h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .social-links-ia {
                margin-top: 20px;
            }
        }