/* ========== JORNAL LITERÁRIO - ESTILO CRUNCHYROLL NEWS + JORNAL TRADICIONAL ========== */

/* ===== HEADER DO JORNAL ===== */
.journal-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2rem 0 1rem;
    margin-bottom: 2rem;
    border-bottom: 4px solid #e74c3c;
}

.journal-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.journal-subtitle {
    text-align: center;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* ===== NAVEGAÇÃO DE CATEGORIAS ===== */
.categories-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.category-link {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-link:hover,
.category-link.active {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

/* ===== BREAKING NEWS ===== */
.breaking-news-banner {
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: pulse 2s infinite;
}

.breaking-badge {
    background: white;
    color: #e74c3c;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85rem;
}

.breaking-title {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.breaking-title:hover {
    text-decoration: underline;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
}

/* ===== DESTAQUE PRINCIPAL ===== */
.featured-main-card {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.featured-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem;
    color: white;
}

.featured-badge {
    background: #f39c12;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.featured-main-overlay h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.featured-main-overlay p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    opacity: 0.9;
}

.article-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.75rem;
    font-weight: 700;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* ===== GRID DE NOTÍCIAS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.news-card-body {
    padding: 1rem;
}

.news-category {
    background: #3498db;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.75rem 0 0.5rem;
    color: #2c3e50;
    line-height: 1.4;
}

.news-card p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.news-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #95a5a6;
}

/* ===== ENTREVISTAS ===== */
.interviews-section {
    display: grid;
    gap: 1.5rem;
}

.interview-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: all 0.3s ease;
}

.interview-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.interview-card img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    flex-shrink: 0;
}

.interview-content {
    padding: 1rem;
    flex: 1;
}

.interview-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #9b59b6;
    margin-bottom: 0.5rem;
}

.interview-content p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.read-more {
    color: #9b59b6;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== NAVEGADOR DE DESTAQUES ===== */
.highlights-nav {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.highlights-nav h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 0.5rem;
}

.highlight-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.highlight-item:hover {
    background: rgba(243, 156, 18, 0.1);
    margin: 0 -0.5rem;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
}

.highlight-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-info {
    flex: 1;
    min-width: 0;
}

.highlight-type {
    font-size: 0.7rem;
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
}

.highlight-info h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0.25rem 0 0;
    line-height: 1.3;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== SIDEBAR ===== */
.tip-of-week-card,
.events-sidebar,
.quizzes-sidebar,
.newsletter-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.tip-of-week-card h4,
.events-sidebar h4,
.quizzes-sidebar h4,
.newsletter-sidebar h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 0.5rem;
}

.tip-of-week-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.tip-of-week-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* ===== EVENTOS ===== */
.event-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ecf0f1;
}

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

.event-date {
    background: #e74c3c;
    color: white;
    text-align: center;
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 60px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-info h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.event-info p {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
}

/* ===== QUIZZES ===== */
.quiz-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #ecf0f1;
}

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

.quiz-item h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 0.25rem;
}

.quiz-cta {
    color: #3498db;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ===== NEWSLETTER ===== */
.newsletter-sidebar input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.newsletter-sidebar button {
    width: 100%;
}

/* ===== GUIAS ===== */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.guide-card {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.guide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 1rem;
    color: white;
}

.guide-type {
    background: #16a085;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.guide-overlay h5 {
    font-size: 1rem;
    margin: 0.5rem 0 0;
}

/* ===== ARTICLE DETAIL ===== */
.article-detail {
    max-width: 900px;
    margin: 0 auto;
}

.article-type-badge {
    background: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.article-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1rem 0;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-weight: 400;
    margin-bottom: 1rem;
}

.article-tags {
    margin: 1rem 0;
}

.tag-badge {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.tag-badge:hover {
    background: #3498db;
    color: white;
}

.article-featured-image {
    margin: 2rem 0;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-featured-image figcaption {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.article-content h2,
.article-content h3 {
    margin-top: 2rem;
    color: #2c3e50;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* ===== LAYOUT DE JORNAL - COLUNAS ===== */

/* Primeira letra grande (Drop Cap) - estilo jornal */
.article-content p:first-of-type::first-letter {
    font-size: 4rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: #e74c3c;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Classes para colunas no editor - usar via HTML no CKEditor */
.newspaper-2col {
    column-count: 2;
    column-gap: 2rem;
    column-rule: 1px solid #ecf0f1;
}

.newspaper-3col {
    column-count: 3;
    column-gap: 1.5rem;
    column-rule: 1px solid #ecf0f1;
}

/* Destaque editorial - caixa de citação grande */
.article-content blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #2c3e50;
    border-left: 4px solid #e74c3c;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: #f8f9fa;
    position: relative;
}

.article-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #e74c3c;
    position: absolute;
    left: 0.5rem;
    top: -0.5rem;
    opacity: 0.3;
    font-family: 'Georgia', serif;
}

/* Caixa de destaque (pullquote) */
.pullquote {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    padding: 2rem;
    margin: 2rem -2rem;
    border-top: 3px solid #e74c3c;
    border-bottom: 3px solid #e74c3c;
    background: linear-gradient(to right, transparent, rgba(231, 76, 60, 0.05), transparent);
}

/* Imagem flutuante à esquerda */
.img-float-left {
    float: left;
    max-width: 40%;
    margin: 0 1.5rem 1rem 0;
    border-radius: 8px;
}

/* Imagem flutuante à direita */
.img-float-right {
    float: right;
    max-width: 40%;
    margin: 0 0 1rem 1.5rem;
    border-radius: 8px;
}

/* Legenda de imagem estilo jornal */
.img-caption {
    font-size: 0.85rem;
    font-style: italic;
    color: #7f8c8d;
    text-align: center;
    margin-top: 0.5rem;
    border-bottom: 1px solid #ecf0f1;
    padding-bottom: 0.5rem;
}

/* Linha divisória decorativa */
.article-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #e74c3c, transparent);
    margin: 2rem 0;
}

/* Caixa informativa (sidebar) */
.info-box {
    background: #f0f8ff;
    border-left: 4px solid #3498db;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.info-box h4 {
    color: #3498db;
    margin-top: 0;
    font-size: 1rem;
}

/* Caixa de alerta/importante */
.alert-box {
    background: #fff3cd;
    border-left: 4px solid #f39c12;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

/* Responsivo - colunas para mobile */
@media (max-width: 768px) {

    .newspaper-2col,
    .newspaper-3col {
        column-count: 1;
    }

    .img-float-left,
    .img-float-right {
        float: none;
        max-width: 100%;
        margin: 1rem 0;
    }

    .article-content p:first-of-type::first-letter {
        font-size: 3rem;
    }

    .pullquote {
        margin: 2rem 0;
        padding: 1.5rem;
        font-size: 1.2rem;
    }
}

.event-info-box,
.related-book-box,
.related-quiz-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #e74c3c;
    margin: 0;
    border-radius: 4px;
}

.related-quiz-box {
    padding: 0;
    border-left: none;
    background: transparent;
}

.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

.related-article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.related-article-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-article-card h5 {
    padding: 0.75rem;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .journal-title {
        font-size: 2rem;
    }

    .featured-main-card {
        height: 350px;
    }

    .featured-main-overlay h2 {
        font-size: 1.5rem;
    }

    .interview-card {
        flex-direction: column;
    }

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

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

/* =============================================
   MOBILE CLEAN LAYOUT - Notícias (< 640px)
   ============================================= */
@media (max-width: 639px) {

    /* Header mais compacto */
    .journal-header {
        padding: 1rem 0 0.75rem;
        margin-bottom: 1rem;
    }

    .journal-title {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .journal-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    /* Navegação de categorias em scroll horizontal */
    .categories-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        gap: 0.35rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .categories-nav::-webkit-scrollbar {
        display: none;
    }

    .category-link {
        white-space: nowrap;
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    /* Breaking news mais compacto */
    .breaking-news-banner {
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .breaking-badge {
        font-size: 0.75rem;
    }

    .breaking-title {
        font-size: 0.95rem;
    }

    /* Destaque principal menor */
    .featured-main-card {
        height: 280px;
        border-radius: 8px;
    }

    .featured-main-overlay {
        padding: 1rem;
    }

    .featured-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .featured-main-overlay h2 {
        font-size: 1.2rem;
        margin: 0.35rem 0;
    }

    .featured-main-overlay p {
        font-size: 0.85rem;
        display: none;
        /* Ocultar excerpt em mobile */
    }

    .article-meta {
        font-size: 0.75rem;
    }

    /* Ocultar sidebars em mobile - layout de coluna única */
    .col-lg-3 {
        display: none;
    }

    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Títulos de seção menores */
    .section-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        padding-bottom: 0.35rem;
        border-bottom-width: 2px;
    }

    /* Grid de notícias em 2 colunas */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .news-card {
        border-radius: 8px;
    }

    .news-card img {
        height: 120px;
    }

    .news-card-body {
        padding: 0.6rem;
    }

    .news-category {
        font-size: 0.65rem;
        padding: 0.15rem 0.35rem;
    }

    .news-card h4 {
        font-size: 0.85rem;
        margin: 0.4rem 0 0.25rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-card p {
        font-size: 0.75rem;
        display: none;
        /* Ocultar excerpt */
    }

    .news-meta {
        font-size: 0.7rem;
    }

    /* Entrevistas em cards verticais */
    .interview-card {
        flex-direction: column;
    }

    .interview-card img {
        width: 100%;
        height: 150px;
    }

    .interview-content {
        padding: 0.75rem;
    }

    .interview-content h4 {
        font-size: 1rem;
    }

    .interview-content p {
        font-size: 0.8rem;
        display: none;
    }

    .read-more {
        font-size: 0.8rem;
    }

    /* Guias em grid compacto */
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .guide-card {
        height: 180px;
    }

    .guide-overlay {
        padding: 0.75rem;
    }

    .guide-type {
        font-size: 0.65rem;
    }

    .guide-overlay h5 {
        font-size: 0.85rem;
    }

    /* Container padding reduzido */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .my-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .mt-5 {
        margin-top: 1.5rem !important;
    }
}

/* ===== TEMA ESCURO ===== */
[data-theme="dark"] .news-card {
    background: #2a2a2a;
    border: 1px solid #444;
}

[data-theme="dark"] .news-card h4,
[data-theme="dark"] .article-title,
[data-theme="dark"] .section-title,
[data-theme="dark"] .article-content {
    color: #e0e0e0;
}

[data-theme="dark"] .news-card p,
[data-theme="dark"] .article-subtitle,
[data-theme="dark"] .article-content p {
    color: #b0b0b0;
}

[data-theme="dark"] .interview-card,
[data-theme="dark"] .tip-of-week-card,
[data-theme="dark"] .events-sidebar,
[data-theme="dark"] .highlights-nav,
[data-theme="dark"] .newsletter-sidebar {
    background: #2a2a2a;
    border: 1px solid #444;
}

[data-theme="dark"] .tip-of-week-card h4,
[data-theme="dark"] .events-sidebar h4,
[data-theme="dark"] .highlights-nav h4,
[data-theme="dark"] .newsletter-sidebar h4 {
    color: #e0e0e0;
}

[data-theme="dark"] .event-info p {
    color: #999;
}

[data-theme="dark"] .event-item,
[data-theme="dark"] .highlight-item {
    border-bottom-color: #444;
}

[data-theme="dark"] .highlight-info h6 {
    color: #e0e0e0;
}

[data-theme="dark"] .highlight-type {
    color: #5dcdeb;
}

[data-theme="dark"] .newsletter-sidebar input {
    background: #1a1a1a;
    border-color: #444;
    color: #e0e0e0;
}

[data-theme="dark"] .guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .related-article-card {
    background: #2a2a2a;
    border: 1px solid #444;
}

[data-theme="dark"] .related-article-card h5 {
    color: #e0e0e0;
}

[data-theme="dark"] .event-info-box,
[data-theme="dark"] .related-book-box {
    background: #2a2a2a;
    border-left-color: #e74c3c;
    color: #e0e0e0;
}

[data-theme="dark"] .breadcrumb {
    background: #2a2a2a;
}

[data-theme="dark"] .breadcrumb-item a {
    color: #5dcdeb;
}

[data-theme="dark"] .breadcrumb-item.active {
    color: #b0b0b0;
}

[data-theme="dark"] .tag-badge {
    background: #333;
    color: #e0e0e0;
}

[data-theme="dark"] .tag-badge:hover {
    background: #3498db;
    color: white;
}

[data-theme="dark"] .article-content h2,
[data-theme="dark"] .article-content h3,
[data-theme="dark"] .article-content h4 {
    color: #e0e0e0;
}

[data-theme="dark"] .card {
    background: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

[data-theme="dark"] .card .bg-light {
    background: #1a1a1a !important;
    color: #e0e0e0;
}

[data-theme="dark"] .form-check-label {
    color: #e0e0e0;
}

/* Dark theme - Layout de jornal */
[data-theme="dark"] .article-content blockquote {
    background: #2a2a2a;
    color: #b0b0b0;
    border-left-color: #e74c3c;
}

[data-theme="dark"] .pullquote {
    color: #e0e0e0;
    background: linear-gradient(to right, transparent, rgba(231, 76, 60, 0.1), transparent);
}

[data-theme="dark"] .info-box {
    background: #1a2a3a;
    color: #b0b0b0;
}

[data-theme="dark"] .alert-box {
    background: #3a3020;
    color: #e0d0a0;
}

[data-theme="dark"] .newspaper-2col,
[data-theme="dark"] .newspaper-3col {
    column-rule-color: #444;
}

[data-theme="dark"] .article-content hr {
    background: linear-gradient(to right, transparent, #e74c3c, transparent);
}

/* ===== TEMA CLARO - Artigos ===== */
[data-theme="light"] .article-detail,
[data-theme="light"] .article-header,
[data-theme="light"] .article-body {
    background-color: #ffffff;
    color: #333333;
}

[data-theme="light"] .article-title {
    color: #1a1a1a;
}

[data-theme="light"] .article-subtitle {
    color: #555555;
}

[data-theme="light"] .article-meta {
    color: #666666;
}

[data-theme="light"] .article-content,
[data-theme="light"] .article-content p,
[data-theme="light"] .article-content li {
    color: #333333;
}

[data-theme="light"] .article-content h2,
[data-theme="light"] .article-content h3,
[data-theme="light"] .article-content h4 {
    color: #1a1a1a;
}

[data-theme="light"] .article-content blockquote {
    background: #f8f9fa;
    color: #555555;
    border-left-color: #ff6b35;
}

[data-theme="light"] .breadcrumb {
    background: transparent;
}

[data-theme="light"] .breadcrumb-item a {
    color: #ff6b35;
}

[data-theme="light"] .breadcrumb-item.active {
    color: #666666;
}

[data-theme="light"] .event-info-box,
[data-theme="light"] .related-book-box,
[data-theme="light"] .quiz-related-box {
    background: #f8f9fa;
    color: #333333;
    border: 1px solid #dee2e6;
}

[data-theme="light"] .event-info-box h3,
[data-theme="light"] .related-book-box h3,
[data-theme="light"] .quiz-related-box h3 {
    color: #1a1a1a;
}

[data-theme="light"] .article-type-badge {
    background: #e9ecef;
    color: #495057;
}

[data-theme="light"] .pullquote {
    color: #333333;
    background: linear-gradient(to right, transparent, rgba(255, 107, 53, 0.1), transparent);
}

[data-theme="light"] .info-box {
    background: #e3f2fd;
    color: #1565c0;
}

[data-theme="light"] .alert-box {
    background: #fff3e0;
    color: #e65100;
}