
/* === WSG Culinária Theme === */
:root {
    --primary:   #e07b39;
    --primary-d: #c5621e;
    --dark:      #1a1a1a;
    --text:      #374151;
    --muted:     #6b7280;
    --border:    #e5e7eb;
    --bg:        #fafaf8;
    --white:     #ffffff;
    --radius:    10px;
    --shadow:    0 2px 12px rgba(0,0,0,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Plus Jakarta Sans", system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-d); }

h1,h2,h3,h4 { font-family: "Lora", Georgia, serif; color: var(--dark); line-height: 1.25; }
p { margin-bottom: 1rem; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Ad Zones */
.ad-banner-top, .ad-banner-footer { background: #f3f4f6; text-align: center; padding: 8px; min-height: 50px; }

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    box-shadow: var(--shadow);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }
.site-branding { flex-shrink: 0; }
.site-logo-text { display: flex; align-items: center; gap: 8px; color: var(--dark); font-weight: 700; font-size: 20px; }
.logo-icon { font-size: 26px; }
.logo-name { font-family: "Lora", serif; }
.site-tagline { font-size: 12px; color: var(--muted); margin-top: 2px; }

.site-nav { display: flex; align-items: center; }
.nav-list { list-style: none; display: flex; gap: 4px; }
.nav-list a { padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 600; color: var(--text); transition: background .15s, color .15s; }
.nav-list a:hover, .nav-list .current-menu-item a { background: #fef3ec; color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* Main */
.site-main .container, .container { padding-top: 40px; padding-bottom: 40px; }
.content-area { flex: 1; min-width: 0; }
.container > .content-area { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
@media (max-width: 900px) { .container > .content-area { grid-template-columns: 1fr; } }

/* Sidebar */
.sidebar .widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.sidebar .widget-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); }

/* Post Grid */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-bottom: 40px; }
.post-card { background: var(--white); border-radius: 14px; border: 1px solid var(--border); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.post-thumb img { width: 100%; height: 200px; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-thumb img { transform: scale(1.03); }
.post-body { padding: 20px; }
.post-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.post-meta a { color: var(--primary); font-weight: 600; }
.meta-sep { margin: 0 6px; }
.post-title { font-size: 17px; margin-bottom: 8px; }
.post-title a { color: var(--dark); }
.post-title a:hover { color: var(--primary); }
.post-excerpt { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.read-more { font-size: 13px; font-weight: 700; color: var(--primary); }

/* Breadcrumb */
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* Single Post */
.post-header { margin-bottom: 24px; }
.entry-title { font-size: clamp(26px, 4vw, 42px); margin: 12px 0 16px; }
.author-info { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.author-info img { border-radius: 50%; }
.featured-image { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.featured-image img { width: 100%; max-height: 480px; object-fit: cover; }
.entry-content { font-size: 17px; line-height: 1.8; max-width: 720px; }
.entry-content h2 { font-size: 24px; margin: 36px 0 14px; }
.entry-content h3 { font-size: 20px; margin: 28px 0 10px; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 20px; }
.entry-content li { margin-bottom: 6px; }
.entry-content blockquote { border-left: 4px solid var(--primary); padding: 12px 20px; background: #fef3ec; border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; font-style: italic; }
.post-footer { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 14px; }
.share-links { display: flex; align-items: center; gap: 12px; }
.share-links a { font-weight: 600; color: var(--primary); }
.post-navigation { display: flex; justify-content: space-between; margin-top: 40px; padding: 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); font-size: 14px; }

/* Pages */
.page-title { font-size: 32px; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--primary); }
.page-content .entry-content { font-size: 16px; line-height: 1.8; max-width: 800px; }

/* Hero */
.hero { background: linear-gradient(135deg, #2d1b0e 0%, #7c3313 50%, #e07b39 100%); padding: 80px 20px; text-align: center; }
.hero-content { max-width: 600px; margin: 0 auto; color: #fff; }
.hero-badge { background: rgba(255,255,255,.15); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; display: inline-block; margin-bottom: 16px; }
.hero h1 { font-size: clamp(32px, 5vw, 54px); color: #fff; margin-bottom: 16px; }
.hero p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 28px; }
.hero-cta { display: inline-block; background: var(--white); color: var(--primary); font-weight: 700; padding: 14px 32px; border-radius: 50px; font-size: 15px; transition: transform .2s; }
.hero-cta:hover { transform: scale(1.05); color: var(--primary-d); }

.section-title { font-size: 28px; margin-bottom: 28px; }
.latest-posts-section { padding: 60px 0; }
.see-all-wrap { text-align: center; margin-top: 32px; }
.btn-see-all { display: inline-block; background: var(--primary); color: #fff; font-weight: 700; padding: 12px 28px; border-radius: 50px; font-size: 15px; transition: background .2s; }
.btn-see-all:hover { background: var(--primary-d); color: #fff; }

/* 404 */
.error-404 { text-align: center; padding: 80px 20px; }
.error-emoji { font-size: 64px; display: block; margin-bottom: 16px; }
.error-404 h1 { font-size: 28px; margin-bottom: 12px; }
.error-404 p { color: var(--muted); margin-bottom: 24px; }

/* Footer */
.site-footer { background: #1a1a1a; color: #9ca3af; padding: 48px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { color: #fff; font-family: "Lora", serif; font-size: 18px; font-weight: 700; display: block; margin-bottom: 12px; }
.footer-about p { font-size: 14px; line-height: 1.6; }
.footer-nav h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 8px; }
.footer-nav-list a { color: #9ca3af; font-size: 14px; transition: color .15s; }
.footer-nav-list a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid #374151; padding: 20px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: 13px; }
.footer-disclaimer { color: #6b7280; }

/* Pagination */
.pagination, .nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: var(--white); border: 1px solid var(--border); font-weight: 600; color: var(--text); transition: background .15s; font-size: 14px; }
.page-numbers:hover, .page-numbers.current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 12px; border-bottom: 1px solid var(--border); flex-direction: column; }
    .nav-list.open { display: flex; }
    .site-header { position: relative; }
    .footer-grid { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: 1fr; }
}
