        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        
        .post-content a,
        .post-excerpt a {
            color: #007bff;

        }
        
        .post-content a:hover,
        .post-excerpt a:hover {
            color: #0056b3;
            border-bottom-color: #0056b3;
            text-decoration: none;
        }

        /* Theme Toggle e Login Button */
        .theme-toggle {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin-left: 1rem;
            color: white;
            transition: var(--transition);
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .login-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.5rem 1.2rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-left: 1rem;
            text-decoration: none;
        }

        .login-btn:hover {
            background: #ff79b0;
            transform: translateY(-2px);
        }

        .nav-right {
            display: flex;
            align-items: center;
        }

        /* Hero Section */
        .hero {
            background: url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
            color: white;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            margin-left: 1rem;
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
            display: flex;
            gap: 2rem;
        }

        .main-content {
            flex: 2;
        }

        .sidebar {
            flex: 1;
        }

        .section-title {
            margin-bottom: 2rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--primary);
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }

        .inspiration-quote {
            background: var(--light);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
            position: relative;
            border-left: 4px solid var(--accent);
        }
        .quote-author{
            text-align: right;
            font-weight: 600;
            color: var(--primary);
        }

        /* Blog Post - Single */
        .single-post {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2rem;
            margin-bottom: 3rem;
        }

        .post-header {
            margin-bottom: 2rem;
            text-align: center;
        }

        .post-category {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .post-title {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--text);
            line-height: 1.3;
        }

        .post-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .post-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .post-meta i {
            color: var(--primary);
        }

        .featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: var(--radius);
            margin-bottom: 2rem;
        }

        .post-content {
            line-height: 1.8;
            font-size: 1.1rem;
            color: var(--text);
        }

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

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

        .post-content h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid var(--light);
            padding-bottom: 0.5rem;
        }

        .post-content h3 {
            font-size: 1.5rem;
        }

        .post-content h4 {
            font-size: 1.3rem;
        }

        .post-content blockquote {
            border-left: 4px solid var(--accent);
            padding: 1rem 1.5rem;
            margin: 2rem 0;
            background: var(--light);
            font-style: italic;
            color: var(--text);
        }

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

        .post-content li {
            margin-bottom: 0.8rem;
        }

        .post-content a {
            text-decoration: none;
        }

        .post-content a:hover {
            text-decoration: none;
        }

        .post-content img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            margin: 1.5rem 0;
        }

        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 2rem 0;
        }

        .post-tag {
            background: var(--light);
            color: var(--text);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .post-tag:hover {
            background: var(--primary);
            color: white;
        }

        .post-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
            color: var(--text);
            transition: var(--transition);
            max-width: 45%;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link i {
            font-size: 1.2rem;
        }

        .nav-link.prev {
            text-align: left;
        }

        .nav-link.next {
            text-align: right;
            margin-left: auto;
        }

        .nav-link span {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .nav-link h4 {
            font-size: 1.1rem;
            margin: 0.3rem 0 0;
        }

        .author-box {
            display: flex;
            align-items: center;
            gap: 2rem;
            background: var(--light);
            padding: 2rem;
            border-radius: var(--radius);
            margin: 3rem 0;
        }

        .author-avatar {
            width: 150px;
        }

        .author-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .author-bio {
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .author-social {
            display: flex;
            gap: 1rem;
        }

        .author-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            transition: var(--transition);
        }

        .author-social a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .related-posts {
            margin: 4rem 0;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .related-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
        }

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

        .related-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .related-content {
            padding: 1.5rem;
        }

        .related-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .related-title a {
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
        }

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

        .related-meta {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .download-box {
            background: var(--light);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .download-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .download-info p {
            color: var(--text-light);
            margin-bottom: 0;
        }

        .download-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .download-btn:hover {
            background: #ff79b0;
            transform: translateY(-2px);
        }

        /* Sidebar */
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            position: relative;
            text-decoration: none;
        }

        .widget-title::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--secondary);
            bottom: -8px;
            left: 0;
        }

        .suggested-post {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .suggested-post:last-child {
            border-bottom: none;
        }

        .suggested-post a {
            text-decoration: none;
            color: var(--text);
            transition: var(--transition);
        }

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

        .suggested-title {
            font-size: 1rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .suggested-meta {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* Newsletter */
        .newsletter {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 4rem 2rem;
            text-align: center;
            color: white;
            margin: 4rem 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .newsletter h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }

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

        .newsletter-form input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }

        .newsletter-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background: #ff79b0;
        }

        /* Sidebar Newsletter */
        .sidebar-newsletter {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }

        .sidebar-newsletter h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: white;
            position: relative;
        }

        .sidebar-newsletter h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--accent);
            bottom: -8px;
            left: 0;
        }

        .sidebar-newsletter p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .sidebar-newsletter-form {
            display: flex;
            flex-direction: column;
        }

        .sidebar-newsletter-form input {
            padding: 0.8rem;
            border: none;
            border-radius: var(--radius);
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
        }

        .sidebar-newsletter-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .sidebar-newsletter-form button:hover {
            background: #ff79b0;
        }

        /* Sidebar Categories */
        .sidebar-categories {
            list-style: none;
        }

        .sidebar-categories li {
            margin-bottom: 0.6rem;
            padding-bottom: 0.6rem;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        }

        .sidebar-categories li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .sidebar-categories a {
            display: flex;
            justify-content: space-between;
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .sidebar-categories a:hover {
            color: var(--primary);
        }

        .sidebar-categories span {
            color: var(--text-light);
            font-size: 0.8rem;
        }

        /* Área de Anúncios do Google */
        .ad-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        /* Estilo para os anúncios do Google */
        ins.adsbygoogle {
            background: transparent;
            border-radius: var(--radius);
            overflow: hidden;
            margin: 0 auto;
        }

        /* Ajustes para modo escuro */
        [data-theme="dark"] .ad-container {
            background-color: rgba(255, 255, 255, 0.05);
        }

        /* Responsividade para anúncios */
        @media (max-width: 768px) {
            .ad-container {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            ins.adsbygoogle[style*="width:300px"] {
                margin: 0 10px;
            }
        }

        /* Footer */
        footer {
            background: var(--footer-bg);
            color: white;
            padding: 4rem 0 2rem;
            transition: var(--transition);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--secondary);
            bottom: -8px;
            left: 0;
        }

        .footer-col p {
            margin-bottom: 1rem;
            color: #bbb;
            font-size: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1rem;
        }

        .footer-links a:hover {
            color: var(--success);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--success);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
            box-shadow: var(--shadow);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--secondary);
        }

        /* Ferramentas do Chefe */
        .tools-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .tool-item {
            display: flex;
            align-items: center;
            padding: 0.8rem;
            background: var(--light);
            border-radius: var(--radius);
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
        }

        .tool-item:hover {
            background: var(--primary);
            color: white;
            transform: translateX(5px);
        }

        .tool-item i {
            margin-right: 0.8rem;
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
        }

        .tool-item span {
            font-size: 0.95rem;
            font-weight: 500;
        }

        [data-theme="dark"] .tool-item {
            background: rgba(255, 255, 255, 0.05);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .post-title {
                font-size: 1.8rem;
            }
            
            .featured-image {
                height: 400px;
            }
            
            .container {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transition: var(--transition);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .mobile-menu {
                display: block;
            }

            .login-btn {
                display: none;
            }

            .post-title {
                font-size: 1.6rem;
            }

            .post-meta {
                flex-direction: column;
                gap: 0.5rem;
            }

            .featured-image {
                height: 300px;
            }

            .author-box {
                flex-direction: column;
                text-align: center;
            }

            .author-social {
                justify-content: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                border-radius: var(--radius);
                margin-bottom: 0.5rem;
            }

            .newsletter-form button {
                border-radius: var(--radius);
                padding: 0.8rem;
            }
        }

        @media (max-width: 576px) {
            .post-title {
                font-size: 1.4rem;
            }

            .featured-image {
                height: 250px;
            }

            .post-navigation {
                flex-direction: column;
                gap: 1.5rem;
            }

            .nav-link {
                max-width: 100%;
            }

            .nav-right {
                margin-left: auto;
            }

            .logo img {
                height: 30px;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }
        /* Seção de Comentários */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    /*! border-top: 1px solid #eee; */
}

.comments-count {
    font-size: 0.9rem;
    color: #666;
    margin-left: 1rem;
}

.comment-form-container {
    margin-bottom: 2rem;
}

.comment-form-container textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 100px;
    margin-bottom: 1rem;
    font-family: inherit;
}

.comments-list {
    margin-top: 2rem;
}

.comment-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    position: relative;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-author {
    display: flex;
    flex-direction: column;
}

.comment-author-name {
    font-weight: 600;
    color: #333;
}

.comment-author-username {
    font-size: 0.8rem;
    color: #666;
}

.comment-date {
    font-size: 0.8rem;
    color: #999;
}

.comment-content {
    line-height: 1.6;
    color: #fff;
}

.comment-actions {
    margin-top: 1rem;
    text-align: right;
}

.btn-link {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
}

.btn-link:hover {
    text-decoration: underline;
}

.login-prompt {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 2rem;
}

.login-prompt a {
    color: #3498db;
    text-decoration: none;
}

.login-prompt a:hover {
    text-decoration: underline;
}

/* Estilos para a seção de comentários */
.comments-section {
    margin-top: 40px;
    padding: 20px;
    background: #020617;
    border-radius: 8px;
}

.comments-list {
    margin-top: 30px;
}

.comment {
    padding: 15px;
    margin-bottom: 15px;
    background: #1e293b;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #666;
}

.comment-author {
    font-weight: bold;
    color: #fff;
}

.comment-date {
    color: #999;
}

.comment-content {
    line-height: 1.6;
}

.no-comments {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.comment-form textarea {
    background-color: #1e293b;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    min-height: 100px;
    resize: vertical; /* Permite redimensionar apenas verticalmente */
    transition: background-color 0.3s ease;
    color: #fff;
}

.comment-form textarea:focus {
    background-color: #1e293b;
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}