
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }
        .header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .header img {
            width: 200px;
            height: auto;
            margin-right: 20px;
        }
        .header h1 {
            font-size: 2.5em;
            color: #008638;
        }
        .container {
            width: 90%;
            margin: auto;
            padding-top: 20px;
        }
        .department {
            width: 95%;
            padding: 20px;
            margin: 1.66%;
            text-align: center;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        .department:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .department h3 {
            margin: 0 0 10px;
            font-size: 1.8em;
            color: #008638;
        }
        .links-container {
            display: none;
            text-align: center;
            margin: 20px;
            transition: display 0.3s ease;
        }
        .links-container.active {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .form-link, .flowchart-link {
            width: 45%;
            margin: 10px;
            background: none;
            color: #333;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .form-link:hover, .flowchart-link:hover {
            background: rgba(0, 134, 56, 0.1);
            transform: scale(1.05);
        }
        .form-link button, .flowchart-link button {
            background: none;
            border: none;
            cursor: pointer;
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
        }
        .form-link button img, .flowchart-link button img {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .banner {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            background-color: #008638;
            padding: 10px 20px;
            color: #fff;
            font-size: 1.5em;
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .banner-text {
            position: relative;
            animation: blink-animation 1.5s infinite linear;
        }
        .social-icons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: auto; /* Isso empurrará o resto do conteúdo para a direita */
        }
        .social-icons a {
            margin: 0 10px; /* Ajuste este valor conforme necessário */
        }

        .social-icons a {
            color: #fff;
            font-size: 20px;
        }
        @keyframes blink-animation {
            0% { opacity: 1.0; }
            50% { opacity: 0.0; }
            100% { opacity: 1.0; }
        }
        .denunciar-button {
            margin-left: 20px;
            padding: 10px 20px;
            background-color: #fff;
            color: #008638;
            border: 2px solid #008638;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .denunciar-button:hover {
            background-color: #008638;
            color: #fff;
        }
  
        @media screen and (max-width: 480px) {
            .header {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 20px;
            }
            .header img {
                width: 170px;
                height: auto;
                margin-right: 20px;
            }
            .header h1 {
                font-size: 1.8em;
                color: #008638;
            }
            .container {
                width: 90%;
                margin: auto;
                padding-top: 20px;
            }
            .department {
                width: 85%;
                padding: 20px;
                margin: 1.66%;
                text-align: center;
                background: #fff;
                border-radius: 8px;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                cursor: pointer;
            }
            .department:hover {
                transform: translateY(-5px);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            }
            .department h3 {
                margin: 0 0 10px;
                font-size: 1.6em;
                color: #008638;
            }


            .banner {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                background-color: #008638;
                padding: 10px 20px;
                color: #fff;
                font-size: 0.5em;
                position: relative;
                overflow: hidden;
                margin-bottom: 10px;
            }
            .banner-text {
                position: relative;
                animation: blink-animation 1.5s infinite linear;
            }
            .social-icons {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-right: auto; /* Isso empurrará o resto do conteúdo para a direita */
            }
            .social-icons a {
                margin: 0 10px; /* Ajuste este valor conforme necessário */
            }
    
            .social-icons a {
                color: #fff;
                font-size: 15px;
            }

            .denunciar-button {
                margin-left: 20px;
                padding: 5px 10px;
                background-color: #fff;
                color: #008638;
                border: 2px solid #008638;
                border-radius: 4px;
                cursor: pointer;
                transition: background-color 0.3s ease, color 0.3s ease;
            }
            .denunciar-button:hover {
                background-color: #008638;
                color: #fff;
            }
    }