        .notice-content {
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .notice-content h1 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2rem 0 1rem 0;
            color: #1f2937;
        }

        .notice-content h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.5rem 0 1rem 0;
            color: #1f2937;
        }

        .notice-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 1.25rem 0 0.75rem 0;
            color: #374151;
        }

        .notice-content p {
            margin-bottom: 1.5rem;
            font-size: 3rem;
            color: #4b5563;
        }

        .notice-content ul,
        .notice-content ol {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .notice-content li {
            margin-bottom: 0.5rem;
            color: #4b5563;
        }

        .notice-content blockquote {
            border-left: 4px solid #3b82f6;
            padding-left: 1rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: #6b7280;
            background: #f8fafc;
            padding: 1rem;
            border-radius: 0 8px 8px 0;
        }

        .notice-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .notice-content a {
            color: #3b82f6;
            text-decoration: underline;
            transition: color 0.2s ease;
        }

        .notice-content a:hover {
            color: #2563eb;
        }

        .priority-badge {
            display: inline-flex !important;
            align-items: center !important;
            gap: 0.25rem !important;
            padding: 5px;
            border-radius: 9999px !important;
            font-size: 0.75rem !important;
            font-weight: 600 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.05em !important;
            max-width: fit-content !important;
            white-space: nowrap !important;
        }

        .priority-baixa {
            background: #dcfce7;
            color: #166534;
        }

        .priority-media {
            background: #fef3c7;
            color: #92400e;
        }

        .priority-alta {
            background: #fed7aa;
            color: #c2410c;
        }

        .priority-urgente {
            background: #fee2e2;
            color: #dc2626;
        }

        .category-badge {
            display: inline-block !important;
            padding: 5px;
            border-radius: 9999px !important;
            font-size: 0.75rem !important;
            font-weight: 600 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.05em !important;
            max-width: fit-content !important;
            white-space: nowrap !important;
        }

        .category-geral {
            background: #f3f4f6;
            color: #374151;
        }

        .category-academico {
            background: #dbeafe;
            color: #1e40af;
        }

        .category-disciplinar {
            background: #fce7f3;
            color: #be185d;
        }

        .category-eventos {
            background: #dcfce7;
            color: #166534;
        }

        .category-emergencia {
            background: #fee2e2;
            color: #dc2626;
        }

        .category-manutencao {
            background: #fef3c7;
            color: #92400e;
        }

        .reading-time {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #6b7280;
            font-size: 0.875rem;
        }

        .share-buttons {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .share-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            color: white;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .share-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .share-facebook {
            background: #1877f2;
        }

        .share-twitter {
            background: #1da1f2;
        }

        .share-whatsapp {
            background: #25d366;
        }

        .share-linkedin {
            background: #0077b5;
        }

        /* Estilos para cards de avisos */
        .notice-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            min-height: 400px;
        }

        .notice-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .notice-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .notice-card:hover .notice-card-image {
            transform: scale(1.05);
        }

        .notice-card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .notice-card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .notice-card-subtitle {
            font-size: 1rem;
            color: #64748b;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .notice-card-summary {
            color: #64748b;
            margin-bottom: 1rem;
            line-height: 1.6;
            flex-grow: 1;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .notice-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            color: #94a3b8;
            margin-bottom: 1rem;
        }

        .notice-card-author,
        .notice-card-date {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .notice-card-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid #f1f5f9;
        }

        .notice-card-read-more {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.2s ease;
        }

        .notice-card-read-more:hover {
            color: #2563eb;
        }

        .notice-card-views {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            color: #94a3b8;
        }

        .related-notice-card {
            transition: all 0.3s ease;
        }

        .related-notice-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .loading-skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        /* Estilos para avisos urgentes */
        .urgent-notice {
            padding: 20px;
            border-radius: 30px;
            border: 3px solid rgb(220, 38, 38, 0.5);
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 80%);
        }

        .urgent-notice::before {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: #dc2626;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 700;
            font-size: 0.875rem;
            z-index: 10;
        }

        /* Estilos para avisos fixos */
        .sticky-notice {
            border-left: 4px solid #f59e0b;
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            font-size: 0.875rem;
            color: #6b7280;
        }

        .breadcrumb a {
            color: #3b82f6;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .breadcrumb a:hover {
            color: #2563eb;
        }

        .breadcrumb-separator {
            color: #d1d5db;
        }

        /* Meta informações */
        .notice-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
            padding: 1rem;
            background: #f8fafc;
            border-radius: 0.5rem;
            border-left: 4px solid #3b82f6;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #6b7280;
            font-size: 0.875rem;
        }

        .meta-item i {
            color: #3b82f6;
        }

        /* Botão voltar */
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: #3b82f6;
            color: white;
            text-decoration: none;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.2s ease;
            margin-bottom: 2rem;
        }

        .back-button:hover {
            background: #2563eb;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
        }