        :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: "museo-sans", sans-serif;
            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;
        }

        /* --- Header (COPIAR) --- */
        .header {
            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);
        }

        /* --- Main Sections Styling (Reused) --- */
        main {
            padding: 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-family: "museo-sans", sans-serif;
            font-size: 2.5rem;
            color: var(--stj-blue-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -10px;
            width: 60px;
            height: 4px;
            background-color: var(--stj-gold);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--stj-light-gray-text);
            max-width: 700px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .btn-primary {
            background-color: var(--stj-gold);
            color: var(--stj-blue-dark);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            background-color: #f0c340;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* --- Internal Page Specific Styles --- */
        .internal-hero {
            background: linear-gradient(rgba(15, 63, 109, 0.9), rgba(15, 63, 109, 0.7)), url('https://source.unsplash.com/random/1920x400/?community,education,justice,people') center center / cover no-repeat;
            color: var(--stj-white);
            text-align: center;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
            border-bottom: 5px solid var(--stj-gold);
        }

        .internal-hero h1 {
            font-family: "museo-sans", sans-serif;
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .internal-hero p {
            font-size: 1.1rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        .content-section {
            padding: 40px;
        }

        .content-section p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--stj-gray-text);
        }

        .content-section h3 {
            font-family: "museo-sans", sans-serif;
            font-size: 1.8rem;
            color: var(--stj-blue-dark);
            margin-bottom: 25px;
            text-align: center;
        }

        .award-highlight {
            background-color: var(--stj-green-sober);
            color: var(--stj-white);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            margin: 40px auto;
            max-width: 800px;
            box-shadow: var(--shadow-md);
        }
        .award-highlight i {
            font-size: 3rem;
            color: var(--stj-gold);
            margin-bottom: 15px;
        }
        .award-highlight p {
            font-size: 1.2rem;
            font-weight: 500;
            line-height: 1.5;
            margin: 0;
            color: var(--stj-white);
        }
        .award-highlight a {
            color: var(--stj-gold);
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .info-card {
            background-color: var(--stj-white);
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            padding: 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-bottom: 4px solid var(--stj-blue-dark);
        }
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .info-card i {
            font-size: 3.5rem;
            color: var(--stj-gold);
            margin-bottom: 20px;
        }

        .info-card h4 {
            font-family: "museo-sans", sans-serif;
            font-size: 1.3rem;
            color: var(--stj-blue-dark);
            margin-bottom: 10px;
        }

        .info-card p {
            font-size: 0.95rem;
            color: var(--stj-light-gray-text);
            margin: 0;
            line-height: 1.5;
        }
        .info-card p a {
            color: var(--stj-blue-dark);
            font-weight: 600;
            text-decoration: none;
        }
        .info-card p a:hover {
            text-decoration: underline;
        }

        .call-to-action-bottom {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background-color: var(--stj-blue-dark);
            color: var(--stj-white);
            border-radius: 12px;
            box-shadow: var(--shadow-md);
        }
        .call-to-action-bottom h3 {
            font-family: "museo-sans", sans-serif;
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--stj-gold);
        }
        .call-to-action-bottom p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--stj-white);
        }
        .call-to-action-bottom .btn-primary {
            padding: 18px 40px;
            font-size: 1.2rem;
            border-radius: 10px;
        }


        /* --- Footer (Reused) --- */
        .footer {
            background-color: var(--stj-blue-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 40px 0 20px;
            font-size: 0.9rem;
            border-top: 5px solid var(--stj-gold);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer-col {
            flex: 1;
            min-width: 200px;
            max-width: 300px;
        }

        .footer-col h4 {
            font-family: "museo-sans", sans-serif;
            font-size: 1.1rem;
            color: var(--stj-white);
            margin-bottom: 20px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 40px;
            height: 2px;
            background-color: var(--stj-green-sober);
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--stj-gold);
        }

        .social-links a {
            color: var(--stj-white);
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--stj-gold);
        }

        .footer-bottom {
            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) {
            .header-logos {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            .header-logo.cefor {
                margin-left: 26px;
            }
            .user-access-info {
                flex-direction: column;
                align-items: flex-end;
                gap: 5px;
            }
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .internal-hero h1 {
                font-size: 2.2rem;
            }
            .internal-hero p {
                font-size: 1rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-col {
                max-width: 100%;
            }
            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .social-links {
                margin-top: 20px;
            }

            .call-to-action-bottom h3 {
                font-size: 1.5rem;
            }
            .call-to-action-bottom p {
                font-size: 1rem;
            }
            .call-to-action-bottom .btn-primary {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .internal-hero {
                padding: 60px 15px;
            }
            .internal-hero h1 {
                font-size: 1.8rem;
            }
            .internal-hero p {
                font-size: 0.9rem;
            }
            .content-section p {
                font-size: 0.95rem;
            }
            .award-highlight p {
                font-size: 1rem;
            }
            .info-card h4 {
                font-size: 1.1rem;
            }
            .info-card p {
                font-size: 0.85rem;
            }
        }