﻿/* Reset e Estilos Globais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0a192f;
            color: #e6f1ff;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: #64ffda;
            transition: all 0.3s ease;
        }

        a:hover {
            color: #ffffff;
        }

        /* Layout Principal */
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Cabeçalho */
        header {
            background-color: #0a192f;
            padding: 20px 0;
            border-bottom: 1px solid #1e2a47;
            /*position: sticky;*/
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #64ffda;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            font-weight: 500;
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Conteúdo do Artigo */
        .article-header {
            padding: 60px 0 40px;
            text-align: center;
        }

        .article-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #e6f1ff;
            line-height: 1.3;
        }

        .article-meta {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 0.9rem;
            color: #8892b0;
            flex-wrap: wrap;
        }

        .article-meta span {
            margin: 0 15px 10px;
            display: flex;
            align-items: center;
        }

        .article-meta i {
            margin-right: 5px;
        }

        .article-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
        }

        .article-content {
            background-color: #112240;
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 60px;
            box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
        }

        .article-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #a8b2d1;
            line-height: 1.8;
        }

        .article-content h2 {
            font-size: 1.8rem;
            margin: 40px 0 20px;
            color: #e6f1ff;
        }

        .article-content h3 {
            font-size: 1.4rem;
            margin: 30px 0 15px;
            color: #e6f1ff;
        }

        .article-content blockquote {
            border-left: 3px solid #64ffda;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #8892b0;
        }

        .article-content ul, 
        .article-content ol {
            margin: 20px 0 30px 30px;
        }

        .article-content li {
            margin-bottom: 10px;
            color: #a8b2d1;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            margin: 30px auto;
            display: block;
            border-radius: 6px;
        }

        .article-tags {
            display: flex;
            flex-wrap: wrap;
            margin: 40px 0;
        }

        .article-tags a {
            display: inline-block;
            padding: 5px 15px;
            background-color: #1e2a47;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .article-tags a:hover {
            background-color: #64ffda;
            color: #0a192f;
        }

        /* Navegação entre Artigos */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
        }

        .nav-previous, 
        .nav-next {
            flex: 1;
            padding: 20px;
            background-color: #112240;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-previous:hover, 
        .nav-next:hover {
            background-color: #1e2a47;
        }

        .nav-previous {
            margin-right: 15px;
            text-align: left;
        }

        .nav-next {
            margin-left: 15px;
            text-align: right;
        }

        .nav-label {
            font-size: 0.9rem;
            color: #8892b0;
            margin-bottom: 5px;
        }

        /* Comentários */
        .comments-section {
            background-color: #112240;
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 60px;
        }

        .comments-section h2 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: #e6f1ff;
        }

        .comment {
            display: flex;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2a47;
        }

        .comment-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 20px;
            object-fit: cover;
        }

        .comment-content {
            flex: 1;
        }

        .comment-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

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

        .comment-date {
            color: #8892b0;
        }

        .comment-text {
            color: #a8b2d1;
            line-height: 1.7;
        }

        .comment-reply {
            margin-top: 10px;
        }

        .comment-reply a {
            font-size: 0.9rem;
            color: #64ffda;
        }

        .comment-form {
            margin-top: 40px;
        }

        .comment-form h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #e6f1ff;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #a8b2d1;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: #1e2a47;
            border: 1px solid #233554;
            border-radius: 4px;
            color: #e6f1ff;
            font-size: 1rem;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            padding: 12px 25px;
            background-color: #64ffda;
            color: #0a192f;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #52d6b9;
        }

        /* Rodapé */
        footer {
            background-color: #020c1b;
            padding: 50px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
            text-align: left;
        }

        .footer-widget h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #64ffda;
        }

        .footer-widget p {
            color: #8892b0;
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #112240;
            border-radius: 50%;
            color: #64ffda;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: #64ffda;
            color: #0a192f;
            transform: translateY(-3px);
        }

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

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #8892b0;
        }

        .footer-links ul li a:hover {
            color: #64ffda;
        }

        .copyright {
            padding-top: 20px;
            border-top: 1px solid #1e2a47;
            color: #8892b0;
            font-size: 0.9rem;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .article-header h1 {
                font-size: 2rem;
            }

            .article-image {
                height: 250px;
            }

            .article-content {
                padding: 25px;
                margin-top:-25px;
            }

            .article-navigation {
                flex-direction: column;
            }

            .nav-previous, 
            .nav-next {
                margin: 0 0 15px 0;
                width: 100%;
            }

            .comments-section {
                padding: 25px;
            }
        }

        @media (max-width: 576px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }

            nav ul {
                margin-top: 15px;
            }

            nav ul li {
                margin-left: 15px;
            }

            .article-meta span {
                margin: 0 10px 10px;
            }

            .comment {
                flex-direction: column;
            }

            .comment-avatar {
                margin-bottom: 15px;
            }
        }
    .auto-style1 {
		border-width: 0px;
	}
