        :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;

            /* Cores para os ícones das categorias */
            --category-icon-portal: #2196F3; /* Azul vibrante */
            --category-icon-inscricoes: #FFC107; /* Amarelo/Dourado */
            --category-icon-cursos: #4CAF50; /* Verde */
            --category-icon-apoio: #9C27B0; /* Roxo */
        }

        * {
            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);
        }
		
        /* --- Header/Hero Section --- */
        .hero-section {
            background: linear-gradient(rgba(15, 63, 109, 0.9), rgba(15, 63, 109, 0.7)), url('https://source.unsplash.com/random/1920x400/?abstract,tech,network,data') 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);
        }

        .hero-section h1 {
            font-family: "museo-sans", sans-serif;
            font-size: 3.2rem;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-section p {
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .search-bar {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .search-bar input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            color: var(--stj-gray-text);
            background-color: var(--stj-white);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .search-bar input:focus {
            outline: none;
            box-shadow: var(--shadow-lg);
            padding-left: 55px;
        }

        .search-bar i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--stj-light-gray-text);
            font-size: 1.2rem;
        }

        /* --- Main Content --- */
        .main-content {
            padding: 60px;
        }

        .section-title {
            text-align: center;
            font-family: "museo-sans", sans-serif;
            font-size: 2.2rem;
            color: var(--stj-blue-dark);
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -10px;
            width: 60px;
            height: 4px;
            background-color: var(--stj-gold);
            border-radius: 2px;
        }

        /* --- Category Navigation --- */
        .category-navigation {
            margin-bottom: 60px;
        }

        .category-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            justify-content: center;
        }

        .category-card {
            background-color: var(--stj-white);
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            padding: 30px;
            text-align: center;
            text-decoration: none;
            color: var(--stj-gray-text);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            background-color: var(--stj-light-bg);
        }

        .category-card .icon-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
            font-size: 2.5rem;
            color: var(--stj-white);
            box-shadow: var(--shadow-md);
        }

        /* Specific icon colors */
        .category-card.portal .icon-wrapper { background-color: var(--category-icon-portal); }
        .category-card.inscricoes .icon-wrapper { background-color: var(--category-icon-inscricoes); }
        .category-card.cursos .icon-wrapper { background-color: var(--category-icon-cursos); }
        .category-card.apoio .icon-wrapper { background-color: var(--category-icon-apoio); }

        .category-card h3 {
            font-family: "museo-sans", sans-serif;
            font-size: 1.3rem;
            margin: 0;
            color: var(--stj-blue-dark);
        }

        /* --- FAQ Content Area --- */
        .faq-section {
            margin-bottom: 50px;
        }

        .faq-section h2 {
            font-family: "museo-sans", sans-serif;
            font-size: 2rem;
            color: var(--stj-blue-dark);
            margin-bottom: 30px;
            text-align: left;
        }

        .accordion-item {
            background-color: var(--stj-white);
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            margin-bottom: 15px;
            overflow: hidden;
        }

        .accordion-header {
            width: 100%;
            padding: 20px 25px;
            background-color: var(--stj-white);
            border: none;
            text-align: left;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--stj-blue-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .accordion-header:hover {
            background-color: var(--stj-light-bg);
        }

        .accordion-header i {
            font-size: 1.2rem;
            color: var(--stj-gold);
            transition: transform 0.3s ease;
        }

        .accordion-header[aria-expanded="true"] i {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            background-color: var(--stj-light-bg);
            padding: 0 25px;
        }

        .accordion-content p {
            padding: 15px 0;
            font-size: 1rem;
            color: var(--stj-light-gray-text);
        }

        .accordion-content[aria-hidden="false"] {
            max-height: 500px; /* Ajuste conforme o conteúdo máximo esperado */
            padding-bottom: 15px;
        }

        .feedback {
			visibility: hidden;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--stj-light-gray-text);
            padding: 10px 0;
            border-top: 1px solid rgba(0,0,0,0.05);
        }
        .feedback button {
            background: none;
            border: 1px solid var(--stj-light-gray-text);
            color: var(--stj-light-gray-text);
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .feedback button:hover {
            background-color: var(--stj-blue-dark);
            color: var(--stj-white);
            border-color: var(--stj-blue-dark);
        }
        .feedback button i {
            margin-right: 5px;
        }

        /* --- Back to Top Button --- */
        .back-to-top {
            display: block;
            text-align: center;
            margin-top: 30px;
            margin-bottom: 50px;
            color: var(--stj-blue-dark);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            font-size: 0.95rem;
        }
        .back-to-top:hover {
            color: var(--stj-gold);
            text-decoration: underline;
        }

        /* --- Call to Action (CTA) --- */
        .no-answer-cta {
            background-color: var(--stj-blue-dark);
            color: var(--stj-white);
            padding: 50px 20px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            margin: -60px 0 60px 0;
        }

        .no-answer-cta h2 {
            color: var(--stj-gold);
            margin-bottom: 20px;
            font-size: 2.5rem;
        }

        .no-answer-cta p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .cta-buttons a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .cta-buttons .btn-primary {
            background-color: var(--stj-gold);
            color: var(--stj-blue-dark);
        }

        .cta-buttons .btn-primary:hover {
            background-color: #f0c340;
            transform: translateY(-3px);
        }
		
		
		/* COPIAR INÍCIO */
		.footer {
            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 {
            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-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);
        }
		
		/* COPIAR FIM */

        /* --- Responsividade --- */
        @media (max-width: 992px) {
            .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;
            }
        }
        /* --- Footer (Simplified) --- */
        footer {
            text-align: center;
            padding: 40px 0;
            border-top: 1px solid rgba(0,0,0,0.1);
            background-color: var(--stj-blue-dark);
        }
        .footer-contact-button {
            background-color: var(--stj-gold);
            color: var(--stj-blue-dark);
            padding: 15px 30px;
            border: none;
            border-radius: 8px; /* Ajustado para 8px para consistência */
            cursor: pointer;
            font-size: 1.1em;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.3s;
            font-weight: bold;
            display: inline-flex; /* Para alinhar ícone e texto */
            align-items: center;
            gap: 10px;
        }
        .footer-contact-button:hover {
            background-color: #f0c340;
            transform: translateY(-3px);
        }


        /* --- Responsividade --- */
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section p {
                font-size: 1rem;
            }
            .search-bar input {
                font-size: 1rem;
                padding: 12px 15px 12px 45px;
            }
            .search-bar i {
                left: 15px;
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .category-cards {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            }
            .category-card .icon-wrapper {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
            .category-card h3 {
                font-size: 1.1rem;
            }
            .faq-section h2 {
                font-size: 1.8rem;
            }
            .accordion-header {
                font-size: 1.05rem;
                padding: 15px 20px;
            }
            .accordion-content p {
                font-size: 0.95rem;
            }
            .no-answer-cta h2 {
                font-size: 2rem;
            }
            .no-answer-cta p {
                font-size: 1rem;
            }
            .cta-buttons a {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .category-cards {
                grid-template-columns: 1fr; /* Stack on small screens */
            }
            .cta-buttons {
                flex-direction: column;
            }
            .cta-buttons a {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 50px 15px;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            .hero-section p {
                font-size: 0.9rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .faq-section h2 {
                font-size: 1.5rem;
            }
            .accordion-header {
                font-size: 1rem;
                padding: 12px 15px;
            }
            .accordion-content p {
                font-size: 0.9rem;
            }
            .no-answer-cta {
                padding: 30px 15px;
            }
            .no-answer-cta h2 {
                font-size: 1.8rem;
            }
        }