/* ============================================================
   ARQUIVO: single.css
   FUNÇÃO: Estilos para post único
   ============================================================ */

/* Layout Principal */
.single-layout {
    display: grid;
    gap: 3rem;
    margin: 2rem 0;
}

.single-layout.has-sidebar {
    grid-template-columns: minmax(0, 800px) minmax(300px, 350px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.single-layout.no-sidebar {
    grid-template-columns: 1fr;
}

.single-content-area {
    min-width: 0;
    max-width: 100%;
}

.single-layout.no-sidebar .single-content-area {
    max-width: 900px;
    margin: 0 auto;
}

/* Sidebar */
.single-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.single-sidebar .widget {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.single-sidebar .widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-color);
}

.single-sidebar .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-sidebar .widget li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.single-sidebar .widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.single-sidebar .widget a {
    color: var(--text-color);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    display: block;
}

.single-sidebar .widget a:hover {
    color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    flex-wrap: wrap;
    border-bottom: none; /* Remove qualquer borda inferior */
}

.breadcrumb a {
    color: var(--text-light);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* Ícone home no breadcrumb */
.breadcrumb a svg,
.breadcrumb a [data-lucide="home"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.breadcrumb-separator {
    color: var(--text-light);
    opacity: 0.5;
}

/* Single Post Article */
.single-post-article {
    max-width: 100%;
    margin: 0 auto;
}

/* Remove qualquer linha que possa aparecer após o breadcrumb */
.single-post-article::before,
.breadcrumb::after {
    display: none !important;
}

/* Entry Header */
.entry-header {
    margin-bottom: 2rem;
    border-top: none !important; /* Remove borda superior se houver */
    padding-top: 0 !important;
}

.entry-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.entry-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background var(--transition-fast);
}

.entry-category:hover {
    background: var(--primary-dark);
    color: var(--text-white);
}

.entry-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.entry-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.entry-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.entry-meta .author-link-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.entry-meta .author-link-meta:hover {
    color: var(--primary-color);
}

.entry-meta .author-avatar-small {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    display: block !important;
}

.entry-meta svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.entry-meta .meta-author {
    font-weight: 600;
    color: var(--text-color);
}

/* Post Thumbnail */
.post-thumbnail {
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Table of Contents - MELHORADO */
.table-of-contents {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid rgba(217, 70, 166, 0.15);
    border-left: 6px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.table-of-contents:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(217, 70, 166, 0.2);
    margin-bottom: 1.25rem;
}

.toc-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.toc-title svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.toc-toggle {
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-white);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.toc-toggle:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.toc-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.toc-toggle.active svg {
    transform: rotate(180deg);
}

.toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: toc-counter;
}

.toc-list li {
    margin-bottom: 0;
    counter-increment: toc-counter;
    position: relative;
}

.toc-list > li {
    margin-bottom: 1rem; /* Aumentado de 0.875rem para 1rem */
}

.toc-list > li:last-child {
    margin-bottom: 0;
}

.toc-list a {
    color: var(--text-color);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem; /* Aumentado de 0.625rem para 0.75rem */
    border-radius: var(--radius-md);
    line-height: 1.5;
    min-height: 52px; /* Altura mínima para melhor toque em mobile */
}

.toc-list a:before {
    content: counter(toc-counter);
    flex-shrink: 0;
    width: 32px; /* Aumentado de 28px para 32px */
    height: 32px; /* Aumentado de 28px para 32px */
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem; /* Aumentado de 0.8125rem para 0.875rem */
    font-weight: 700;
    transition: all var(--transition-fast);
}

.toc-list a:hover {
    background: rgba(217, 70, 166, 0.08);
    padding-left: 1.25rem;
    color: var(--primary-color);
}

.toc-list a:hover:before {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* H3 - Subitens com hierarquia visual */
.toc-list .toc-h3 {
    padding-left: 2.5rem;
    font-size: 0.875rem;
    position: relative;
}

.toc-list .toc-h3:before {
    content: '';
    position: absolute;
    left: 0.875rem;
    top: 50%;
    width: 12px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.4;
}

.toc-list .toc-h3 a {
    font-weight: 400;
    min-height: 48px; /* Altura mínima para subitens */
}

.toc-list .toc-h3 a:before {
    width: 28px; /* Aumentado de 24px para 28px */
    height: 28px; /* Aumentado de 24px para 28px */
    font-size: 0.8125rem; /* Aumentado de 0.75rem para 0.8125rem */
    background: rgba(217, 70, 166, 0.15);
    color: var(--primary-color);
}

/* Entry Content */
.entry-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 2rem 0;
}

.entry-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-color);
}

.entry-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    color: var(--text-color);
}

.entry-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.75rem;
}

.entry-content a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.entry-content a:hover {
    color: var(--primary-dark);
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
}

/* Caixas de destaque */
.entry-content .info-box {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}

.entry-content .warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}

.entry-content .success-box {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}

.entry-content .info-box strong,
.entry-content .warning-box strong,
.entry-content .success-box strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Tables */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.875rem;
}

.entry-content table thead {
    background: var(--primary-color);
    color: var(--text-white);
}

.entry-content table th {
    padding: 0.875rem;
    text-align: left;
    font-weight: 700;
}

.entry-content table td {
    padding: 0.875rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.entry-content table tr:nth-child(even) {
    background: var(--bg-secondary);
}

.entry-content table tr:hover {
    background: rgba(217, 70, 166, 0.05);
}

/* Entry Footer (Tags) */
.entry-footer {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
}

.entry-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.entry-tags strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.entry-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--bg-secondary);
    color: var(--text-color);
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.entry-tag:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Social Share - MELHORADO */
.social-share {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.social-share-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}

.social-share-title svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
}

.social-share-buttons {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all var(--transition-base);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-share-btn svg {
    width: 20px;
    height: 20px;
}

.social-share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.social-share-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-share-btn.facebook:hover {
    background: #145dbf;
}

.social-share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.social-share-btn.twitter:hover {
    background: #0c85d0;
}

.social-share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.social-share-btn.whatsapp:hover {
    background: #1eac53;
}

.social-share-btn.linkedin {
    background: #0a66c2;
    color: white;
}

.social-share-btn.linkedin:hover {
    background: #084f92;
}

.social-share-btn.telegram {
    background: #0088cc;
    color: white;
}

.social-share-btn.telegram:hover {
    background: #006ba3;
}

.social-share-btn.email {
    background: #ea4335;
    color: white;
}

.social-share-btn.email:hover {
    background: #c53929;
}

/* Author Box - MELHORADO */
.author-box {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fef5fb 0%, #ffffff 100%);
    border-radius: var(--radius-xl);
    margin: 3rem 0;
    border: 2px solid rgba(217, 70, 166, 0.15);
    box-shadow: 0 4px 16px rgba(217, 70, 166, 0.08);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.author-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.author-box:hover {
    box-shadow: 0 8px 24px rgba(217, 70, 166, 0.15);
    transform: translateY(-4px);
}

.author-avatar {
    flex-shrink: 0;
    position: relative;
}

.author-avatar img {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    border-radius: 50% !important;
    border: 4px solid var(--primary-color);
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

.author-info {
    flex: 1;
}

.author-title {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-title:before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--primary-color);
}

.author-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.author-name a {
    color: var(--text-color);
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    background-size: 0% 2px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size var(--transition-base);
}

.author-name a:hover {
    color: var(--primary-color);
    background-size: 100% 2px;
}

.author-bio {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(217, 70, 166, 0.3);
}

.author-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 70, 166, 0.4);
    gap: 0.875rem;
}

.author-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.author-link:hover svg {
    transform: translateX(4px);
}

/* Related Posts */
.related-posts {
    margin: 3rem 0;
}

.related-posts-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.related-posts-title svg {
    color: var(--primary-color);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Grid Card Styles - Posts Relacionados */
.grid-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.grid-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.grid-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-secondary);
}

.grid-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.grid-card:hover .grid-card-image img {
    transform: scale(1.05);
}

.grid-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.grid-card-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary-color);
    color: var(--text-white);
    font-size: var(--font-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
    align-self: flex-start;
    transition: background var(--transition-base);
}

.grid-card:hover .grid-card-category {
    background: var(--primary-dark);
}

.grid-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    flex: 1;
}

.grid-card-title a {
    color: var(--text-color);
    transition: color var(--transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grid-card-title a:hover {
    color: var(--primary-color);
}

.grid-card-excerpt {
    color: var(--text-light);
    font-size: var(--font-sm);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grid-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: var(--font-xs);
    color: var(--text-light);
}

.grid-card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.grid-card-meta .meta-item svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.nav-links a {
    display: block;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.nav-links a:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.nav-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 1200px) {
    .single-layout.has-sidebar {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .single-layout.has-sidebar {
        grid-template-columns: 1fr;
    }
    
    .single-sidebar {
        position: static;
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .single-content-area {
        order: 1;
    }
}

@media (max-width: 768px) {
    .single-layout {
        gap: 2rem;
        margin: 1rem 0;
    }
    
    .entry-title {
        font-size: 1.75rem;
    }
    
    .entry-meta {
        gap: 1rem;
        font-size: 0.8125rem;
    }
    
    .entry-content {
        font-size: 1rem;
    }
    
    .entry-content h2 {
        font-size: 1.5rem;
    }
    
    .entry-content h3 {
        font-size: 1.25rem;
    }
    
    .table-of-contents {
        padding: 1.5rem;
    }
    
    .toc-list a {
        font-size: 0.875rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 2rem 1.5rem;
    }
    
    .author-avatar img {
        width: 100px;
        height: 100px;
    }
    
    .author-name {
        font-size: 1.5rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .social-share {
        padding: 1.5rem;
    }
    
    .social-share-buttons {
        justify-content: center;
    }
    
    .social-share-btn {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }
    
    .single-sidebar {
        max-width: 100%;
    }
}

/* ============================================================
   COMMENTS SECTION
   ============================================================ */

.comments-area {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(0, 0, 0, 0.06);
}

.comments-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment-body {
    display: flex;
    gap: 1.25rem;
}

.comment-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.comment-content-wrap {
    flex: 1;
}

.comment-metadata {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.comment-author .fn {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
}

.comment-content {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.reply {
    margin-top: 0.75rem;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.comment-reply-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Comment Form */
.comment-respond {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.comment-form {
    display: grid;
    gap: 1.25rem;
}

.comment-form-comment {
    grid-column: 1 / -1;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: flex;
    flex-direction: column;
}

.comment-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(217, 70, 166, 0.1);
}

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

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin-top: 0.25rem;
}

.form-submit {
    margin-top: 0.5rem;
}

.submit {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    background: var(--primary-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(217, 70, 166, 0.3);
}

.submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 70, 166, 0.4);
}

/* No Comments */
.no-comments {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-style: italic;
}

/* Responsive Comments */
@media (max-width: 768px) {
    .comments-area {
        padding: 1.5rem 1rem;
    }
    
    .comment-body {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comment-author img {
        width: 50px;
        height: 50px;
    }
    
    .comment-respond {
        padding: 1.5rem 1rem;
    }
    
    .comment-form input,
    .comment-form textarea {
        font-size: 16px;
    }
}

/* ============================================================
   POST NAVIGATION - ANTERIOR/PRÓXIMO
   ============================================================ */

.post-navigation {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.nav-links {
    display: contents;
}

.nav-links a {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fef5fb 100%);
    border: 2px solid rgba(217, 70, 166, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.nav-links a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.nav-links a:hover:before {
    transform: scaleY(1);
}

.nav-links a:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(217, 70, 166, 0.15);
}

.nav-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.nav-previous .nav-subtitle:before {
    content: '←';
    font-size: 1.25rem;
}

.nav-next .nav-subtitle:after {
    content: '→';
    font-size: 1.25rem;
}

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

.nav-next .nav-subtitle {
    justify-content: flex-end;
}

.nav-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {
    .post-navigation {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .nav-links a {
        padding: 1.25rem;
    }
    
    .nav-subtitle {
        font-size: 0.6875rem;
    }
    
    .nav-title {
        font-size: 1rem;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .nav-next .nav-subtitle {
        justify-content: flex-start;
    }
}
