/* Imagem destacada grande no topo do post - Container retangular 2:1 */
.single-featured-image {
    width: calc(100% + 4rem);
    margin: -2rem -2rem 2rem -2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
}

.featured-image-large {
    width: 100%;
    aspect-ratio: 2/1; /* Proporção 2:1 (6x3) */
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    background: var(--neutral-100);
}

/* Responsivo para imagem destacada */
@media (max-width: 768px) {
    .featured-image-large {
        aspect-ratio: 16/9; /* Em mobile usa proporção 16:9 */
        border-radius: 12px;
    }
}

/* Veja também - outros posts */
.see-also-posts {
    margin-top: var(--space-16);
    padding: var(--space-8);
    border-top: 1px solid var(--neutral-200);
    background: var(--neutral-50);
    border-radius: 16px;
}
.see-also-posts h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--primary-700);
    text-align: center;
}
.see-also-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-6);
}
.see-also-post-card {
    background: var(--neutral-0);
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    padding: var(--space-4);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.see-also-thumb {
    width: 100%;
    max-width: 180px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--space-3);
}
.see-also-content h4 {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}
.see-also-content h4 a {
    color: var(--primary-700);
    text-decoration: none;
    transition: color 0.2s;
}
.see-also-content h4 a:hover {
    color: var(--primary-500);
}

/*
Theme Name: Assis Castro Blog v3
Description: Tema WordPress com layout 70/30 para blog da Dra. Débora Assis Castro - Advocacia Especializada. Layout de 2 colunas com sidebar fixa. Versão 3 com melhorias visuais e sugestões de posts.
Author: WordPress Theme Developer
Version: 3.0.1
Text Domain: assis-castro-blog-v3
Domain Path: /languages
License: GPL v2 or later
Tags: blog, professional, lawyer, modern, minimal, responsive, SEO, sidebar
*/

:root {
    /* Paleta Ultra Contemporânea 2025 - Baseada no site principal */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;
    
    --accent-50: #fef7ff;
    --accent-100: #fdf4ff;
    --accent-200: #fae8ff;
    --accent-300: #f5d0fe;
    --accent-400: #e879f9;
    --accent-500: #d946ef;
    --accent-600: #c026d3;
    --accent-700: #a21caf;
    --accent-800: #86198f;
    --accent-900: #701a75;
    
    --neutral-0: #ffffff;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Cores OAB Oficiais */
    --oab-blue: #003366;
    --oab-blue-light: #004080;
    --oab-blue-lighter: #e6f2ff;
    
    /* Gradientes Minimalistas */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    --gradient-oab: linear-gradient(135deg, var(--oab-blue) 0%, var(--oab-blue-light) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
    --gradient-mesh: radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 70%),
                    radial-gradient(circle at 80% 20%, rgba(217, 70, 239, 0.05) 0%, transparent 70%),
                    radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Sans', sans-serif;
    
    /* Sombras Ultra Sutis */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.04), 0 4px 6px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.02);
    --shadow-oab: 0 8px 25px rgba(0, 51, 102, 0.3);
    
    /* Transições Fluidas */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-normal: 0.4s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);
    
    /* Espaçamentos Harmônicos */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
}

/* ===================
   RESET E BASE
=================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.7;
    color: var(--neutral-700);
    background: var(--neutral-0);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (min-width: 768px) {
    .container { 
        padding: 0 var(--space-8); 
    }
}

/* ===================
   HEADER FLUTUANTE MINIMALISTA
=================== */
.site-header {
    position: fixed;
    top: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - var(--space-12));
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    transition: var(--transition-normal);
    opacity: 0;
    animation: fadeInDown 1s var(--ease-out-expo) 0.2s forwards;
}

@keyframes fadeInDown {
    from { 
        opacity: 0; 
        transform: translateX(-50%) translateY(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0); 
    }
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
    transform: translateX(-50%) scale(0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-8);
}

.site-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-900);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: var(--transition-fast);
}

.site-title:hover {
    color: var(--primary-600);
    transform: scale(1.02);
}

.main-navigation {
    display: flex;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition-fast);
    padding: var(--space-2) 0;
}

.nav-link:hover {
    color: var(--neutral-900);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    background: var(--neutral-900);
    color: var(--neutral-0);
    padding: var(--space-3) var(--space-6);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.header-cta:hover {
    background: transparent;
    color: var(--neutral-900);
    border-color: var(--neutral-900);
    transform: translateY(-1px);
}

/* ===================
   LAYOUT PRINCIPAL 70% + 30%
=================== */
.main-content {
    min-height: 100vh;
    background: var(--gradient-mesh);
    padding-top: 140px;
    padding-bottom: var(--space-32);
}

.main-container {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.content-area {
    background: var(--neutral-0);
    border-radius: 24px;
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
}

.sidebar {
    position: sticky;
    top: 160px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 65% 35%;
    }
}

@media (max-width: 768px) {
    .main-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .sidebar {
        position: static;
        margin-top: var(--space-8);
    }
    
    .content-area {
        padding: var(--space-6);
    }
}

/* ===================
   HEADER DO BLOG
=================== */
.blog-header {
    text-align: center;
    margin-bottom: var(--space-12);
    opacity: 0;
    animation: slideInUp 1s var(--ease-out-expo) 0.3s forwards;
}

@keyframes slideInUp {
    from { 
        opacity: 0; 
        transform: translateY(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.blog-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
    letter-spacing: -0.03em;
}

.blog-header .highlight {
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-header p {
    font-size: 1.125rem;
    color: var(--neutral-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================
   LISTA DE POSTS (1 POR LINHA)
=================== */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.blog-post {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-6);
    padding: var(--space-6);
    background: var(--neutral-0);
    border: 1px solid var(--neutral-200);
    border-radius: 16px;
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s var(--ease-out-expo) forwards;
}

.blog-post:nth-child(1) { animation-delay: 0.1s; }
.blog-post:nth-child(2) { animation-delay: 0.2s; }
.blog-post:nth-child(3) { animation-delay: 0.3s; }
.blog-post:nth-child(4) { animation-delay: 0.4s; }
.blog-post:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.blog-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--neutral-300);
}

.post-thumbnail {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--neutral-100);
}

.post-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-3);
    font-size: 0.85rem;
    color: var(--neutral-500);
}

.post-date {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.post-category {
    background: var(--primary-100);
    color: var(--primary-700);
    padding: var(--space-1) var(--space-3);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
    border: 1px solid var(--primary-200);
}

.post-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--neutral-900);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.post-title a:hover {
    color: var(--primary-600);
}

.post-excerpt {
    color: var(--neutral-600);
    margin-bottom: var(--space-4);
    line-height: 1.6;
    font-size: 0.95rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--primary-700);
    transform: translateX(4px);
}

.read-more svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.read-more:hover svg {
    transform: translateX(2px);
}

/* Responsivo para posts */
@media (max-width: 768px) {
    .blog-post {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .post-thumbnail {
        width: 100%;
        height: 180px;
    }
}

/* ===================
   CARD OAB MODERNO INSPIRADO
=================== */
.oab-card-modern {
    background: white;
    border-radius: 20px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.04);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: visible; /* Permite que a foto saia do card */
    margin-bottom: var(--space-6);
    margin-top: 60px; /* Espaço extra no topo para acomodar foto */
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.oab-card-modern:hover {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 8px 15px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

/* Conteúdo do card moderno - padding ajustado para acomodar foto */
.modern-card-content {
    padding: 80px 16px 32px 16px; /* Padding top maior para acomodar foto */
    position: relative;
    z-index: 2;
}

/* Container da foto premium - ajustado para foto aparecer completamente */
.lawyer-photo-container {
    position: relative;
    top: -60px; /* Move o container para cima para a foto sair do card */
    left: 0;
    transform: none;
    z-index: 10;
    margin-bottom: -40px; /* Compensa o espaço movido para cima */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px; /* Aumentado para acomodar melhor a foto */
    height: 140px; /* Aumentado para acomodar melhor a foto */
    margin-left: auto;
    margin-right: auto;
}

/* Brilho da foto - ajustado para novo tamanho e posição */
.photo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px; /* Aumentado para acomodar foto maior */
    height: 150px; /* Aumentado para acomodar foto maior */
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: gentle-pulse 4s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05); 
        opacity: 0.6; 
    }
}

/* Anel animado - ajustado para novo tamanho e posição */
.photo-ring-enhanced {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 145px; /* Aumentado para acomodar foto maior */
    height: 145px; /* Aumentado para acomodar foto maior */
    border: 2px solid transparent;
    border-top: 2px solid rgba(220, 38, 38, 0.6);
    border-right: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    animation: smooth-orbit 6s linear infinite;
}

@keyframes smooth-orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Wrapper da foto */
.photo-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Foto premium - ajustada para aparecer completamente sem corte */
.lawyer-photo-premium {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: contain; /* Alterado para não cortar a imagem */
    object-position: center center;
    border: 4px solid white;
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: var(--neutral-100);
}

.photo-wrapper:hover .lawyer-photo-premium {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.08);
}

/* Indicador online */
.online-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: #10B981;
    border: 3px solid white;
    border-radius: 50%;
    z-index: 3;
    animation: online-pulse 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.online-indicator:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
}

@keyframes online-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* Card OAB flutuante - ajustado para nova posição da foto */
.floating-oab-card {
    position: absolute;
    top: 15px; /* Ajustado para nova posição */
    right: 15px; /* Ajustado para nova posição */
    transform: none;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 7;
    animation: gentle-pulse 2s ease-in-out infinite; /* Animação mais sutil */
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-oab-card:hover {
    transform: scale(1.1);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 8px 15px rgba(0, 0, 0, 0.1);
}

.floating-oab-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Nome profissional */
.lawyer-name {
    color: #1F2937;
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
    position: relative;
    z-index: 5;
    font-family: var(--font-display);
}

/* Chip OAB premium */
.oab-registration-chip-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(146, 64, 14, 0.2);
    box-shadow: 0 3px 8px rgba(146, 64, 14, 0.15);
    transition: all 0.3s ease;
}

.oab-registration-chip-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(146, 64, 14, 0.2);
}

.chip-oab-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.8;
}

/* Especialidades modernas */
.specialties-modern {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.specialty-badge-modern {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: #1E40AF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
}

.specialty-badge-modern:hover {
    background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

/* Bio profissional - largura aumentada */
.lawyer-bio {
    color: #4B5563;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 35px 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

/* Botão de contato premium */
.contact-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1F2937;
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
    border: 1px solid transparent;
}

/* Brilho do botão */
.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3B82F6, #8B5CF6, #06B6D4);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-btn-premium:hover .btn-glow {
    opacity: 0.7;
}

/* Efeito de brilho passando */
.btn-shine {
    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 ease;
}

.contact-btn-premium:hover .btn-shine {
    left: 100%;
}

.contact-btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    background: #374151;
    box-shadow: 0 12px 30px rgba(31, 41, 55, 0.25);
}

/* Ícone do botão */
.btn-icon {
    transition: all 0.3s ease;
}

.contact-btn-premium:hover .btn-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Elementos decorativos */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.corner-accent {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 1.5px solid rgba(220, 38, 38, 0.15);
}

.top-left {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
}

.subtle-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
}

/* Responsivo */
@media (max-width: 768px) {
    .oab-card-modern {
        border-radius: 16px;
    }
    
    .modern-card-content {
        padding: 70px 20px 30px;
    }
    
    .lawyer-photo-premium {
        width: 120px;
        height: 120px;
    }
    
    .lawyer-photo-container {
        top: -60px;
    }
    
    .floating-oab-card {
        right: 8px; /* Ajustado para dentro do card */
        top: 8px; /* Ajustado */
        width: 28px;
        height: 28px;
        padding: 6px;
    }
    
    .floating-oab-logo {
        width: 14px;
        height: 14px;
    }
    
    .lawyer-name {
        font-size: 1.4rem;
    }
    
    .lawyer-bio {
        margin: 0 6px 25px 6px; /* Reduzido padding lateral para mobile também */
        font-size: 0.85rem;
    }
    
    .contact-btn-premium {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .specialty-badge-modern {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* ===================
   WIDGET TITLE ATUALIZADO
=================== */
.widget-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
    letter-spacing: -0.02em;
}

.oab-card-modern .widget-title {
    display: none; /* Remove o título pois o card é auto-explicativo */
}

/* ===================
   SIDEBAR WIDGETS
=================== */
.sidebar-widget {
    background: var(--neutral-0);
    border: 1px solid var(--neutral-200);
    border-radius: 16px;
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--neutral-300);
}

.widget-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
    letter-spacing: -0.02em;
}

.widget-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    margin-top: var(--space-2);
}

/* Widget Artigos Mais Lidos */
.popular-posts {
    list-style: none;
}

.popular-post-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--neutral-100);
    transition: var(--transition-fast);
}

.popular-post-item:last-child {
    border-bottom: none;
}

.popular-post-item:hover {
    background: var(--neutral-50);
    border-radius: 8px;
    padding: var(--space-3);
    margin: 0 calc(-1 * var(--space-3));
}

.popular-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--neutral-100);
}

.popular-post-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-1);
    color: var(--neutral-900);
}

.popular-post-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.popular-post-content h4 a:hover {
    color: var(--primary-600);
}

.popular-post-date {
    font-size: 0.8rem;
    color: var(--neutral-500);
}

/* Widget Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.newsletter-input {
    padding: var(--space-3);
    border: 1px solid var(--neutral-300);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.1);
}

.newsletter-btn {
    background: var(--gradient-primary);
    color: var(--neutral-0);
    padding: var(--space-3) var(--space-4);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Widget Sobre a Autora (Resumido) */
.about-author-widget {
    text-align: center;
}

.about-author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-4);
    border: 3px solid var(--oab-blue);
}

.about-author-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--neutral-900);
}

.about-author-title {
    color: var(--oab-blue);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-3);
}

.about-author-bio {
    font-size: 0.85rem;
    color: var(--neutral-600);
    line-height: 1.5;
    margin-bottom: var(--space-4);
}

.about-author-cta {
    background: var(--oab-blue);
    color: var(--neutral-0);
    padding: var(--space-2) var(--space-4);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.about-author-cta:hover {
    background: var(--oab-blue-light);
    transform: translateY(-1px);
}

/* ===================
   SINGLE POST STYLES
=================== */
.single-post-header {
    text-align: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--neutral-200);
}

.single-post-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--neutral-900);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.single-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--neutral-500);
}

.single-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--neutral-700);
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--neutral-900);
    margin: var(--space-8) 0 var(--space-4);
    letter-spacing: -0.02em;
}

.single-post-content h2 {
    font-size: 1.75rem;
}

.single-post-content h3 {
    font-size: 1.5rem;
}

.single-post-content h4 {
    font-size: 1.25rem;
}

.single-post-content p {
    margin-bottom: var(--space-6);
}

.single-post-content ul,
.single-post-content ol {
    margin: var(--space-4) 0 var(--space-6) var(--space-8);
}

.single-post-content li {
    margin-bottom: var(--space-2);
}

.single-post-content blockquote {
    background: var(--neutral-50);
    border-left: 4px solid var(--primary-500);
    padding: var(--space-6);
    margin: var(--space-8) 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--neutral-600);
}

/* ===================
   NAVEGAÇÃO ENTRE POSTS
=================== */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-16);
    padding-top: var(--space-8);
    border-top: 1px solid var(--neutral-200);
}

.nav-post {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: 16px;
    padding: var(--space-6);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-post:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-post-label {
    font-size: 0.8rem;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.nav-post-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neutral-900);
    line-height: 1.3;
}

.nav-post.prev {
    text-align: left;
}

.nav-post.next {
    text-align: right;
}

@media (max-width: 768px) {
    .post-navigation {
        grid-template-columns: 1fr;
    }
}

/* ===================
   PAGINAÇÃO
=================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-16);
}

.pagination a,
.pagination span {
    padding: var(--space-3) var(--space-4);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.pagination a {
    background: var(--neutral-100);
    color: var(--neutral-700);
    border: 1px solid var(--neutral-200);
}

.pagination a:hover {
    background: var(--neutral-900);
    color: var(--neutral-0);
    border-color: var(--neutral-900);
    transform: translateY(-1px);
}

.pagination .current {
    background: var(--neutral-900);
    color: var(--neutral-0);
    border: 1px solid var(--neutral-900);
}

/* ===================
   CTA CONTATO
=================== */
.contact-cta {
    background: var(--neutral-900);
    color: var(--neutral-0);
    text-align: center;
    padding: var(--space-12);
    border-radius: 24px;
    margin: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(217, 70, 239, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-cta h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 2;
}

.contact-cta .highlight {
    color: var(--primary-400);
}

.contact-cta p {
    font-size: 1.125rem;
    margin-bottom: var(--space-8);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.btn-whatsapp {
    background: var(--success);
    color: var(--neutral-0);
    padding: var(--space-4) var(--space-8);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    transition: var(--transition-fast);
    border: 1px solid transparent;
    position: relative;
    z-index: 2;
}

.btn-whatsapp:hover {
    background: var(--neutral-0);
    color: var(--success);
    border-color: var(--success);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===================
   FOOTER ULTRA CLEAN
=================== */
.site-footer {
    background: var(--neutral-50);
    border-top: 1px solid var(--neutral-200);
    text-align: center;
    padding: var(--space-16) 0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--neutral-500);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    padding: var(--space-2) 0;
}

.footer-links a:hover {
    color: var(--neutral-700);
    transform: translateY(-1px);
}

.footer-info p {
    color: var(--neutral-400);
    font-size: 0.85rem;
    margin-bottom: var(--space-2);
}

/* ===================
   FLOATING WHATSAPP MINIMALISTA
=================== */
.floating-whatsapp {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    background: var(--success);
    color: var(--neutral-0);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: var(--transition-fast);
    border: 3px solid var(--neutral-0);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    background: var(--neutral-900);
}

.floating-whatsapp svg {
    width: 24px;
    height: 24px;
}

/* ===================
   ANIMAÇÕES DE MICRO-INTERAÇÃO
=================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Otimizações para motion reduzido */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .site-header {
        animation: none;
        opacity: 1;
    }
    
    .blog-post {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   ESPECÍFICOS WORDPRESS - OAB CARD MODERN
   ========================================================================== */

/* Garantir que os estilos do OAB Card sejam aplicados no WordPress */
.sidebar .sidebar-widget.oab-card-modern {
    background: white !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07) !important;
}

.sidebar .sidebar-widget.oab-card-modern:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.sidebar .sidebar-widget.oab-card-modern .modern-card-content {
    padding: 80px 24px 32px 24px !important;
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
}

/* Força aplicação das logos */
.sidebar .floating-oab-logo,
.sidebar .chip-oab-logo {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
}

.sidebar .floating-oab-logo {
    width: 18px !important;
    height: 18px !important;
}

.sidebar .chip-oab-logo {
    width: 16px !important;
    height: 16px !important;
}


/* Veja também - outros posts */
.see-also-posts {
    margin-top: var(--space-16);
    padding-top: var(--space-8);
    border-top: 1px solid var(--neutral-200);
}
.see-also-posts h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--primary-700);
    text-align: center;
}
.see-also-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-6);
}
.see-also-post-card {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    padding: var(--space-4);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.see-also-thumb {
    width: 100%;
    max-width: 180px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--space-3);
}
.see-also-content h4 {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}
.see-also-content h4 a {
    color: var(--primary-700);
    text-decoration: none;
    transition: color 0.2s;
}
.see-also-content h4 a:hover {
    color: var(--primary-500);
}

/* Ajuste para foto da advogada não cortar - removido pois foi ajustado acima */
/*
Theme Name: Assis Castro Blog v3
Description: Tema WordPress com layout 70/30 para blog da Dra. Débora Assis Castro - Advocacia Especializada. Layout de 2 colunas com sidebar fixa. Versão 3 com melhorias visuais e sugestões de posts.
Author: WordPress Theme Developer
Version: 3.0.0
Text Domain: assis-castro-blog-v3
Domain Path: /languages
License: GPL v2 or later
Tags: blog, professional, lawyer, modern, minimal, responsive, SEO, sidebar
*/

:root {
    /* Paleta Ultra Contemporânea 2025 - Baseada no site principal */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;
    
    --accent-50: #fef7ff;
    --accent-100: #fdf4ff;
    --accent-200: #fae8ff;
    --accent-300: #f5d0fe;
    --accent-400: #e879f9;
    --accent-500: #d946ef;
    --accent-600: #c026d3;
    --accent-700: #a21caf;
    --accent-800: #86198f;
    --accent-900: #701a75;
    
    --neutral-0: #ffffff;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Cores OAB Oficiais */
    --oab-blue: #003366;
    --oab-blue-light: #004080;
    --oab-blue-lighter: #e6f2ff;
    
    /* Gradientes Minimalistas */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    --gradient-oab: linear-gradient(135deg, var(--oab-blue) 0%, var(--oab-blue-light) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
    --gradient-mesh: radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 70%),
                    radial-gradient(circle at 80% 20%, rgba(217, 70, 239, 0.05) 0%, transparent 70%),
                    radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Sans', sans-serif;
    
    /* Sombras Ultra Sutis */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.04), 0 4px 6px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.02);
    --shadow-oab: 0 8px 25px rgba(0, 51, 102, 0.3);
    
    /* Transições Fluidas */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-normal: 0.4s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);
    
    /* Espaçamentos Harmônicos */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
}

/* ===================
   RESET E BASE
=================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.7;
    color: var(--neutral-700);
    background: var(--neutral-0);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (min-width: 768px) {
    .container { 
        padding: 0 var(--space-8); 
    }
}

/* ===================
   HEADER FLUTUANTE MINIMALISTA
=================== */
.site-header {
    position: fixed;
    top: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - var(--space-12));
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    transition: var(--transition-normal);
    opacity: 0;
    animation: fadeInDown 1s var(--ease-out-expo) 0.2s forwards;
}

@keyframes fadeInDown {
    from { 
        opacity: 0; 
        transform: translateX(-50%) translateY(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0); 
    }
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
    transform: translateX(-50%) scale(0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-8);
}

.site-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-900);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: var(--transition-fast);
}

.site-title:hover {
    color: var(--primary-600);
    transform: scale(1.02);
}

.main-navigation {
    display: flex;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition-fast);
    padding: var(--space-2) 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

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

.header-cta {
    background: var(--neutral-900);
    color: var(--neutral-0);
    padding: var(--space-3) var(--space-6);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.header-cta:hover {
    background: transparent;
    color: var(--neutral-900);
    border-color: var(--neutral-900);
    transform: translateY(-1px);
}

/* ===================
   LAYOUT PRINCIPAL 70% + 30%
=================== */
.main-content {
    min-height: 100vh;
    background: var(--gradient-mesh);
    padding-top: 140px;
    padding-bottom: var(--space-32);
}

.main-container {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.content-area {
    background: var(--neutral-0);
    border-radius: 24px;
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
}

.sidebar {
    position: sticky;
    top: 160px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 65% 35%;
    }
}

@media (max-width: 768px) {
    .main-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .sidebar {
        position: static;
        margin-top: var(--space-8);
    }
    
    .content-area {
        padding: var(--space-6);
    }
}

/* ===================
   HEADER DO BLOG
=================== */
.blog-header {
    text-align: center;
    margin-bottom: var(--space-12);
    opacity: 0;
    animation: slideInUp 1s var(--ease-out-expo) 0.3s forwards;
}

@keyframes slideInUp {
    from { 
        opacity: 0; 
        transform: translateY(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.blog-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
    letter-spacing: -0.03em;
}

.blog-header .highlight {
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-header p {
    font-size: 1.125rem;
    color: var(--neutral-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================
   LISTA DE POSTS (1 POR LINHA)
=================== */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.blog-post {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-6);
    padding: var(--space-6);
    background: var(--neutral-0);
    border: 1px solid var(--neutral-200);
    border-radius: 16px;
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s var(--ease-out-expo) forwards;
}

.blog-post:nth-child(1) { animation-delay: 0.1s; }
.blog-post:nth-child(2) { animation-delay: 0.2s; }
.blog-post:nth-child(3) { animation-delay: 0.3s; }
.blog-post:nth-child(4) { animation-delay: 0.4s; }
.blog-post:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.blog-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--neutral-300);
}

.post-thumbnail {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--neutral-100);
}

.post-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-3);
    font-size: 0.85rem;
    color: var(--neutral-500);
}

.post-date {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.post-category {
    background: var(--primary-100);
    color: var(--primary-700);
    padding: var(--space-1) var(--space-3);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
    border: 1px solid var(--primary-200);
}

.post-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--neutral-900);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

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

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

.post-excerpt {
    color: var(--neutral-600);
    margin-bottom: var(--space-4);
    line-height: 1.6;
    font-size: 0.95rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--primary-700);
    transform: translateX(4px);
}

.read-more svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.read-more:hover svg {
    transform: translateX(2px);
}

/* Responsivo para posts */
@media (max-width: 768px) {
    .blog-post {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .post-thumbnail {
        width: 100%;
        height: 180px;
    }
}

/* ===================
   CARD OAB MODERNO INSPIRADO
=================== */
.oab-card-modern {
    background: white;
    border-radius: 20px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.04);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: visible; /* Permite que a foto saia do card */
    margin-bottom: var(--space-6);
    margin-top: 60px; /* Espaço extra no topo para acomodar foto */
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.oab-card-modern:hover {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 8px 15px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

/* Conteúdo do card moderno - padding ajustado para acomodar foto */
.modern-card-content {
    padding: 80px 16px 32px 16px; /* Padding top maior para acomodar foto */
    position: relative;
    z-index: 2;
}

/* Container da foto premium - ajustado para foto aparecer completamente */
.lawyer-photo-container {
    position: relative;
    top: -60px; /* Move o container para cima para a foto sair do card */
    left: 0;
    transform: none;
    z-index: 10;
    margin-bottom: -40px; /* Compensa o espaço movido para cima */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px; /* Aumentado para acomodar melhor a foto */
    height: 140px; /* Aumentado para acomodar melhor a foto */
    margin-left: auto;
    margin-right: auto;
}

/* Brilho da foto - ajustado para novo tamanho e posição */
.photo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px; /* Aumentado para acomodar foto maior */
    height: 150px; /* Aumentado para acomodar foto maior */
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: gentle-pulse 4s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05); 
        opacity: 0.6; 
    }
}

/* Anel animado - ajustado para novo tamanho e posição */
.photo-ring-enhanced {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 145px; /* Aumentado para acomodar foto maior */
    height: 145px; /* Aumentado para acomodar foto maior */
    border: 2px solid transparent;
    border-top: 2px solid rgba(220, 38, 38, 0.6);
    border-right: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    animation: smooth-orbit 6s linear infinite;
}

@keyframes smooth-orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Wrapper da foto */
.photo-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Foto premium - ajustada para aparecer completamente sem corte */
.lawyer-photo-premium {
    width: 130px; /* Aumentado para acomodar melhor a foto */
    height: 130px; /* Aumentado para acomodar melhor a foto */
    border-radius: 50%;
    object-fit: cover; /* Voltou para cover mas com tamanho maior */
    object-position: center center; /* Garante centralização */
    border: 4px solid white; /* Voltou para 4px */
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.15), /* Sombra maior */
        0 6px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.photo-wrapper:hover .lawyer-photo-premium {
    transform: scale(1.03) translateY(-2px); /* Reduzido hover effect */
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.08);
}

/* Indicador online */
.online-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: #10B981;
    border: 3px solid white;
    border-radius: 50%;
    z-index: 3;
    animation: online-pulse 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.online-indicator:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
}

@keyframes online-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* Card OAB flutuante - ajustado para nova posição da foto */
.floating-oab-card {
    position: absolute;
    top: 15px; /* Ajustado para nova posição */
    right: 15px; /* Ajustado para nova posição */
    transform: none;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 7;
    animation: gentle-pulse 2s ease-in-out infinite; /* Animação mais sutil */
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-oab-card:hover {
    transform: scale(1.1);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 8px 15px rgba(0, 0, 0, 0.1);
}

.floating-oab-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Nome profissional */
.lawyer-name {
    color: #1F2937;
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
    position: relative;
    z-index: 5;
    font-family: var(--font-display);
}

/* Chip OAB premium */
.oab-registration-chip-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(146, 64, 14, 0.2);
    box-shadow: 0 3px 8px rgba(146, 64, 14, 0.15);
    transition: all 0.3s ease;
}

.oab-registration-chip-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(146, 64, 14, 0.2);
}

.chip-oab-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.8;
}

/* Especialidades modernas */
.specialties-modern {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.specialty-badge-modern {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: #1E40AF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
}

.specialty-badge-modern:hover {
    background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

/* Bio profissional - largura aumentada */
.lawyer-bio {
    color: #4B5563;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 8px 35px 8px; /* Reduzido de 30px para 8px lateral */
    text-align: center;
    position: relative;
    z-index: 5;
}

/* Botão de contato premium */
.contact-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1F2937;
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
    border: 1px solid transparent;
}

/* Brilho do botão */
.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3B82F6, #8B5CF6, #06B6D4);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-btn-premium:hover .btn-glow {
    opacity: 0.7;
}

/* Efeito de brilho passando */
.btn-shine {
    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 ease;
}

.contact-btn-premium:hover .btn-shine {
    left: 100%;
}

.contact-btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    background: #374151;
    box-shadow: 0 12px 30px rgba(31, 41, 55, 0.25);
}

/* Ícone do botão */
.btn-icon {
    transition: all 0.3s ease;
}

.contact-btn-premium:hover .btn-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Elementos decorativos */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.corner-accent {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 1.5px solid rgba(220, 38, 38, 0.15);
}

.top-left {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
}

.subtle-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
}

/* Responsivo */
@media (max-width: 768px) {
    .oab-card-modern {
        border-radius: 16px;
    }
    
    .modern-card-content {
        padding: 70px 20px 30px;
    }
    
    .lawyer-photo-premium {
        width: 120px;
        height: 120px;
    }
    
    .lawyer-photo-container {
        top: -60px;
    }
    
    .floating-oab-card {
        right: 8px; /* Ajustado para dentro do card */
        top: 8px; /* Ajustado */
        width: 28px;
        height: 28px;
        padding: 6px;
    }
    
    .floating-oab-logo {
        width: 14px;
        height: 14px;
    }
    
    .lawyer-name {
        font-size: 1.4rem;
    }
    
    .lawyer-bio {
        margin: 0 6px 25px 6px; /* Reduzido padding lateral para mobile também */
        font-size: 0.85rem;
    }
    
    .contact-btn-premium {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .specialty-badge-modern {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* ===================
   WIDGET TITLE ATUALIZADO
=================== */
.widget-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
    letter-spacing: -0.02em;
}

.oab-card-modern .widget-title {
    display: none; /* Remove o título pois o card é auto-explicativo */
}

/* ===================
   SIDEBAR WIDGETS
=================== */
.sidebar-widget {
    background: var(--neutral-0);
    border: 1px solid var(--neutral-200);
    border-radius: 16px;
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--neutral-300);
}

.widget-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
    letter-spacing: -0.02em;
}

.widget-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    margin-top: var(--space-2);
}

/* Widget Artigos Mais Lidos */
.popular-posts {
    list-style: none;
}

.popular-post-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--neutral-100);
    transition: var(--transition-fast);
}

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

.popular-post-item:hover {
    background: var(--neutral-50);
    border-radius: 8px;
    padding: var(--space-3);
    margin: 0 calc(-1 * var(--space-3));
}

.popular-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--neutral-100);
}

.popular-post-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-1);
    color: var(--neutral-900);
}

.popular-post-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.popular-post-content h4 a:hover {
    color: var(--primary-600);
}

.popular-post-date {
    font-size: 0.8rem;
    color: var(--neutral-500);
}

/* Widget Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.newsletter-input {
    padding: var(--space-3);
    border: 1px solid var(--neutral-300);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.1);
}

.newsletter-btn {
    background: var(--gradient-primary);
    color: var(--neutral-0);
    padding: var(--space-3) var(--space-4);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Widget Sobre a Autora (Resumido) */
.about-author-widget {
    text-align: center;
}

.about-author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-4);
    border: 3px solid var(--oab-blue);
}

.about-author-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--neutral-900);
}

.about-author-title {
    color: var(--oab-blue);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-3);
}

.about-author-bio {
    font-size: 0.85rem;
    color: var(--neutral-600);
    line-height: 1.5;
    margin-bottom: var(--space-4);
}

.about-author-cta {
    background: var(--oab-blue);
    color: var(--neutral-0);
    padding: var(--space-2) var(--space-4);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.about-author-cta:hover {
    background: var(--oab-blue-light);
    transform: translateY(-1px);
}

/* ===================
   SINGLE POST STYLES
=================== */
.single-post-header {
    text-align: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--neutral-200);
}

.single-post-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--neutral-900);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.single-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--neutral-500);
}

.single-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--neutral-700);
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--neutral-900);
    margin: var(--space-8) 0 var(--space-4);
    letter-spacing: -0.02em;
}

.single-post-content h2 {
    font-size: 1.75rem;
}

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

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

.single-post-content p {
    margin-bottom: var(--space-6);
}

.single-post-content ul,
.single-post-content ol {
    margin: var(--space-4) 0 var(--space-6) var(--space-8);
}

.single-post-content li {
    margin-bottom: var(--space-2);
}

.single-post-content blockquote {
    background: var(--neutral-50);
    border-left: 4px solid var(--primary-500);
    padding: var(--space-6);
    margin: var(--space-8) 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--neutral-600);
}

/* ===================
   NAVEGAÇÃO ENTRE POSTS
=================== */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-16);
    padding-top: var(--space-8);
    border-top: 1px solid var(--neutral-200);
}

.nav-post {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: 16px;
    padding: var(--space-6);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-post:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-post-label {
    font-size: 0.8rem;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.nav-post-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neutral-900);
    line-height: 1.3;
}

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

.nav-post.next {
    text-align: right;
}

@media (max-width: 768px) {
    .post-navigation {
        grid-template-columns: 1fr;
    }
}

/* ===================
   PAGINAÇÃO
=================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-16);
}

.pagination a,
.pagination span {
    padding: var(--space-3) var(--space-4);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.pagination a {
    background: var(--neutral-100);
    color: var(--neutral-700);
    border: 1px solid var(--neutral-200);
}

.pagination a:hover {
    background: var(--neutral-900);
    color: var(--neutral-0);
    border-color: var(--neutral-900);
    transform: translateY(-1px);
}

.pagination .current {
    background: var(--neutral-900);
    color: var(--neutral-0);
    border: 1px solid var(--neutral-900);
}

/* ===================
   CTA CONTATO
=================== */
.contact-cta {
    background: var(--neutral-900);
    color: var(--neutral-0);
    text-align: center;
    padding: var(--space-12);
    border-radius: 24px;
    margin: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(217, 70, 239, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-cta h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 2;
}

.contact-cta .highlight {
    color: var(--primary-400);
}

.contact-cta p {
    font-size: 1.125rem;
    margin-bottom: var(--space-8);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.btn-whatsapp {
    background: var(--success);
    color: var(--neutral-0);
    padding: var(--space-4) var(--space-8);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    transition: var(--transition-fast);
    border: 1px solid transparent;
    position: relative;
    z-index: 2;
}

.btn-whatsapp:hover {
    background: var(--neutral-0);
    color: var(--success);
    border-color: var(--success);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===================
   FOOTER ULTRA CLEAN
=================== */
.site-footer {
    background: var(--neutral-50);
    border-top: 1px solid var(--neutral-200);
    text-align: center;
    padding: var(--space-16) 0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--neutral-500);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    padding: var(--space-2) 0;
}

.footer-links a:hover {
    color: var(--neutral-700);
    transform: translateY(-1px);
}

.footer-info p {
    color: var(--neutral-400);
    font-size: 0.85rem;
    margin-bottom: var(--space-2);
}

/* ===================
   FLOATING WHATSAPP MINIMALISTA
=================== */
.floating-whatsapp {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    background: var(--success);
    color: var(--neutral-0);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: var(--transition-fast);
    border: 3px solid var(--neutral-0);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    background: var(--neutral-900);
}

.floating-whatsapp svg {
    width: 24px;
    height: 24px;
}

/* ===================
   ANIMAÇÕES DE MICRO-INTERAÇÃO
=================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Otimizações para motion reduzido */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .site-header {
        animation: none;
        opacity: 1;
    }
    
    .blog-post {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   ESPECÍFICOS WORDPRESS - OAB CARD MODERN
   ========================================================================== */

/* Garantir que os estilos do OAB Card sejam aplicados no WordPress */
.sidebar .sidebar-widget.oab-card-modern {
    background: white !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07) !important;
}

.sidebar .sidebar-widget.oab-card-modern:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.sidebar .sidebar-widget.oab-card-modern .modern-card-content {
    padding: 80px 24px 32px 24px !important;
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
}

/* Força aplicação das logos */
.sidebar .floating-oab-logo,
.sidebar .chip-oab-logo {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
}

.sidebar .floating-oab-logo {
    width: 18px !important;
    height: 18px !important;
}

.sidebar .chip-oab-logo {
    width: 16px !important;
    height: 16px !important;
}
