        /* Estilo para as notícias */
        .news-section {
            padding: 3rem 1.5rem;
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23222" opacity="0.5"/><path d="M0 0L100 100M100 0L0 100" stroke="%23333" stroke-width="1"/></svg>');
        }

        .news-section h1 {
            font-family: "Alfa Slab One", cursive;
            color: white;
            font-size: 3.0rem;
            text-align: center;
            margin-bottom: 2.5rem;
            text-shadow: 0 0 10px rgba(179, 179, 177, 0.3);
        }

        .news-article {
            background: rgba(30, 30, 30, 0.8);
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 3rem;
            border: 1px solid #444;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .news-article:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(206, 206, 206, 0.5);
        }

        .news-header {
            padding: 1.5rem 1.5rem 0;
        }

        .news-date {
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .news-title {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-family: 'Roboto Slab', serif;
            border-bottom: 2px solid var(--abutres-red);
            padding-bottom: 0.5rem;
        }

        .news-image {
            overflow: hidden;
            background-color: #222;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            object-fit: contain;
        }

        .news-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, rgba(30, 30, 30, 0.8), transparent);
        }

        .news-content {
            padding: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #e0e0e0;
        }

        .news-content p {
            margin-bottom: 1rem;
        }

        .news-content p:first-of-type {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #f0f0f0;
        }

        .news-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--abutres-red), transparent);
            margin: 2rem 0;
        }

        .back-button {
            display: block;
            max-width: 300px;
            margin: 2rem auto;
            background-color: var(--abutres-red);
            color: white;
            border: none;
            font-weight: bold;
        }

        .back-button:hover {
            background-color: #292929;
            color: white;
        }

        /* Estilos para o rodapé das notícias */
        .news-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-top: 1px solid #444;
            background-color: rgba(40, 40, 40, 0.5);
            flex-wrap: wrap;
            gap: 1rem;
        }

        /* Estilos para as tags */
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag {
            font-size: 0.8rem;
            padding: 0.25rem 0.75rem;
            background-color: #333;
            color: #ddd;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background-color: var(--abutres-red);
            color: white;
            transform: translateY(-2px);
        }

        /* Estilos para os botões de compartilhamento */
        .social-share {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .share-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            transition: all 0.3s ease;
            color: white;
        }

        .share-button:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        /* Responsividade */
        @media screen and (max-width: 768px) {
            .news-footer {
                flex-direction: column;
                align-items: flex-start;
            }

            .social-share {
                margin-top: 1rem;
            }
        }