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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ====== JOURNAL HEADER ====== */
.journal-header {
    background: #000000;
    border-bottom: 3px solid #833ab4;
    padding: 15px 0;
}

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

.site-logo {
    height: 60px;
    width: auto;
}

.header-meta {
    text-align: right;
}

.header-meta .date {
    color: #888;
    font-size: 0.85em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ====== NAVIGATION ====== */
.journal-nav {
    background: #0f0f0f;
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.journal-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
}

.journal-nav ul li a {
    display: block;
    padding: 15px 30px;
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    border-right: 1px solid #1a1a1a;
}

.journal-nav ul li:last-child a {
    border-right: none;
}

.journal-nav ul li a:hover {
    background: #1a1a1a;
    color: #fff;
}

/* ====== HERO ARTICLE ====== */
.hero-article {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 80px 30px;
    border-bottom: 3px solid #833ab4;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-category {
    display: inline-block;
    background: #833ab4;
    color: #fff;
    padding: 8px 20px;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-title {
    font-size: 3.2em;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.hero-excerpt {
    font-size: 1.3em;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-meta {
    color: #888;
    font-size: 0.95em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-meta .author {
    color: #a855f7;
    font-weight: 600;
}

.hero-meta .read-time {
    margin-left: 5px;
}

/* ====== MAIN JOURNAL GRID ====== */
.journal-main {
    padding: 60px 0;
}

.journal-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ====== MAIN ARTICLE ====== */
.main-article {
    background: #0f0f0f;
    padding: 50px 60px;
    border-radius: 8px;
    border: 1px solid #1a1a1a;
}

.article-section {
    margin-bottom: 60px;
}

.article-section h2 {
    font-size: 2.2em;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid #833ab4;
    font-family: 'Georgia', serif;
}

.article-section h3 {
    font-size: 1.6em;
    color: #a855f7;
    margin: 40px 0 20px;
    font-weight: 600;
}

.article-section p {
    font-size: 1.15em;
    line-height: 1.9;
    color: #c0c0c0;
    margin-bottom: 25px;
    text-align: justify;
}

.article-section strong {
    color: #a855f7;
    font-weight: 700;
}

/* ====== CTA BOX (dentro do artigo) ====== */
.cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid #833ab4;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    margin: 80px 0;
    box-shadow: 0 10px 40px rgba(131, 58, 180, 0.3);
}

.cta-box h3 {
    color: #ffffff;
    font-size: 2em;
    margin-bottom: 20px;
}

.cta-box p {
    color: #c0c0c0;
    font-size: 1.15em;
    margin-bottom: 30px;
}

.cta-box .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #833ab4 0%, #a855f7 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-box .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(131, 58, 180, 0.6);
}

/* ====== SIDEBAR ====== */
.sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.sidebar-widget {
    background: #0f0f0f;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border: 1px solid #1a1a1a;
}

.widget-title {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #833ab4;
    font-family: 'Georgia', serif;
    font-weight: 700;
}

/* Trending List */
.trending-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trending-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 6px;
}

.trending-item:hover {
    background: #1a1a1a;
}

.trending-number {
    font-size: 1.8em;
    font-weight: 900;
    color: #833ab4;
    min-width: 40px;
    font-family: 'Georgia', serif;
}

.trending-content h4 {
    color: #e0e0e0;
    font-size: 1.05em;
    margin-bottom: 5px;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.trending-item:hover h4 {
    color: #a855f7;
}

.trending-meta {
    color: #888;
    font-size: 0.85em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Categories List */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    text-decoration: none;
    color: #c0c0c0;
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    color: #a855f7;
    padding-left: 15px;
}

.category-count {
    background: #1a1a1a;
    color: #a855f7;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

/* Highlight Widget */
.highlight-widget {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid #833ab4;
}

.highlight-widget p {
    color: #c0c0c0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.widget-button {
    display: block;
    background: #833ab4;
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.widget-button:hover {
    background: #a855f7;
    transform: translateY(-2px);
}

/* ====== RELATED SECTION ====== */
.related-section {
    background: #0f0f0f;
    padding: 80px 0;
    border-top: 1px solid #1a1a1a;
}

.section-title {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.related-card {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: #833ab4;
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.2);
}

.related-category {
    display: inline-block;
    background: #833ab4;
    color: #fff;
    padding: 6px 15px;
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.related-card h3 {
    margin-bottom: 15px;
}

.related-card h3 a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4em;
    line-height: 1.3;
    font-family: 'Georgia', serif;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-card:hover h3 a {
    color: #a855f7;
}

.related-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.related-meta {
    color: #888;
    font-size: 0.9em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ====== FOOTER ====== */
.journal-footer {
    background: #000000;
    color: #c0c0c0;
    padding: 60px 0 30px;
    border-top: 4px solid #833ab4;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1a1a1a;
}

.footer-branding h3 {
    font-family: 'Georgia', serif;
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-branding p {
    color: #888;
    line-height: 1.6;
}

.footer-links h4 {
    color: #a855f7;
    margin-bottom: 20px;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.footer-links ul li a {
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #a855f7;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    color: #888;
    font-size: 0.9em;
}

.footer-bottom p {
    margin: 10px 0;
}

.footer-bottom a {
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1200px) {
    .journal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 968px) {
    .journal-logo {
        font-size: 2.5em;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-excerpt {
        font-size: 1.1em;
    }
    
    .main-article {
        padding: 40px 30px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .journal-header {
        padding: 12px 0;
    }
    
    .site-logo {
        height: 45px;
    }
    
    .header-meta .date {
        font-size: 0.75em;
    }
    
    .journal-nav ul {
        flex-direction: column;
    }
    
    .journal-nav ul li a {
        padding: 12px 20px;
        border-right: none;
        border-bottom: 1px solid #1a1a1a;
    }
    
    .hero-article {
        padding: 50px 20px;
    }
    
    .hero-title {
        font-size: 1.8em;
    }
    
    .hero-excerpt {
        font-size: 1em;
    }
    
    .main-article {
        padding: 30px 20px;
    }
    
    .article-section h2 {
        font-size: 1.8em;
    }
    
    .article-section h3 {
        font-size: 1.3em;
    }
    
    .article-section p {
        font-size: 1.05em;
        text-align: left;
    }
    
    .cta-box {
        padding: 35px 25px;
    }
    
    .sidebar-widget {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        height: 40px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-meta {
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.5em;
    }
    
    .article-section h2 {
        font-size: 1.5em;
    }
}
