/*
Theme Name: Panelinha Criativa Blog
Description: Tema WordPress profissional para blog de receitas com a identidade visual da Panelinha Criativa. Focado em artigos e posts com layout responsivo e otimizado para SEO.
Author: Manus AI
Version: 2.0.1
License: GPL v2 or later
Text Domain: panelinha-criativa-blog
Tags: blog, food, recipes, responsive, two-columns, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   Reset e Base Styles
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a3728;
    background: linear-gradient(135deg, #f4e4a6 0%, #f8f0c4 100%);
    overflow-x: hidden;
    overflow-y: auto;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #4a3728;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #d2691e;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ==========================================================================
   Layout Principal
   ========================================================================== */

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.site-main {
    flex: 1;
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

.content-area {
    flex: 1;
}

.sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 3px solid #d2691e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #d2691e;
    padding: 5px;
    background: white;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4a3728;
    text-decoration: none;
    margin: 0;
}

.site-title:hover {
    color: #d2691e;
    text-decoration: none;
}

.site-description {
    font-size: 0.9rem;
    color: #8b7355;
    margin: 0;
    font-style: italic;
}

/* ==========================================================================
   Navegação Principal
   ========================================================================== */

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #4a3728;
    font-weight: 600;
    padding: 10px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: #d2691e;
    border-bottom-color: #d2691e;
}

/* Submenu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu a {
    padding: 8px 20px;
    border: none;
    display: block;
}

.nav-menu .sub-menu a:hover {
    background: rgba(210, 105, 30, 0.1);
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a3728;
    cursor: pointer;
    padding: 10px;
}

/* ==========================================================================
   Posts Grid
   ========================================================================== */

.posts-container {
    margin-bottom: 40px;
}

.featured-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 2px solid rgba(210, 105, 30, 0.1);
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-post .post-thumbnail {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .post-thumbnail img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #d2691e, #ff8c00);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.post-category {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #d2691e;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.featured-post .post-content {
    padding: 30px;
}

.featured-post .post-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.featured-post .post-title a {
    color: #4a3728;
    text-decoration: none;
}

.featured-post .post-title a:hover {
    color: #d2691e;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #8b7355;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta i {
    color: #d2691e;
}

.post-excerpt {
    color: #6b4e3d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #d2691e, #ff8c00);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
    color: white;
    text-decoration: none;
}

/* Posts Grid Regular */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(210, 105, 30, 0.2);
}

.post-card .post-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-card .post-content {
    padding: 25px;
}

.post-card .post-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.post-card .post-title a {
    color: #4a3728;
    text-decoration: none;
}

.post-card .post-title a:hover {
    color: #d2691e;
}

.post-card .post-meta {
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.post-card .post-excerpt {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.post-card .read-more {
    font-size: 0.9rem;
    padding: 8px 20px;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(210, 105, 30, 0.1);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a3728;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(210, 105, 30, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: #d2691e;
}

/* Widget de Busca */
.search-form {
    display: flex;
    gap: 10px;
}

.search-field {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0d5b7;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.search-field:focus {
    outline: none;
    border-color: #d2691e;
    background: white;
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.search-submit {
    background: linear-gradient(45deg, #d2691e, #ff8c00);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

/* Widget de Categorias */
.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 10px;
}

.widget li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4a3728;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(210, 105, 30, 0.1);
    transition: color 0.3s ease;
}

.widget li a:hover {
    color: #d2691e;
}

.post-count {
    background: rgba(210, 105, 30, 0.1);
    color: #d2691e;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
    text-decoration: none;
}

.social-link.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.social-link.instagram {
    background: linear-gradient(45deg, #e4405f, #833ab4);
}

.social-link.facebook {
    background: linear-gradient(45deg, #3b5998, #8b9dc3);
}

/* ==========================================================================
   Paginação
   ========================================================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: white;
    color: #4a3728;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pagination a:hover,
.pagination .current {
    background: linear-gradient(45deg, #d2691e, #ff8c00);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
    text-decoration: none;
}

.pagination .prev,
.pagination .next {
    padding: 0 20px;
    gap: 8px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: #4a3728;
    color: #f4e4a6;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #d2691e;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #f4e4a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #d2691e;
}

.footer-bottom {
    border-top: 1px solid rgba(244, 228, 166, 0.2);
    padding-top: 20px;
    text-align: center;
    color: #8b7355;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .site-container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .site-main {
        flex-direction: column;
        gap: 30px;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-post .post-title {
        font-size: 1.5rem;
    }
    
    .featured-post .post-content {
        padding: 20px;
    }
    
    .post-card .post-content {
        padding: 20px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-container {
        padding: 0 10px;
    }
    
    .site-branding {
        flex-direction: column;
        gap: 10px;
    }
    
    .site-logo {
        width: 50px;
        height: 50px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .featured-post .post-thumbnail {
        height: 200px;
    }
    
    .post-card .post-thumbnail {
        height: 150px;
    }
    
    .widget {
        padding: 20px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Utilitários
   ========================================================================== */

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin: 20px auto;
    text-align: center;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 20px;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: #8b7355;
    text-align: center;
    padding: 10px;
    font-style: italic;
}

/* ==========================================================================
   Animações
   ========================================================================== */

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

.post-card,
.featured-post,
.widget {
    animation: fadeInUp 0.6s ease-out;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .site-header,
    .sidebar,
    .site-footer,
    .pagination {
        display: none;
    }
    
    .site-main {
        flex-direction: column;
    }
    
    .content-area {
        width: 100%;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ==========================================================================
   Single Post Styles
   ========================================================================== */

/* Estilos específicos para single post */
.single-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 2px solid rgba(210, 105, 30, 0.1);
}

/* Header do post */
.post-header {
    position: relative;
}

.post-featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.post-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #d2691e, #ff8c00);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.post-header-content {
    padding: 40px;
}

.single-post .post-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4a3728;
    margin-bottom: 20px;
    line-height: 1.2;
}

.single-post .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(210, 105, 30, 0.1);
}

.single-post .post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b7355;
    font-size: 0.95rem;
}

.single-post .post-meta i {
    color: #d2691e;
}

.single-post .post-meta a {
    color: #d2691e;
    text-decoration: none;
    font-weight: 600;
}

.single-post .post-meta a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

/* Compartilhamento social */
.social-share {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: #4a3728;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-label i {
    color: #d2691e;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.share-btn.facebook {
    background: linear-gradient(45deg, #3b5998, #8b9dc3);
}

.share-btn.twitter {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.share-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.share-btn.email {
    background: linear-gradient(45deg, #6c757d, #495057);
}

/* Conteúdo do post */
.post-content {
    padding: 0 40px 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a3728;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #4a3728;
}

.post-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid rgba(210, 105, 30, 0.2);
    padding-bottom: 10px;
}

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

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

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

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    background: rgba(210, 105, 30, 0.05);
    border-left: 4px solid #d2691e;
    padding: 20px;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

/* Footer do post */
.post-footer {
    padding: 30px 40px;
    background: rgba(210, 105, 30, 0.02);
    border-top: 2px solid rgba(210, 105, 30, 0.1);
}

.post-categories,
.post-tags {
    margin-bottom: 20px;
}

.post-tags:last-child {
    margin-bottom: 0;
}

.meta-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #4a3728;
    margin-bottom: 10px;
}

.meta-label i {
    color: #d2691e;
}

.category-links,
.tag-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-link,
.tag-link {
    background: rgba(210, 105, 30, 0.1);
    color: #d2691e;
    padding: 6px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-link:hover,
.tag-link:hover {
    background: #d2691e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(210, 105, 30, 0.3);
    text-decoration: none;
}

/* Navegação entre posts */
.post-navigation {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(210, 105, 30, 0.1);
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nav-previous,
.nav-next {
    display: flex;
    flex-direction: column;
}

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

.nav-links a {
    color: #4a3728;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid transparent;
}

.nav-links a:hover {
    background: rgba(210, 105, 30, 0.05);
    border-color: rgba(210, 105, 30, 0.2);
    transform: translateY(-2px);
}

.nav-direction {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d2691e;
    margin-bottom: 10px;
}

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

.nav-post-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-next .nav-post-info {
    flex-direction: row-reverse;
    text-align: right;
}

.nav-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.nav-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.nav-date {
    font-size: 0.8rem;
    color: #8b7355;
}

/* Author box */
.author-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(210, 105, 30, 0.1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.author-avatar img {
    border-radius: 50%;
    border: 3px solid rgba(210, 105, 30, 0.2);
}

.author-info {
    flex: 1;
}

.author-name {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.author-name a {
    color: #4a3728;
    text-decoration: none;
}

.author-name a:hover {
    color: #d2691e;
}

.author-bio {
    color: #6b4e3d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.author-posts-link,
.author-website-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d2691e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.author-posts-link:hover,
.author-website-link:hover {
    color: #ff8c00;
}

/* Posts relacionados */
.related-posts {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(210, 105, 30, 0.1);
}

.related-posts-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a3728;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(210, 105, 30, 0.2);
}

.related-posts-title i {
    color: #d2691e;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-post-card {
    background: rgba(210, 105, 30, 0.02);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(210, 105, 30, 0.2);
}

.related-post-thumbnail {
    height: 150px;
    overflow: hidden;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-thumbnail img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
}

.related-post-content h4 {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.related-post-content h4 a {
    color: #4a3728;
    text-decoration: none;
}

.related-post-content h4 a:hover {
    color: #d2691e;
}

.related-post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #8b7355;
}

.related-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-post-meta i {
    color: #d2691e;
}

/* Responsive para Single Post */
@media (max-width: 768px) {
    .post-header-content {
        padding: 30px 25px;
    }
    
    .post-content {
        padding: 0 25px 30px;
    }
    
    .post-footer {
        padding: 25px;
    }
    
    .single-post .post-title {
        font-size: 2rem;
    }
    
    .single-post .post-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .nav-next .nav-direction {
        justify-content: flex-start;
    }
    
    .nav-next .nav-post-info {
        flex-direction: row;
        text-align: left;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .post-featured-image {
        height: 250px;
    }
    
    .post-header-content {
        padding: 25px 20px;
    }
    
    .post-content {
        padding: 0 20px 25px;
        font-size: 1rem;
    }
    
    .post-footer {
        padding: 20px;
    }
    
    .single-post .post-title {
        font-size: 1.7rem;
    }
    
    .share-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .share-btn span {
        display: none;
    }
    
    .post-navigation {
        padding: 20px;
    }
    
    .author-box {
        padding: 20px;
    }
    
    .related-posts {
        padding: 20px;
    }
}

