
        :root {
            /* Cores principais - Tema sobrenatural suave */
            --primary-sage: #8a9b8c;
            --primary-taupe: #a89f8f;
            --primary-dusty: #7a6c5d;
            --accent-mauve: #9a8c98;
            --accent-slate: #6d7b8d;
            --accent-moss: #6b8e6b;
            --light-bg: #f8f7f4;
            --white: #ffffff;
            --text-dark: #4a4a4a;
            --text-medium: #666;
            --border-light: #e0ddd8;
        }

        * {
            font-family: 'Open Sans', sans-serif;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Crimson Text', serif;
            font-weight: 600;
            color: var(--text-dark);
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-medium);
            line-height: 1.6;
        }

        /* Top bar */
        .top-bar {
            background: linear-gradient(90deg, var(--primary-sage), var(--primary-taupe));
            height: 6px;
        }

        /* Header Navigation */
        .navbar-custom {
            background-color: var(--white);
            border-top: 3px solid var(--primary-sage);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .navbar-brand {
            margin-right: 2rem !important;
        }

        .logo-img {
            max-height: 100px;
            width: auto;

        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-dusty) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary-sage);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 70%;
        }

        /* Blog header */
        .blog-header {
            background: linear-gradient(135deg, #f1f0eb, #e8e6df);
            padding: 2.5rem 0;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-dark);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .blog-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.03"><path d="M50,50 C60,30 80,40 80,50 C80,60 60,70 50,50 C40,70 20,60 20,50 C20,40 40,30 50,50 Z" fill="%23444"/></svg>');
            z-index: 0;
        }

        .blog-header h1 {
            color: var(--text-dark);
            font-size: 2.3rem;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* Main content */
        .main-content {
            padding: 2rem 0;
            min-height: 60vh;
        }

        /* Article cards */
        .article-card {
            background-color: var(--white);
            border: 1px solid var(--border-light);
            border-radius: 6px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 2rem;
            display: flex;
            align-items: stretch;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
        }

        .article-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
        }

        .article-card img {
            width: 250px;
            height: 180px;
            object-fit: cover;
            flex-shrink: 0;
            transition: transform 0.5s ease;
            filter: brightness(0.95);
        }

        .article-card:hover img {
            transform: scale(1.03);
        }

        .article-card-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Article category badge */
        .article-category {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            color: #fff;
            width: fit-content;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

               /* Single Post */
        .single-post-header {
            background-color: var(--white);
            padding: 2rem 2.5rem;
            border-bottom: 1px solid var(--border-light);
        }

        .post-category {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            color: #fff;
            background-color: var(--accent-slate);
        }

        .post-meta {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .post-meta i {
            margin-right: 0.5rem;
        }

        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .post-content {
            background-color: var(--white);
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin: 2rem 0;
        }

        .post-content p {
            margin-bottom: 1.5rem;
        }

        .post-content h2, .post-content h3 {
            margin: 2.5rem 0 1.5rem;
            color: var(--primary-dusty);
        }

        blockquote {
            border-left: 4px solid var(--primary-sage);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-dark);
        }

        .post-tags {
            margin: 2rem 0;
        }

        .tag {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background-color: #f0f0f0;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-medium);
        }

        .author-box {
            background-color: #f9f9f7;
            padding: 2rem;
            border-radius: 8px;
            margin: 3rem 0;
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1.5rem;
        }

        .comments-section {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin: 2rem 0;
        }

        .comment {
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .comment:last-child {
            border-bottom: none;
        }

        .comment-author {
            font-weight: 600;
            color: var(--text-dark);
        }

        .comment-date {
            color: #888;
            font-size: 0.85rem;
        }

        .comment-form {
            margin-top: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-control {
            border: 1px solid var(--border-light);
            border-radius: 4px;
            padding: 0.75rem;
        }

        .btn-submit {
            background-color: var(--primary-sage);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            background-color: var(--primary-dusty);
        }


        .article-category.ghosts {
            background-color: var(--accent-slate);
        }

        .article-category.aliens {
            background-color: var(--accent-moss);
        }

        .article-category.demons {
            background-color: #8c7a7a;
        }

        .article-category.spirituality {
            background-color: var(--accent-mauve);
        }

        .article-category.fantasy {
            background-color: var(--primary-dusty);
        }

        .article-category.testimonies {
            background-color: var(--primary-sage);
        }

        /* Article title */
        .article-title {
            font-size: 1.35rem;
            margin: 0.75rem 0;
            color: var(--text-dark);
            font-weight: 600;
            line-height: 1.4;
        }

        .article-title a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .article-title a:hover {
            color: var(--primary-dusty);
        }

        /* Article excerpt */
        .article-excerpt {
            color: var(--text-medium);
            font-size: 0.95rem;
            margin: 0.5rem 0;
            line-height: 1.6;
        }

        /* Article meta */
        .article-meta {
            color: #888;
            font-size: 0.85rem;
            margin-top: auto;
            display: flex;
            align-items: center;
        }

        .article-comments {
            color: var(--primary-sage);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
            margin-left: 1rem;
        }

        .article-comments:hover {
            color: var(--primary-dusty);
        }

        /* Pagination */
        .pagination-custom {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 2rem 0;
        }

        .pagination-custom a,
        .pagination-custom span {
            display: inline-block;
            width: 38px;
            height: 38px;
            line-height: 38px;
            text-align: center;
            border: 1px solid var(--border-light);
            border-radius: 4px;
            text-decoration: none;
            color: var(--text-medium);
            transition: all 0.3s ease;
        }

        .pagination-custom a:hover {
            border-color: var(--primary-sage);
            background-color: var(--primary-sage);
            color: white;
        }

        .pagination-custom span.active {
            border-color: var(--primary-sage);
            background-color: var(--primary-sage);
            color: white;
        }

        /* Sidebar */
        .sidebar-section {
            background-color: var(--white);
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-light);
            border-radius: 6px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
        }

        .sidebar-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            border-bottom: 1px solid var(--border-light);
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .sidebar-title i {
            margin-right: 0.5rem;
            color: var(--primary-sage);
        }

        /* Recent posts */
        .recent-posts-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .recent-post {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f0f0f0;
            margin-bottom: 0.75rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 0.5rem;
            transition: background-color 0.3s ease;
            border-radius: 4px;
            padding-left: 0.5rem;
            padding-right: 0.5rem;
        }

        .recent-post:hover {
            background-color: #f9f9f7;
        }

        .recent-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .recent-post a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.85rem;
            line-height: 1.5;
            flex: 1;
            transition: color 0.3s ease;
        }

        .recent-post a:hover {
            color: var(--primary-sage);
        }

        .post-badge {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #fff;
            background-color: var(--primary-sage);
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* Category list */
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-list li {
            padding: 0.4rem 0;
            margin-bottom: 0.4rem;
        }

        .category-list a {
            display: inline-block;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-bottom: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .category-list a:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        .category-list a.ghosts {
            background-color: var(--accent-slate);
        }

        .category-list a.aliens {
            background-color: var(--accent-moss);
        }

        .category-list a.demons {
            background-color: #8c7a7a;
        }

        .category-list a.spirituality {
            background-color: var(--accent-mauve);
        }

        .category-list a.fantasy {
            background-color: var(--primary-dusty);
        }

        .category-list a.testimonies {
            background-color: var(--primary-sage);
        }

        .category-list a.ufology {
            background-color: #7a8c9b;
        }

        .category-list a.paranormal {
            background-color: #9a8c8c;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1200x600/7a6c5d/ffffff?text=Hero+Image') center/cover no-repeat;
            color: white;
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }

        .hero-section h1 {
            color: white;
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .btn-hero {
            background-color: var(--primary-sage);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-hero:hover {
            background-color: var(--primary-dusty);
            transform: translateY(-2px);
        }

        /* Featured Posts */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: var(--primary-sage);
            margin: 1rem auto;
        }

        .featured-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            margin-bottom: 2rem;
            height: 100%;
        }

        .featured-card:hover {
            transform: translateY(-5px);
        }

        .featured-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .featured-card-content {
            padding: 1.5rem;
        }

        .featured-category {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            color: #fff;
            background-color: var(--accent-slate);
        }

        /* About Section */
        .about-section {
            background-color: var(--white);
            padding: 4rem 0;
            margin: 4rem 0;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        /* Newsletter */
        .newsletter-section {
            background: linear-gradient(135deg, var(--primary-sage), var(--accent-moss));
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-control {
            border: none;
            border-radius: 4px;
            padding: 0.75rem 1rem;
        }

        .btn-newsletter {
            background-color: var(--primary-dusty);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .btn-newsletter:hover {
            background-color: var(--text-dark);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #f1f0eb, #e8e6df);
            color: var(--text-medium);
            padding: 2rem 0 0;
            margin-top: 3rem;
            border-top: 1px solid var(--border-light);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .footer-section h3 {
            color: var(--primary-dusty);
            font-size: 1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section li {
            padding: 0.4rem 0;
        }

        .footer-section a {
            color: var(--text-medium);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-dusty);
        }

        .footer-bottom {
            background-color: var(--primary-sage);
            color: white;
            padding: 1rem;
            text-align: center;
            font-size: 0.85rem;
        }

        .footer-bottom a {
            color: white;
            text-decoration: none;
            margin: 0 0.5rem;
            transition: opacity 0.3s ease;
        }

        .footer-bottom a:hover {
            opacity: 0.8;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .article-card {
                flex-direction: column;
            }

            .article-card img {
                width: 100%;
                height: 200px;
            }

            .article-card-content {
                padding: 1rem;
            }

            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                padding: 0.5rem 0 !important;
            }

            .navbar-brand {
                margin-right: 1rem !important;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .sidebar-section {
                padding: 1rem;
                margin-top: 2rem;
            }

            .blog-header h1 {
                font-size: 1.8rem;
            }

            .sidebar-title {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .article-card img {
                height: 160px;
            }

            .article-title {
                font-size: 1.2rem;
            }

            .pagination-custom a,
            .pagination-custom span {
                width: 34px;
                height: 34px;
                line-height: 34px;
                font-size: 0.85rem;
            }

            .blog-header {
                padding: 1.8rem 0;
            }
        }

        /* Utility classes */
        .text-sage {
            color: var(--primary-sage);
        }

        .bg-sage {
            background-color: var(--primary-sage);
        }

        .border-sage {
            border-color: var(--primary-sage);
        }

        /* Links */
        a {
            color: inherit;
            text-decoration: none;
        }

        a:hover {
            text-decoration: none;
        }

        /* Smooth transitions */
        .article-card,
        .sidebar-section,
        .pagination-custom a,
        .category-list a,
        .recent-post {
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        }
  