/* ============================================================
   PSINGULAR — Tema Ghost
   Identidade: premium · editorial · minimalista · sereno
   ============================================================ */

/* === VARIÁVEIS === */
:root {
  --bg:       #F5F4F3;
  --white:    #FFFFFF;
  --navy:     #242933;
  --navy-mid: #3A4250;
  --gold:     #B08A57;
  --gold-soft:#C7AA7A;
  --line:     #DED7CF;
  --muted:    #8C8F96;
  --bg-warm:  #ECE6DE;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --body:  'Lora', Georgia, serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h: 72px;
  --max-w: 1200px;
  --text-w: 740px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--navy);
  font-family: var(--body);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === DOTS MOTIF === */
.dots-divider {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 1.5rem;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--navy-mid);
  opacity: 0.35;
}
.dot.singular { background: var(--gold); opacity: 1; }

/* === NAVEGAÇÃO === */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(245, 244, 243, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(36, 41, 51, 0.06); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 2.5rem;
  height: 100%;
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--navy);
  white-space: nowrap;
}
.logo-dots { display: flex; gap: 4px; align-items: center; }
.logo-dots .dot { width: 5px; height: 5px; }
.logo-dots .dot.singular { background: var(--gold); opacity: 1; }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  flex: 1;
}
.nav-links a {
  font-family: var(--body);
  font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-subscribe {
  font-family: var(--body);
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 0.55rem 1.25rem;
  transition: background 0.25s;
  white-space: nowrap;
}
.nav-subscribe:hover { background: var(--navy); }

/* Toggle mobile */
.nav-toggle {
  display: none; background: transparent;
  border: 1px solid var(--line);
  width: 42px; height: 42px;
  cursor: pointer; z-index: 110; padding: 0;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--navy); margin: 4px auto;
  transition: transform 0.35s, opacity 0.35s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(36, 41, 51, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s; z-index: 100;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }

/* === SEÇÃO LABEL === */
.section-label {
  font-family: var(--body);
  font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

/* === BLOG HERO === */
.blog-hero {
  padding: calc(var(--nav-h) + 6rem) 2.5rem 6rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.blog-hero-inner { max-width: 720px; margin: 0 auto; }
.blog-hero-inner .dots-divider { justify-content: center; margin-bottom: 2rem; }
.blog-hero-inner .section-label { justify-content: center; }
.blog-hero-inner .section-label::before { display: none; }
.blog-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--navy);
  line-height: 1.1; margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.blog-hero-sub {
  font-size: 1rem; color: var(--muted);
  font-style: italic; line-height: 1.8;
}
.blog-hero--small { padding: calc(var(--nav-h) + 4rem) 2.5rem 4rem; }

/* === ARTIGO DESTAQUE === */
.featured-post {
  padding: 5rem 2.5rem;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line);
}
.featured-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.featured-image {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.featured-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.featured-image:hover img { transform: scale(1.03); }
.post-tag {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.featured-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400; line-height: 1.2;
  color: var(--navy); margin-bottom: 1.25rem;
}
.featured-title a { transition: color 0.2s; }
.featured-title a:hover { color: var(--gold); }
.featured-excerpt {
  font-size: 0.93rem; color: var(--navy-mid);
  line-height: 1.85; margin-bottom: 1.5rem;
}
.post-meta {
  font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.06em; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.meta-sep { color: var(--line); }
.post-author { color: var(--navy-mid); font-weight: 500; }

.btn-read {
  font-family: var(--body);
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--navy);
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: color 0.25s, gap 0.3s;
}
.btn-read .arr { transition: transform 0.3s var(--ease); }
.btn-read:hover { color: var(--gold); gap: 1rem; }
.btn-read:hover .arr { transform: translateX(4px); }

/* === GRELHA DE POSTS === */
.posts-section {
  padding: 6rem 2.5rem;
  background: var(--bg);
}
.posts-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header { margin-bottom: 3.5rem; }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 4rem;
}
.posts-grid--small { margin-bottom: 0; }

.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.post-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(36, 41, 51, 0.07);
}
.post-card-image-link { display: block; overflow: hidden; }
.post-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: contrast(1.02) saturate(0.92);
}
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-content { padding: 1.75rem; }
.post-card-title {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 400;
  line-height: 1.25; color: var(--navy);
  margin-bottom: 0.75rem;
}
.post-card-title a { transition: color 0.2s; }
.post-card-title a:hover { color: var(--gold); }
.post-card-excerpt {
  font-size: 0.83rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 1rem;
}

/* === PAGINAÇÃO === */
.pagination {
  display: flex; align-items: center;
  justify-content: center; gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.pagination a {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy);
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--line);
  transition: border-color 0.2s, color 0.2s;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.page-number { font-size: 0.78rem; color: var(--muted); }

/* === POST INDIVIDUAL === */
.post-full { padding-top: var(--nav-h); }

.post-header {
  padding: 5rem 2.5rem 4rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.post-header-inner { max-width: var(--text-w); margin: 0 auto; }

.post-breadcrumb {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.post-breadcrumb a:hover { color: var(--gold); }
.post-breadcrumb .sep { color: var(--line); }
.post-tag-label {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}
.post-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--navy); margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.post-excerpt {
  font-size: 1.05rem; color: var(--navy-mid);
  line-height: 1.85; margin-bottom: 2rem;
  font-style: italic;
}
.post-header-meta {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap; gap: 1rem;
}
.author-info { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; border: 1px solid var(--line);
}
.author-name {
  font-size: 0.82rem; font-weight: 500; color: var(--navy);
}
.author-role { font-size: 0.72rem; color: var(--muted); }
.post-header-right {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; color: var(--muted);
}

/* IMAGEM DESTAQUE */
.post-feature-image {
  width: 100%; max-height: 520px; overflow: hidden;
}
.post-feature-image img {
  width: 100%; height: 100%;
  object-fit: cover; max-height: 520px;
}
.post-feature-image figcaption {
  text-align: center; font-size: 0.78rem;
  color: var(--muted); padding: 0.75rem 1rem;
  font-style: italic;
}

/* CORPO DO POST */
.post-content {
  padding: 4.5rem 2.5rem 5rem;
  background: var(--bg);
}
.post-body {
  max-width: var(--text-w);
  margin: 0 auto;
}

/* Ghost Content Styles */
.gh-content > * + * { margin-top: 1.75em; }
.gh-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400; line-height: 1.25;
  color: var(--navy); margin-top: 3rem;
}
.gh-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400; color: var(--navy);
  margin-top: 2.5rem;
}
.gh-content p {
  font-size: 1rem; line-height: 1.9;
  color: var(--navy-mid);
}
.gh-content a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); transition: color 0.2s; }
.gh-content a:hover { color: var(--navy); }
.gh-content strong { color: var(--navy); font-weight: 600; }
.gh-content em { font-style: italic; }
.gh-content blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.75rem; margin: 2.5rem 0;
  font-family: var(--serif);
  font-size: 1.35rem; font-style: italic;
  color: var(--navy); line-height: 1.6;
}
.gh-content ul, .gh-content ol {
  padding-left: 1.5rem; color: var(--navy-mid);
}
.gh-content li { margin-bottom: 0.5rem; }
.gh-content img { border: 1px solid var(--line); }
.gh-content figure { margin: 2.5rem 0; }
.gh-content figcaption {
  font-size: 0.78rem; color: var(--muted);
  text-align: center; padding-top: 0.75rem; font-style: italic;
}
.gh-content hr {
  border: none; border-top: 1px solid var(--line);
  margin: 3rem auto; width: 80px;
}
.gh-content pre {
  background: var(--navy); color: var(--bg);
  padding: 1.5rem; overflow-x: auto;
  font-size: 0.85rem; line-height: 1.6;
}
.gh-content code {
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  background: var(--bg-warm);
  padding: 0.15em 0.4em;
  color: var(--navy);
}
.gh-content pre code { background: none; padding: 0; color: inherit; }

/* Post footer — tags */
.post-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.post-tag-link {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); padding: 0.3rem 0.75rem;
  transition: border-color 0.2s, color 0.2s;
}
.post-tag-link:hover { border-color: var(--gold); color: var(--gold); }

/* CARD DO AUTOR */
.author-card {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  padding: 3.5rem 2.5rem;
}
.author-card-inner {
  max-width: var(--text-w); margin: 0 auto;
  display: flex; gap: 2rem; align-items: flex-start;
}
.author-card-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; border: 1px solid var(--line);
  flex-shrink: 0;
}
.author-card-label {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem;
}
.author-card-name {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 400; color: var(--navy);
  margin-bottom: 0.75rem;
}
.author-card-bio { font-size: 0.88rem; color: var(--navy-mid); line-height: 1.75; margin-bottom: 1rem; }
.author-card-link {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
}

/* ARTIGOS RELACIONADOS */
.related-posts {
  padding: 5rem 2.5rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.related-inner { max-width: var(--max-w); margin: 0 auto; }
.related-inner .section-label { margin-bottom: 2.5rem; }

/* === NEWSLETTER === */
.subscribe-section {
  padding: 7rem 2.5rem;
  background: var(--navy);
  text-align: center;
}
.subscribe-inner { max-width: 600px; margin: 0 auto; }
.subscribe-inner .dots-divider { justify-content: center; margin-bottom: 2rem; }
.subscribe-inner .dot { background: rgba(255,255,255,0.3); }
.subscribe-inner .dot.singular { background: var(--gold); opacity: 1; }

.subscribe-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 1.25rem; letter-spacing: -0.01em;
}
.subscribe-sub {
  font-size: 0.9rem; color: rgba(245,244,243,0.65);
  line-height: 1.85; margin-bottom: 2.5rem;
  font-style: italic;
}
.subscribe-form { width: 100%; }
.subscribe-fields {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.subscribe-fields input[type="email"] {
  flex: 1; background: transparent;
  border: none; padding: 1rem 1.25rem;
  font-family: var(--body); font-size: 0.88rem;
  color: var(--white); outline: none;
}
.subscribe-fields input::placeholder { color: rgba(255,255,255,0.35); }
.btn-subscribe {
  background: var(--gold); color: var(--white);
  border: none; padding: 1rem 1.75rem;
  font-family: var(--body); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: background 0.25s;
}
.btn-subscribe:hover { background: var(--gold-soft); }
.subscribe-note {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  margin-top: 1rem; letter-spacing: 0.05em;
}
.subscribe-success p { color: var(--gold-soft); font-style: italic; margin-top: 1rem; }
.subscribe-member { color: rgba(255,255,255,0.6); font-style: italic; }

/* === FOOTER === */
.site-footer { background: var(--navy); color: rgba(245,244,243,0.7); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 5rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--white); margin-bottom: 1rem; font-weight: 400;
}
.footer-logo .dot { background: rgba(255,255,255,0.3); }
.footer-logo .dot.singular { background: var(--gold); opacity: 1; }
.footer-tagline {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,244,243,0.35);
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col-title {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.83rem; color: rgba(245,244,243,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col li:not(:has(a)) { font-size: 0.83rem; color: rgba(245,244,243,0.35); }

.footer-bottom { background: var(--navy); }
.footer-bottom-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.72rem; color: rgba(245,244,243,0.3); }
.footer-legal { display: flex; align-items: center; gap: 0.75rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(245,244,243,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-soft); }
.footer-legal span { color: rgba(245,244,243,0.15); font-size: 0.6rem; }

/* === KOENIG EDITOR CARDS (Ghost) === */
/* Permite imagens largas e full-width nos artigos */
.gh-content .kg-width-wide,
.gh-content .kg-width-wide figure,
.gh-content figure.kg-width-wide {
  position: relative;
  width: 85vw;
  max-width: 1100px;
  left: 50%; right: 50%;
  margin-left: -42.5vw; margin-right: -42.5vw;
}
.gh-content .kg-width-full,
.gh-content .kg-width-full figure,
.gh-content figure.kg-width-full {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
}
.gh-content .kg-width-full img,
.gh-content .kg-width-wide img {
  width: 100%; height: auto;
}

/* Bookmark card */
.gh-content .kg-bookmark-card {
  width: 100%;
  border: 1px solid var(--line);
  display: flex; align-items: stretch;
  overflow: hidden; background: var(--white);
  text-decoration: none; transition: border-color 0.3s, box-shadow 0.3s;
}
.gh-content .kg-bookmark-card:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 8px 30px rgba(36,41,51,0.06);
}
.gh-content .kg-bookmark-container {
  display: flex; flex-grow: 1;
  text-decoration: none; color: inherit;
}
.gh-content .kg-bookmark-content {
  flex-basis: 0; flex-grow: 999;
  padding: 1.5rem; display: flex; flex-direction: column;
}
.gh-content .kg-bookmark-title {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.5rem;
}
.gh-content .kg-bookmark-description {
  font-size: 0.85rem; color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gh-content .kg-bookmark-metadata {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; color: var(--muted);
  margin-top: auto;
}
.gh-content .kg-bookmark-icon { width: 16px; height: 16px; }
.gh-content .kg-bookmark-thumbnail {
  position: relative; min-width: 33%; max-height: 200px;
}
.gh-content .kg-bookmark-thumbnail img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; top: 0; left: 0;
}

/* Embeds (YouTube, Twitter, etc) */
.gh-content .kg-embed-card {
  display: flex; flex-direction: column;
  align-items: center; width: 100%;
}
.gh-content iframe { max-width: 100%; }

/* Gallery card */
.gh-content .kg-gallery-card {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.gh-content .kg-gallery-row {
  display: flex; gap: 0.75rem;
  flex-direction: row; flex-wrap: nowrap;
}
.gh-content .kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }

/* Button card */
.gh-content .kg-button-card {
  display: flex;
  margin: 2rem 0;
}
.gh-content .kg-button-card a {
  font-family: var(--body);
  font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold); color: var(--white);
  padding: 0.85rem 1.75rem;
  border: none; transition: background 0.25s;
  text-decoration: none;
}
.gh-content .kg-button-card a:hover { background: var(--navy); }

/* Callout card */
.gh-content .kg-callout-card {
  padding: 1.5rem 1.75rem;
  background: var(--bg-warm);
  border-left: 2px solid var(--gold);
  display: flex; gap: 1rem;
  margin: 2rem 0;
}
.gh-content .kg-callout-emoji { font-size: 1.5rem; }
.gh-content .kg-callout-text {
  font-size: 0.93rem; color: var(--navy-mid);
  line-height: 1.8;
}

/* Toggle card */
.gh-content .kg-toggle-card {
  border: 1px solid var(--line);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.gh-content .kg-toggle-heading {
  font-family: var(--serif);
  font-size: 1.05rem; color: var(--navy);
  cursor: pointer;
}

/* Header card */
.gh-content .kg-header-card {
  padding: 4rem 2rem; text-align: center;
  background: var(--bg-warm); margin: 2rem 0;
}
.gh-content .kg-header-card h2 {
  font-family: var(--serif);
  font-size: 2rem; color: var(--navy);
}

/* Product card */
.gh-content .kg-product-card { margin: 2rem 0; }

/* === PÁGINAS ESTÁTICAS === */
.page-content {
  padding: calc(var(--nav-h) + 5rem) 2.5rem 5rem;
}
.page-inner { max-width: var(--text-w); margin: 0 auto; }
.page-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; margin-bottom: 3rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.page-body.gh-content { margin-top: 0; }

/* === ERRO === */
.error-page {
  padding: calc(var(--nav-h) + 8rem) 2.5rem 8rem;
  text-align: center; background: var(--bg);
}
.error-inner { max-width: 560px; margin: 0 auto; }
.error-inner .dots-divider { justify-content: center; margin-bottom: 2rem; }
.error-title {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 200; color: var(--navy);
  line-height: 1; margin-bottom: 1.5rem;
  opacity: 0.15;
}
.error-message { font-size: 1rem; color: var(--muted); margin-bottom: 2.5rem; }

/* === AUTOR HERO AVATAR === */
.author-hero-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
  margin: 0 auto 1.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-toggle { display: block; }
  .nav-subscribe { display: none; }
  .nav-links {
    display: flex !important;
    flex-direction: column; align-items: flex-start;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 100%; max-width: 320px;
    background: var(--bg); padding: 5.5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 105; overflow-y: auto;
    box-shadow: -20px 0 60px rgba(36,41,51,0.15);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.25rem; letter-spacing: 0.02em; text-transform: none; }
  .nav-links a::after { display: none; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }

  .featured-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .author-card-inner { flex-direction: column; }
  .subscribe-fields { flex-direction: column; }
  .btn-subscribe { text-align: center; }
}

@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 1.5rem; }
  .blog-hero, .posts-section, .featured-post,
  .subscribe-section, .related-posts,
  .post-header, .post-content, .author-card { padding-left: 1.5rem; padding-right: 1.5rem; }
  .post-header-meta { flex-direction: column; align-items: flex-start; }
}
