/* ============================================================
   MELHORES DA COZINHA — CSS PÚBLICO PREMIUM
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-50:  #fff7ed;
  --brand-100: #ffedd5;
  --brand-400: #fb923c;
  --brand-500: #f97316;
  --brand-600: #ea580c;
  --brand-700: #c2410c;
  --stone-50:  #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--stone-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Page fade-in ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp 0.55s ease both; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--stone-200);
  height: 68px;
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--stone-900);
}
.site-logo span { color: var(--brand-500); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone-600);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.site-nav a:hover {
  color: var(--stone-900);
  background: var(--stone-100);
}

.header-actions { display: flex; align-items: center; gap: 8px; }

.btn-search {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--stone-600);
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
}
.btn-search:hover { color: var(--stone-900); background: var(--stone-100); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--stone-700);
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.mobile-drawer.open { display: block; }
.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
}
.drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--stone-600);
  margin-bottom: 24px;
  display: block;
}
.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-nav a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--stone-700);
  transition: background var(--transition), color var(--transition);
}
.drawer-nav a:hover { background: var(--stone-100); color: var(--stone-900); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: #fdf8f3;
  padding: 80px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-100);
  color: var(--brand-700);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--stone-900);
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--brand-500); }

.hero-sub {
  font-size: 1.125rem;
  color: var(--stone-500);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--brand-500);
  color: #fff;
  border-color: var(--brand-500);
}
.btn-primary:hover { background: var(--brand-600); border-color: var(--brand-600); }
.btn-outline {
  background: transparent;
  color: var(--stone-700);
  border-color: var(--stone-300);
}
.btn-outline:hover { border-color: var(--stone-500); color: var(--stone-900); background: var(--stone-50); }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--stone-500);
  margin-top: 3px;
}

/* Hero feature card */
.hero-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.14); }
.hero-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.hero-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--brand-100), var(--stone-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.hero-card-body { padding: 24px; }
.hero-card-cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: var(--brand-100);
  color: var(--brand-700);
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1.35;
  margin-bottom: 8px;
}
.hero-card-excerpt {
  font-size: 0.9rem;
  color: var(--stone-500);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hero-card-link:hover { color: var(--brand-700); }

.hero-empty {
  background: var(--stone-100);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  color: var(--stone-500);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 72px 0; }
.section-alt { background: #fdf8f3; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 10px;
}
.section-sub { font-size: 1rem; color: var(--stone-500); max-width: 520px; margin: 0 auto; }

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  display: block;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.cat-icon { font-size: 2rem; margin-bottom: 10px; }
.cat-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--stone-800);
  margin-bottom: 5px;
}
.cat-desc {
  font-size: 0.8125rem;
  color: var(--stone-500);
  line-height: 1.5;
  margin-bottom: 10px;
}
.cat-count {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--stone-100);
  color: var(--stone-500);
  display: inline-block;
}

/* ============================================================
   POST CARDS GRID
   ============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stone-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.post-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.post-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--stone-100), var(--stone-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--stone-400);
}
.post-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.post-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}
.post-card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-excerpt {
  font-size: 0.875rem;
  color: var(--stone-500);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--stone-400);
  border-top: 1px solid var(--stone-100);
  padding-top: 14px;
  margin-top: auto;
}
.post-card-meta svg { width: 14px; height: 14px; }

/* ============================================================
   AUTHOR SECTION (homepage)
   ============================================================ */
.author-section {
  background: #fdf8f3;
  padding: 80px 0;
}
.author-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.author-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.author-avatar-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--brand-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.author-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 8px;
}
.author-bio {
  font-size: 1rem;
  color: var(--stone-600);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 520px;
}
.author-credentials { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.author-cred {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone-700);
  background: #fff;
  border: 1px solid var(--stone-200);
  padding: 8px 16px;
  border-radius: 999px;
}

/* ============================================================
   POST PAGE
   ============================================================ */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--stone-400);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--stone-500); }
.breadcrumb a:hover { color: var(--brand-600); }
.breadcrumb span { color: var(--stone-300); }

.post-cat-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1.2;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
  color: var(--stone-500);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.post-meta-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-meta-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.post-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Post tags */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.post-tag {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--stone-600);
  background: var(--stone-100);
  padding: 5px 14px;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
}
.post-tag:hover { background: var(--stone-200); color: var(--stone-800); }

/* Post author box */
.post-author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fdf8f3;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 48px;
  border: 1px solid var(--brand-100);
}
.post-author-box .author-avatar-placeholder {
  width: 64px; height: 64px;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.post-author-box-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--stone-900);
  margin-bottom: 6px;
}
.post-author-box-bio { font-size: 0.9rem; color: var(--stone-600); line-height: 1.65; margin-bottom: 10px; }
.post-author-box-link { font-size: 0.875rem; font-weight: 600; color: var(--brand-600); }
.post-author-box-link:hover { color: var(--brand-700); }

/* Sidebar */
.sidebar { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--stone-800);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stone-100);
}
.sidebar-cat-list { display: flex; flex-direction: column; gap: 6px; }
.sidebar-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--stone-600);
  transition: background var(--transition), color var(--transition);
}
.sidebar-cat-item:hover { background: var(--stone-50); color: var(--stone-900); }
.sidebar-cat-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-right: 8px; }
.sidebar-cat-count {
  font-size: 0.75rem;
  background: var(--stone-100);
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--stone-500);
}

/* Related posts in sidebar */
.related-post {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--stone-100);
  text-decoration: none;
}
.related-post:last-child { border-bottom: none; padding-bottom: 0; }
.related-post:hover .related-post-title { color: var(--brand-600); }
.related-post-img {
  width: 64px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.related-post-img-placeholder {
  width: 64px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.related-post-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--stone-800);
  line-height: 1.4;
  transition: color var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-post-date { font-size: 0.75rem; color: var(--stone-400); margin-top: 3px; }

/* ============================================================
   PROSE (post content)
   ============================================================ */
.prose { font-family: var(--font-body); }
.prose h2 { font-family: var(--font-display); font-size: 1.75rem; margin: 2.5rem 0 1rem; color: var(--stone-900); font-weight: 700; line-height: 1.25; }
.prose h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 2rem 0 0.75rem; color: var(--stone-800); font-weight: 700; }
.prose h4 { font-family: var(--font-display); font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: var(--stone-800); }
.prose p { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.5rem; color: var(--stone-700); }
.prose ul, .prose ol { padding-left: 1.75rem; margin-bottom: 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { line-height: 1.8; color: var(--stone-700); margin-bottom: 0.35rem; }
.prose a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--brand-700); }
.prose strong { font-weight: 600; color: var(--stone-900); }
.prose em { font-style: italic; }
.prose blockquote {
  border-left: 4px solid var(--brand-500);
  padding: 1rem 1.5rem;
  background: var(--brand-50);
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--stone-600);
}
.prose table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.9375rem; }
.prose th { background: var(--stone-100); padding: 0.75rem 1rem; text-align: left; font-weight: 600; border: 1px solid var(--stone-200); color: var(--stone-800); }
.prose td { padding: 0.75rem 1rem; border: 1px solid var(--stone-200); color: var(--stone-700); }
.prose tr:nth-child(even) td { background: var(--stone-50); }
.prose img { border-radius: 12px; max-width: 100%; margin: 2rem auto; display: block; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.prose code { background: var(--stone-100); padding: 2px 8px; border-radius: 4px; font-size: 0.875rem; font-family: monospace; color: var(--stone-800); }
.prose pre { background: var(--stone-900); color: #e2e8f0; padding: 1.5rem; border-radius: 12px; overflow-x: auto; margin: 2rem 0; }
.prose pre code { background: none; padding: 0; color: inherit; font-size: 0.875rem; }
.prose hr { border: none; border-top: 1px solid var(--stone-200); margin: 2.5rem 0; }

/* Amazon card inside content */
.amazon-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid var(--stone-200);
  border-radius: 16px;
  padding: 1.25rem;
  margin: 2rem 0;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.amazon-card:hover { box-shadow: var(--shadow-md); }
.amazon-card img { width: 110px; height: 110px; object-fit: contain; flex-shrink: 0; border-radius: 8px; }
.amazon-card-info { flex: 1; }
.amazon-card-info strong { display: block; font-size: 1rem; color: var(--stone-900); margin-bottom: 0.35rem; line-height: 1.4; }
.amazon-card-info .preco { color: var(--brand-600); font-weight: 700; font-size: 1.1rem; display: block; margin-bottom: 0.75rem; }
.btn-amazon {
  display: inline-block;
  background: var(--brand-500);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.btn-amazon:hover { background: var(--brand-600); }

/* ============================================================
   CATEGORY PAGE HEADER
   ============================================================ */
.cat-page-header {
  padding: 56px 0 48px;
  background: #fdf8f3;
}
.cat-page-header-inner { display: flex; align-items: center; gap: 16px; }
.cat-page-dot { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; }
.cat-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 6px;
}
.cat-page-desc { font-size: 1rem; color: var(--stone-500); }
.cat-page-count { font-size: 0.875rem; color: var(--stone-400); margin-top: 4px; }

/* ============================================================
   SOBRE PAGE
   ============================================================ */
.sobre-hero {
  padding: 72px 0 64px;
  background: #fdf8f3;
}
.sobre-hero-grid { display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: start; }
.sobre-hero-avatar { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-lg); flex-shrink: 0; }
.sobre-hero-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--brand-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.sobre-name { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--stone-900); margin-bottom: 8px; }
.sobre-role { font-size: 1rem; color: var(--brand-500); font-weight: 600; margin-bottom: 16px; }
.sobre-bio { font-size: 1.0625rem; line-height: 1.8; color: var(--stone-700); max-width: 560px; }

.sobre-diferenciais {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 64px 0;
}
.sobre-card {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.sobre-card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.sobre-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--stone-900); margin-bottom: 8px; }
.sobre-card-text { font-size: 0.9rem; color: var(--stone-600); line-height: 1.65; }

.sobre-metodologia { padding: 0 0 72px; }
.sobre-metodologia-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--stone-900); margin-bottom: 20px; }
.sobre-metodologia p { font-size: 1.0625rem; line-height: 1.8; color: var(--stone-700); margin-bottom: 1.25rem; max-width: 680px; }

.disclosure-box {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  font-size: 0.9rem;
  color: var(--stone-600);
  line-height: 1.7;
}
.disclosure-box strong { color: var(--stone-800); }

/* ============================================================
   CONTATO PAGE
   ============================================================ */
.contato-section { padding: 72px 0; }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contato-info-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--stone-900); margin-bottom: 16px; }
.contato-info-text { font-size: 1rem; color: var(--stone-600); line-height: 1.75; }

.contato-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--stone-700); }
.form-input, .form-textarea {
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--stone-800);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand-400);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-msg { padding: 12px 16px; border-radius: var(--radius-md); font-size: 0.9rem; margin-top: 4px; }
.form-msg.success { background: #dcfce7; color: #16a34a; }
.form-msg.error { background: #fef2f2; color: #dc2626; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--stone-900);
  color: var(--stone-400);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--stone-800);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.footer-logo span { color: var(--brand-400); }
.footer-tagline { font-size: 0.875rem; color: var(--stone-500); margin-bottom: 16px; }
.footer-disclosure { font-size: 0.8rem; color: var(--stone-600); line-height: 1.65; }
.footer-heading { font-size: 0.875rem; font-weight: 700; color: var(--stone-200); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.875rem; color: var(--stone-500); transition: color var(--transition); }
.footer-links a:hover { color: var(--stone-200); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--stone-600);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 40px 0; }
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--stone-200);
  color: var(--stone-600);
  transition: all var(--transition);
}
.pagination a:hover { background: var(--stone-100); color: var(--stone-900); border-color: var(--stone-300); }
.pagination .current { background: var(--brand-500); color: #fff; border-color: var(--brand-500); }
.pagination .dots { border: none; cursor: default; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

.empty-state {
  text-align: center;
  padding: 72px 24px;
  color: var(--stone-400);
}
.empty-state-icon { font-size: 3rem; margin-bottom: 12px; }
.empty-state-text { font-size: 1rem; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sobre-diferenciais { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 48px 0 40px; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .posts-grid { grid-template-columns: 1fr; }
  .author-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .author-avatar, .author-avatar-placeholder { margin: 0 auto; }
  .author-credentials { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sobre-hero-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .sobre-hero-avatar, .sobre-hero-placeholder { margin: 0 auto; }
  .sobre-diferenciais { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .post-layout { padding: 32px 0 48px; }
  .amazon-card { flex-direction: column; }
  .amazon-card img { width: 80px; height: 80px; }
}
