
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #f5f5f5;
            --secondary-dark: #ffffff;
            --accent-red: #cc2222;
            --accent-orange: #e67e22;
            --text-light: #222;
            --text-muted: #666;
            --border-color: #e0e0e0;
        }

        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
        }

        /* ===== HEADER ===== */
        .header {
            background: linear-gradient(135deg, rgba(204, 34, 34, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
            border-bottom: 2px solid var(--accent-red);
            padding: 2rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><defs><pattern id="skulls" patternUnits="userSpaceOnUse" width="100" height="100"><text x="10" y="60" font-size="80" fill="rgba(204,34,34,0.05)">☠</text></pattern></defs><rect width="1200" height="200" fill="url(%23skulls)"/></svg>');
            pointer-events: none;
        }

        .header-content {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
        }

        .header-logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .header-logo::before {
            content: '☠';
            font-size: 1.8rem;
            color: var(--accent-red);
        }

        .header-tagline {
            color: var(--text-muted);
            font-size: 0.9rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .nav {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }

        .nav a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
            border-bottom: 2px solid transparent;
            padding-bottom: 0.25rem;
        }

        .nav a:hover {
            color: var(--accent-red);
            border-bottom-color: var(--accent-red);
        }

        .nav a.active {
            color: var(--accent-red);
            border-bottom-color: var(--accent-red);
        }

        /* ===== MAIN CONTENT ===== */
        .container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 1rem;
        }

        .blog-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--accent-red);
            padding-bottom: 1rem;
        }

        /* Blog Layout - 2 colunas */
        .blog-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }

        /* Coluna principal - Artigos */
        .blog-articles {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        /* Card de Artigo */
        .blog-article-card {
            background: var(--secondary-dark);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 1.5rem;
            padding: 1.5rem;
            cursor: pointer;
        }

        .blog-article-card:hover {
            border-color: var(--accent-red);
            box-shadow: 0 4px 12px rgba(204, 34, 34, 0.15);
            transform: translateY(-2px);
        }

        .blog-article-image {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
            border-radius: 4px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 0.9rem;
        }

        .blog-article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .blog-article-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .blog-article-meta {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 0.75rem;
        }

        .blog-article-category {
            background-color: rgba(204, 34, 34, 0.15);
            color: var(--accent-red);
            padding: 0.25rem 0.75rem;
            border-radius: 3px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-article-date {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .blog-article-reading-time {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .blog-article-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .blog-article-summary {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-article-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .blog-article-author {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .blog-article-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .blog-article-tag {
            background-color: rgba(100, 100, 100, 0.1);
            color: var(--text-muted);
            padding: 0.25rem 0.6rem;
            border-radius: 3px;
            font-size: 0.75rem;
        }

        /* Sidebar */
        .blog-sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: sticky;
            top: 2rem;
            height: fit-content;
        }

        .blog-sidebar-box {
            background: var(--secondary-dark);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1.5rem;
        }

        .blog-sidebar-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--accent-red);
        }

        .blog-most-read {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .blog-most-read-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            padding: 1.5rem 0.75rem;
            border-radius: 4px;
        }

        .blog-most-read-item:hover {
            background-color: rgba(204, 34, 34, 0.05);
        }

        .blog-most-read-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-red);
            min-width: 30px;
            flex-shrink: 0;
        }

        .blog-most-read-content {
            flex: 1;
        }

        .blog-most-read-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 0;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Página individual de artigo */
        .blog-article-page {
            background: var(--secondary-dark);
            border-radius: 8px;
            padding: 2rem;
            border: 1px solid var(--border-color);
        }

        .blog-back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent-red);
            text-decoration: none;
            margin-bottom: 2rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            background: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .blog-back-button:hover {
            background-color: rgba(204, 34, 34, 0.1);
        }

        .blog-article-page-header {
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1.5rem;
        }

        .blog-article-page-meta {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .blog-article-page-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .blog-article-page-summary {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.8;
            font-weight: 300;
        }

        .blog-article-page-cover {
            width: 100%;
            max-height: 400px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .blog-article-page-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-article-page-content {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .blog-article-page-content h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-light);
            margin: 1.5rem 0 0.75rem 0;
        }

        .blog-article-page-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-light);
            margin: 1.25rem 0 0.5rem 0;
        }

        .blog-article-page-content p {
            margin-bottom: 1rem;
        }

        .blog-article-page-content ul,
        .blog-article-page-content ol {
            margin: 1rem 0 1rem 2rem;
        }

        .blog-article-page-content li {
            margin-bottom: 0.5rem;
        }

        .blog-article-page-content blockquote {
            border-left: 4px solid var(--accent-red);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            color: var(--text-muted);
            font-style: italic;
        }

        /* Carrossel de imagens */
        .blog-carousel {
            margin: 2rem 0;
        }

        .blog-carousel-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1.25rem;
        }

        .blog-carousel-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.25rem;
        }

        .blog-carousel-item {
            background: #f9f9f9;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .blog-carousel-item:hover {
            border-color: var(--accent-red);
            box-shadow: 0 2px 8px rgba(204, 34, 34, 0.1);
        }

        .blog-carousel-item-image {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
            overflow: hidden;
        }

        .blog-carousel-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-carousel-item-caption {
            padding: 0.75rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            text-align: center;
            line-height: 1.4;
        }

        /* Video embed */
        .blog-video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            margin: 1.5rem 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .blog-video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Estado vazio */
        .blog-empty-state {
            text-align: center;
            padding: 3rem;
            color: var(--text-muted);
            background: var(--secondary-dark);
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        /* ===== FOOTER ===== */
        .footer {
            background-color: #f0f0f0;
            border-top: 1px solid var(--border-color);
            padding: 3rem 1rem 1rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-pages {
            margin-bottom: 2rem;
            text-align: center;
        }

        .pages-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .pages-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

        .pages-links a:hover {
            color: var(--accent-red);
        }

        .footer-social {
            margin-bottom: 2rem;
            text-align: center;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .social-icon {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-icon:hover {
            color: var(--accent-red);
        }

        .footer-separator {
            border-top: 1px solid var(--border-color);
            margin: 2rem 0;
        }

        .footer-about {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .footer-description {
            margin-bottom: 1rem;
        }

        .footer-copyright {
            margin-bottom: 0;
        }

        .footer-auth button {
            background: none;
            border: none;
            color: var(--accent-red);
            cursor: pointer;
            text-decoration: underline;
            padding: 0;
        }

        /* Responsivo */
        @media (max-width: 1024px) {
            .blog-wrapper {
                grid-template-columns: 1fr;
            }

            .blog-sidebar {
                position: static;
            }

            .blog-article-card {
                grid-template-columns: 1fr;
            }

            .blog-article-image {
                height: 250px;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 1.5rem 1rem;
            }

            .header-logo {
                font-size: 1.5rem;
            }

            .header-tagline {
                font-size: 0.8rem;
            }

            .nav {
                gap: 1rem;
                font-size: 0.75rem;
            }

            .blog-title {
                font-size: 1.5rem;
            }

            .blog-article-card {
                padding: 1rem;
                gap: 1rem;
            }

            .blog-article-title {
                font-size: 1.1rem;
            }

            .blog-article-summary {
                -webkit-line-clamp: 2;
            }

            .blog-article-page {
                padding: 1.5rem;
            }

            .blog-article-page-title {
                font-size: 1.8rem;
            }

            .blog-article-page-content {
                font-size: 0.9rem;
            }

            .blog-carousel-container {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1rem;
            }

            .pages-links {
                gap: 1rem;
            }

            .social-icons {
                gap: 1rem;
            }
        }
    }

/* ===== MODAL DE ARTIGO INDIVIDUAL ===== */
.article-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
}

.article-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.article-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    padding: 0;
}

.article-modal-close:hover {
    color: #cc2222;
}

.article-full h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #222;
}

.article-full-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #cc2222;
}

.article-full-content {
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
    margin: 20px 0;
}

.article-full-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #cc2222;
}

@media (max-width: 768px) {
    .article-modal-content {
        padding: 20px;
    }

    .article-full h1 {
        font-size: 1.8rem;
    }
}
    