/*
Theme Name: Blogando Prefa - Sistema Moderno
Author: Equipe TI
Description: Sistema moderno para o blog da Prefeitura com design de dashboard profissional.
Version: 2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dashboard, modern, responsive, sidebar
Text Domain: blogandoprefa
*/

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;600&family=Red+Hat+Text:wght@300;400&display=swap');

/* === RESET E CONFIGURAÇÕES BÁSICAS === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Tipografia da Marca */
    --font-title: 'Kanit', sans-serif;
    --font-body: 'Red Hat Text', sans-serif;

    /* Paleta de Cores Principal */
    --color-brand-blue-light: #31adde;
    --color-brand-green: #73c679;
    --color-brand-yellow: #e3e036;
    --color-brand-orange: #fcb13c;
    --color-brand-dark-gray: #444444;

    /* Paleta de Cores de Apoio */
    --color-brand-beige: #F1E5D1;
    --color-brand-brown: #A05E2C;
    --color-brand-blue-dark: #00324a; /* Cor para sidebar */
    --color-brand-black: #231F20;
    --color-brand-white: #FFFFFF;
    --color-brand-background: #F8F9FA;

    /* Cores do Tema Lilás */
    --color-purple-light: #e6e0ff;
    --color-purple-dark: #d8cfff;
    --color-text-on-purple: #3c3a61;
    --color-text-on-purple-hover: #1e1d33;

    /* UI Colors */
    --color-text-light: #F1F5F9;
    --color-text-dark: #334155;
    --color-text-sidebar: #e2e8f0;

    /* Cores principais */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Backgrounds */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-sidebar: #1e293b;
    --bg-header: #ffffff;
    
    /* Textos */
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Bordas e sombras */
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Espaçamentos - REDUZIDOS */
    --spacing-xs: 3px;
    --spacing-sm: 6px;
    --spacing-md: 12px;
    --spacing-lg: 18px;
    --spacing-xl: 24px;
    --spacing-2xl: 2rem;
    
    /* Raios */
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-lg: 0.5rem;
    
    /* Layout - REDUZIDOS */
    --sidebar-width: 220px; /* Reduzido de 280px */
    --header-height: 55px; /* Reduzido de 70px */

    --color-text-dark-hover: #1e1d33;
    --border-radius: 6px; /* Reduzido de 8px */
    --card-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); /* Reduzido */
    --card-shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.06); /* Reduzido */
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-body);
    background-color: var(--color-brand-background);
    line-height: 1.6;
    overflow-x: hidden; /* Previne scroll horizontal */
}

h1, h2, h3, h4, h5, h6, .card-title, .video-card-title {
    font-family: var(--font-title);
    font-weight: 600;
    color: var(--color-brand-dark-gray);
}

/* === LAYOUT PRINCIPAL === */
.site {
    min-height: 100vh;
}

/* === SIDEBAR - NOVO DESIGN LIMPO === */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(135deg, var(--color-purple-light) 0%, var(--color-purple-dark) 100%);
    color: var(--color-text-on-purple);
    z-index: 1000;
    transition: transform 0.3s ease;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* === HEADER DO MENU === */
.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 150px;
    height: auto;
    transition: all 0.3s ease;
    animation: logoFloat 4s ease-in-out infinite;
}

.logo:hover {
    transform: scale(1.05);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* === NAVEGAÇÃO === */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 15px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin: 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    color: var(--color-text-on-purple);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav .current-menu-item > a {
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.sidebar-nav a i {
    width: 18px;
    margin-right: 10px;
    text-align: center;
    font-size: 0.8rem;
}

/* Subitens */
.sidebar-nav .sub-menu {
    background-color: rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sidebar-nav li:hover > .sub-menu {
    max-height: 300px;
}

.sidebar-nav .sub-menu a {
    padding-left: 48px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 0.8rem;
    border-left: none;
}

.sidebar-nav .sub-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Divisores */
.sidebar-nav .menu-divider {
    margin: 10px 20px;
}

.sidebar-nav .menu-divider hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
}

/* === FOOTER COM FAIXA === */
.sidebar-footer {
    flex-shrink: 0;
    margin-top: auto;
    padding: 0px 0px 0;
    position: relative;
}

/* Texto acima da faixa */
.footer-info {
    text-align: center;
    margin-bottom: 3px; /* Mais próximo da barra */
    padding: 0 15px;
}

.footer-info .dev-info {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.3;
    display: inline; /* Inline para ficar na mesma linha */
    transition: all 0.3s ease;
}

.footer-info .system-version {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0 8px; /* Margem esquerda para separar */
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block; /* Inline-block para ficar na mesma linha */
    transition: all 0.3s ease;
}

/* Efeito hover no footer info */
.footer-info:hover .dev-info {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}

.footer-info:hover .system-version {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Faixa com largura fixa */
.banner-container {
    background: url('images/faixa_botton.png') center center / contain no-repeat;
    height: 50px;
    width: 100%;
    margin: 0 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === BOTÃO TOGGLE MOBILE === */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-text-on-purple);
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* === CONTEÚDO PRINCIPAL === */
.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--color-brand-background);
    transition: margin-left 0.3s ease;
    margin-left: var(--sidebar-width);
}

.main-content {
    padding: 30px 40px;
    flex-grow: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--color-brand-background);
    min-height: 100vh;
}

.page-header {
    display: none;
}

.header-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-brand-dark-gray);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.search-form {
    position: relative;
}

.search-field {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: var(--spacing-xs) var(--spacing-md) var(--spacing-xs) 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-dark);
    width: 200px;
    transition: all 0.3s ease;
}

.search-field:focus {
    outline: none;
    border-color: var(--color-brand-blue-light);
    background-color: var(--color-brand-white);
    box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.2);
}

.search-submit {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0 var(--spacing-sm);
    cursor: pointer;
    font-size: 0.9rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-dark);
    font-size: 0.85rem;
}

.user-info i {
    font-size: 1.2rem;
    color: #94a3b8;
}

/* === CONTEÚDO === */
.site-content {
    flex: 1;
    padding: var(--spacing-md);
    max-width: 100%;
    overflow-x: hidden;
}

/* === SEÇÕES === */
.section, .content-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-brand-dark-gray);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-brand-blue-light), var(--color-brand-green));
    border-radius: 2px;
}

/* === CARDS === */
.card {
    background-color: var(--color-brand-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.card-header {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-primary);
}

.card-title {
    font-size: 1rem;
    margin: 0;
}

.card-body {
    padding: var(--spacing-md);
}

/* === SEÇÃO DE ACESSO RÁPIDO - CARDS MODERNOS === */
#acesso-rapido {
    padding: 0;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.quick-access-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.quick-access-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-brand-blue-light), var(--color-brand-green), var(--color-brand-yellow), var(--color-brand-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.quick-access-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.quick-access-item:hover::before {
    transform: scaleX(1);
}

.quick-access-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-brand-blue-light), var(--color-brand-green));
    color: var(--color-brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(49, 173, 222, 0.3);
    position: relative;
    overflow: hidden;
}

.quick-access-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.quick-access-item:hover .quick-access-icon::before {
    left: 100%;
}

/* Sistema de 4 cores principais - Azul, Verde, Amarelo, Laranja */
.quick-access-item:nth-child(4n+1):hover .quick-access-icon {
    background: linear-gradient(135deg, var(--color-brand-blue-light), var(--color-brand-green));
    transform: scale(1.1);
}

.quick-access-item:nth-child(4n+2):hover .quick-access-icon {
    background: linear-gradient(135deg, var(--color-brand-green), var(--color-brand-yellow));
    transform: scale(1.1);
}

.quick-access-item:nth-child(4n+3):hover .quick-access-icon {
    background: linear-gradient(135deg, var(--color-brand-yellow), var(--color-brand-orange));
    transform: scale(1.1);
}

.quick-access-item:nth-child(4n):hover .quick-access-icon {
    background: linear-gradient(135deg, var(--color-brand-orange), var(--color-brand-blue-light));
    transform: scale(1.1);
}

.quick-access-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--color-brand-dark-gray);
    line-height: 1.3;
}

.quick-access-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

/* === SEÇÃO DE VÍDEOS (CARROSSEL) === */
.youtube-carousel-container {
    position: relative;
    margin: var(--spacing-md) 0; /* Reduzido */
    padding: 0 var(--spacing-lg); /* Reduzido */
}

.swiper-slide {
    height: auto;
}

.youtube-slide .thumbnail-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: #f1f5f9;
    margin-bottom: var(--spacing-sm); /* Reduzido */
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.youtube-slide:hover .thumbnail-container {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-1px); /* Reduzido de -2px */
}

.youtube-slide .thumbnail-container img {
    width: 100%;
    height: 140px; /* Reduzido de auto para controlar altura */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.youtube-slide .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    width: 45px; /* Reduzido de 50px */
    height: 45px; /* Reduzido de 50px */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem; /* Reduzido */
    transition: all 0.3s ease;
    opacity: 0.9;
}

.youtube-slide:hover .play-icon {
    background-color: rgba(255, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.05); /* Reduzido */
    opacity: 1;
}

.youtube-slide .video-title {
    font-family: var(--font-title);
    font-size: 0.85rem; /* Reduzido de 0.9rem */
    font-weight: 600;
    color: var(--color-brand-dark-gray);
    margin: 0;
    line-height: 1.3; /* Reduzido */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Botões de Navegação do Swiper */
.swiper-button-next, .swiper-button-prev {
    color: var(--color-brand-blue-dark);
    top: 40%;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: 900;
}
.swiper-button-prev { left: -10px; }
.swiper-button-next { right: -10px; }

/* === LIGHTBOX DE VÍDEO === */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-lightbox .lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1120px; /* 70rem */
    aspect-ratio: 16 / 9;
}

.video-lightbox iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-lightbox .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.video-lightbox .lightbox-close:hover {
    opacity: 1;
}

/* === POSTS GRID === */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.post-card {
    background-color: var(--color-brand-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: var(--card-shadow);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.post-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.post-content {
    padding: var(--spacing-lg);
}

.post-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-brand-dark-gray);
    line-height: 1.4;
}

.post-title a {
    color: inherit;
    text-decoration: none;
}

.post-title a:hover {
    color: var(--primary);
}

.post-excerpt {
    font-size: 0.9rem;
    color: var(--color-brand-dark-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.post-meta {
    font-size: 0.8rem;
    color: var(--color-brand-dark-gray);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.post-meta i {
    margin-right: var(--spacing-xs);
}

/* === FOOTER === */
.site-footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: var(--spacing-xl);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-brand-dark-gray);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: var(--color-brand-dark-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border);
    color: var(--color-brand-dark-gray);
    font-size: 0.9rem;
}

/* === BOTÕES === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--color-brand-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    text-decoration: none;
    color: var(--color-brand-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-brand-dark-gray);
    border-color: var(--border);
}

.btn-secondary:hover {
    background-color: var(--bg-primary);
    color: var(--color-brand-dark-gray);
    text-decoration: none;
}

/* === RESPONSIVIDADE === */
@media (max-width: 1200px) {
    .sidebar {
        transform: translateX(-100%);
        box-shadow: 4px 0 15px rgba(0,0,0,0.1);
    }
    
    .sidebar.active {
        transform: translateX(0);
        box-shadow: 4px 0 15px rgba(0,0,0,0.1);
    }

    .main-wrapper {
        margin-left: 0;
    }

    .menu-toggle {
        display: flex;
        position: fixed;
        top: 15px;
        left: 18px;
        z-index: 1001;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -4px);
    }
    
    .page-header {
        padding-left: 60px;
        justify-content: flex-end;
    }

    .header-content {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .menu-toggle {
        display: flex;
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1001;
        background: var(--color-purple-dark);
        border-radius: 4px;
        padding: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .main-content {
        margin-left: 0;
        padding: 80px 20px 30px;
    }
    
    .welcome-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .welcome-text {
        font-size: 1rem;
    }
    
    .social-media-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .prominent-search-section {
        padding: 25px 20px;
    }
    
    .publication-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .publication-item {
        padding: 20px;
    }
    
    #sugestoes-contato {
        padding: 30px 20px;
    }
    
    #sugestoes-contato .suggestion-actions {
        flex-direction: column;
        align-items: center;
    }
    
    #sugestoes-contato .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .sidebar-header {
        padding: 15px;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .sidebar-nav {
        padding: 12px 0;
    }
    
    .sidebar-nav a {
        padding: 7px 15px;
        font-size: 0.8rem;
    }
    
    .sidebar-footer {
        padding: 0px 0px 0;
    }
    
    .footer-info {
        padding: 0 10px;
        margin-bottom: 2px;
    }
    
    .footer-info .dev-info {
        font-size: 0.65rem;
    }
    
    .footer-info .system-version {
        font-size: 0.6rem;
        padding: 2px 6px;
        margin-left: 6px;
    }
    
    .banner-container {
        height: 35px;
        margin: 0 0px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 280px;
    }
    
    .logo {
        max-width: 100px;
    }
    
    .sidebar-nav a {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .sidebar-nav a i {
        width: 16px;
        margin-right: 8px;
        font-size: 0.75rem;
    }
    
    .sidebar-footer {
        padding: 0px 0px 0;
    }
    
    .footer-info {
        padding: 0 8px;
        margin-bottom: 1px;
    }
    
    .footer-info .dev-info {
        font-size: 0.6rem;
    }
    
    .footer-info .system-version {
        font-size: 0.55rem;
        padding: 1px 5px;
        margin-left: 5px;
    }
    
    .banner-container {
        height: 30px;
        margin: 0 0px;
    }
    
    .main-content {
        padding: 70px 15px 20px;
    }
    
    .welcome-section {
        padding: 25px 15px;
        margin-bottom: 25px;
    }
    
    .welcome-title {
        font-size: 1.6rem;
    }
    
    .welcome-text {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .prominent-search-section {
        padding: 20px 15px;
    }
    
    .prominent-search-section .search-field {
        padding: 12px 15px 12px 40px;
        font-size: 0.9rem;
    }
    
    .publication-item {
        padding: 18px;
    }
    
    .publication-title {
        font-size: 1.1rem;
    }
    
    #sugestoes-contato {
        padding: 25px 15px;
    }
    
    #sugestoes-contato .suggestion-text p {
        font-size: 1rem;
    }
}

/* Overlay para mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 1600px) {
    .logo {
        max-width: 120px;
    }
}

/* === UTILITÁRIOS === */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

/* === MELHORIAS VISUAIS === */
.quick-access-item:focus,
.btn:focus,
.search-input:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Melhor legibilidade */
p, .post-excerpt, .quick-access-desc {
    line-height: 1.6;
}

/* Loading states */
.card.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animações sutis */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeIn 0.5s ease-out;
}

/* === VIDEO CARD === */
.video-card {
    text-decoration: none;
    color: inherit;
}

.video-card:hover {
    text-decoration: none;
    color: inherit;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
}

.video-thumbnail img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    color: #ff0000;
    opacity: 1;
}

.video-card .thumbnail-container {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.card-icon {
    color: var(--color-brand-white);
    background-color: var(--color-brand-blue-light);
}

.card-description {
    font-family: var(--font-body);
    font-weight: 300;
}

/* === SEÇÃO DE ÚLTIMAS PUBLICAÇÕES === */
#ultimas-publicacoes {
    margin-top: 2.5rem; /* Reduzido de 4rem */
    padding: var(--spacing-md); /* Reduzido */
    background-color: var(--color-brand-white);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.publication-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.publication-item {
    background: var(--color-brand-white);
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.publication-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-brand-blue-light), var(--color-brand-green), var(--color-brand-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.publication-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.publication-item:hover::before {
    transform: scaleX(1);
}

.publication-content {
    margin-bottom: 20px;
}

.publication-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-brand-dark-gray);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.publication-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.publication-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
    flex-wrap: wrap;
}

.publication-author,
.publication-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* === SEÇÃO DE SUGESTÕES === */
#sugestoes-contato {
    background: linear-gradient(135deg, var(--color-brand-blue-light) 0%, var(--color-brand-green) 100%);
    border-radius: 12px;
    padding: 40px;
    color: white;
    text-align: center;
}

#sugestoes-contato .section-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

#sugestoes-contato .section-title::after {
    background: rgba(255, 255, 255, 0.3);
    left: 50%;
    transform: translateX(-50%);
}

#sugestoes-contato .suggestion-content {
    max-width: 800px;
    margin: 0 auto;
}

#sugestoes-contato .suggestion-text {
    margin-bottom: 30px;
}

#sugestoes-contato .suggestion-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

#sugestoes-contato .suggestion-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#sugestoes-contato .btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#sugestoes-contato .btn i {
    font-size: 1.1rem;
}

#sugestoes-contato .btn-primary {
    background-color: var(--color-brand-white);
    color: var(--color-brand-blue-light);
    border: 2px solid var(--color-brand-white);
}

#sugestoes-contato .btn-primary:hover {
    background-color: transparent;
    color: var(--color-brand-white);
    border-color: var(--color-brand-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#sugestoes-contato .btn-secondary {
    background-color: transparent;
    color: var(--color-brand-white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

#sugestoes-contato .btn-secondary:hover {
    background-color: var(--color-brand-white);
    color: var(--color-brand-blue-light);
    border-color: var(--color-brand-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* === FOOTER DE SEÇÃO === */
.section-footer {
    text-align: center;
    margin-top: 30px;
}

.section-footer .btn-secondary {
    background: var(--color-brand-white);
    color: var(--color-brand-blue-light);
    border: 2px solid var(--color-brand-blue-light);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.section-footer .btn-secondary:hover {
    background: var(--color-brand-blue-light);
    color: var(--color-brand-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 173, 222, 0.3);
}

/* === SEÇÃO DE BOAS-VINDAS - HERO MODERNO === */
.welcome-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 35px;
    margin: -80px 0 40px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-brand-blue-light), var(--color-brand-green), var(--color-brand-yellow), var(--color-brand-orange));
}

.welcome-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-brand-blue-light) 0%, var(--color-brand-green) 50%, var(--color-brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.welcome-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media-links a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-brand-blue-light), var(--color-brand-green));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-media-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.social-media-links a:hover::before {
    left: 100%;
}

.social-media-links a:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 20px 40px rgba(49, 173, 222, 0.4);
}

.social-media-links a:nth-child(2) {
    background: linear-gradient(135deg, var(--color-brand-green), var(--color-brand-yellow));
}

.social-media-links a:nth-child(3) {
    background: linear-gradient(135deg, var(--color-brand-orange), var(--color-brand-yellow));
}

/* === SEÇÕES === */
.section, .content-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-brand-dark-gray);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-brand-blue-light), var(--color-brand-green));
    border-radius: 2px;
}

/* === SEÇÃO DE PESQUISA === */
.prominent-search-section {
    background: var(--color-brand-white);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.prominent-search-section .section-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
}

.prominent-search-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.prominent-search-section .search-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.prominent-search-section .search-field {
    width: 100%;
    padding: 15px 20px 15px 50px;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.prominent-search-section .search-field:focus {
    outline: none;
    border-color: var(--color-brand-blue-light);
    background: var(--color-brand-white);
    box-shadow: 0 0 0 4px rgba(49, 173, 222, 0.1);
}

.prominent-search-section .search-submit {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.1rem;
    cursor: pointer;
}

/* === ÚLTIMAS PUBLICAÇÕES === */
.publication-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.publication-item {
    background: var(--color-brand-white);
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.publication-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-brand-blue-light), var(--color-brand-green), var(--color-brand-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.publication-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.publication-item:hover::before {
    transform: scaleX(1);
}

.publication-content {
    margin-bottom: 20px;
}

.publication-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-brand-dark-gray);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.publication-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.publication-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
    flex-wrap: wrap;
}

.publication-author,
.publication-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* === SEÇÃO DE SUGESTÕES === */
#sugestoes-contato {
    background: linear-gradient(135deg, var(--color-brand-blue-light) 0%, var(--color-brand-green) 100%);
    border-radius: 12px;
    padding: 40px;
    color: white;
    text-align: center;
}

#sugestoes-contato .section-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

#sugestoes-contato .section-title::after {
    background: rgba(255, 255, 255, 0.3);
    left: 50%;
    transform: translateX(-50%);
}

#sugestoes-contato .suggestion-content {
    max-width: 800px;
    margin: 0 auto;
}

#sugestoes-contato .suggestion-text {
    margin-bottom: 30px;
}

#sugestoes-contato .suggestion-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

#sugestoes-contato .suggestion-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#sugestoes-contato .btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#sugestoes-contato .btn i {
    font-size: 1.1rem;
}

#sugestoes-contato .btn-primary {
    background-color: var(--color-brand-white);
    color: var(--color-brand-blue-light);
    border: 2px solid var(--color-brand-white);
}

#sugestoes-contato .btn-primary:hover {
    background-color: transparent;
    color: var(--color-brand-white);
    border-color: var(--color-brand-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#sugestoes-contato .btn-secondary {
    background-color: transparent;
    color: var(--color-brand-white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

#sugestoes-contato .btn-secondary:hover {
    background-color: var(--color-brand-white);
    color: var(--color-brand-blue-light);
    border-color: var(--color-brand-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* === FOOTER DE SEÇÃO === */
.section-footer {
    text-align: center;
    margin-top: 30px;
}

.section-footer .btn-secondary {
    background: var(--color-brand-white);
    color: var(--color-brand-blue-light);
    border: 2px solid var(--color-brand-blue-light);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.section-footer .btn-secondary:hover {
    background: var(--color-brand-blue-light);
    color: var(--color-brand-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 173, 222, 0.3);
}

.text-center { text-align: center; }

/* === PÁGINAS DE PUBLICAÇÕES/BLOG === */
.site-main {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 30px;
    position: relative;
}

.site-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, var(--color-brand-blue-light) 0%, var(--color-brand-green) 50%, var(--color-brand-yellow) 100%);
    z-index: 1;
}

.site-main > * {
    position: relative;
    z-index: 2;
}

/* Container dos posts */
.site-main article {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    margin: 30px auto;
    max-width: 800px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.site-main article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-brand-blue-light), var(--color-brand-green), var(--color-brand-yellow), var(--color-brand-orange));
}

/* Cabeçalho do post */
.entry-header {
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.entry-title {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, var(--color-brand-blue-light) 0%, var(--color-brand-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.entry-title a {
    text-decoration: none;
    background: linear-gradient(135deg, var(--color-brand-blue-light) 0%, var(--color-brand-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.entry-title a:hover {
    background: linear-gradient(135deg, var(--color-brand-green) 0%, var(--color-brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Meta informações */
.entry-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #64748b;
    flex-wrap: wrap;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Conteúdo do post */
.entry-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 30px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h1, .entry-content h2, .entry-content h3, 
.entry-content h4, .entry-content h5, .entry-content h6 {
    font-family: var(--font-title);
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: var(--color-brand-dark-gray);
}

.entry-content h2 {
    font-size: 1.5rem;
    border-left: 4px solid var(--color-brand-blue-light);
    padding-left: 16px;
}

.entry-content h3 {
    font-size: 1.3rem;
}

.entry-content ul, .entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 8px;
}

.entry-content blockquote {
    background: rgba(49, 173, 222, 0.1);
    border-left: 4px solid var(--color-brand-blue-light);
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

/* Imagem destacada */
.post-thumbnail,
.entry-content img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    max-width: 100%;
    height: auto;
}

/* Footer do post */
.entry-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

/* Navegação entre posts */
.posts-navigation,
.post-navigation {
    margin: 40px auto;
    max-width: 800px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-previous,
.nav-next {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex: 1;
    min-width: 200px;
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: var(--color-brand-dark-gray);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: var(--color-brand-blue-light);
}

/* Responsividade para páginas de publicação */
@media (max-width: 768px) {
    .site-main {
        padding: 20px 15px;
    }
    
    .site-main::before {
        height: 80px;
    }
    
    .site-main article {
        padding: 25px 20px;
        margin: 20px auto;
    }
    
    .entry-title {
        font-size: 1.6rem;
    }
    
    .entry-content {
        font-size: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .site-main {
        padding: 15px 10px;
    }
    
    .site-main article {
        padding: 20px 15px;
    }
    
    .entry-title {
        font-size: 1.4rem;
    }
    
    .entry-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

 