/*
Theme Name: Sarah Messias Advocacia
Theme URI: https://sarahmessiasadvocacia.com.br
Author: Fortiq Assessoria
Author URI: https://wa.me/5561999869532
Description: Tema personalizado para o blog da Sarah Messias Advocacia. Paleta preto, dourado metálico e marfim — identidade premium, mesmo design system do site institucional.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Privado
Text Domain: sarah-messias
*/

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Dourado — uso semântico: */
  --gold-d:     #8A5713;  /* texto dourado sobre fundo CLARO (5.4:1) */
  --gold:       #B98227;  /* ícones/bordas dourados sobre fundo CLARO; texto sobre fundo ESCURO (6.1:1) */
  --gold-main:  #C99536;  /* texto/ícones dourados sobre fundo ESCURO — tom principal (7.6:1) */
  --gold-l:     #E4B95B;  /* hover/brilho sobre fundo ESCURO (11:1) */
  --gold-pale:  rgba(201,149,54,0.08);

  --black:      #050505;
  --white:      #FFFFFF;
  --cream:      #FBF8F2;
  --ivory:      #F6F1E7;
  --ink:        #171717;
  --muted:      #666666;
  --border:     rgba(130,100,50,0.16);

  /* Tipografia — mesmo par do site institucional */
  --FT: 'Playfair Display', Georgia, serif;
  --FB: 'Manrope', 'Segoe UI', sans-serif;
  --FA: 'Cormorant Garamond', Georgia, serif;

  /* Gradientes e sombras douradas */
  --gradient-gold-btn: linear-gradient(135deg, #986317, #D7A842, #F0CB73, #B47A20);
  --gradient-gold-line: linear-gradient(90deg, var(--gold-d), var(--gold-l));
  --shadow-gold: 0 10px 30px rgba(185,130,39,.18), inset 0 1px 0 rgba(255,255,255,.25);
  --shadow-gold-hover: 0 16px 42px rgba(185,130,39,.28), inset 0 1px 0 rgba(255,255,255,.3);
  --shadow-card: 0 10px 35px rgba(0,0,0,.035);
  --shadow-card-hover: 0 20px 50px rgba(0,0,0,.08), 0 0 0 1px rgba(201,149,54,.08);

  /* Espaços */
  --container: 1180px;
  --gap:       28px;

  /* Transição */
  --t: 0.3s cubic-bezier(0.2,0.8,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--FB);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-d); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold); }
ul, ol { padding-left: 1.4em; }

/* ═══════════════════════════════════════
   TIPOGRAFIA
═══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--FT);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.6em;
}
h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }

p { margin-bottom: 1.2em; color: var(--muted); }
p:last-child { margin-bottom: 0; }

blockquote {
  font-family: var(--FA);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-d);
  border-left: 2px solid var(--gold-main);
  padding: 12px 22px;
  margin: 28px 0;
  background: var(--gold-pale);
  border-radius: 0 8px 8px 0;
}

code, pre {
  font-family: 'Courier New', monospace;
  font-size: 0.88rem;
  background: var(--cream);
  border-radius: 4px;
  padding: 2px 6px;
}
pre { padding: 18px; overflow-x: auto; line-height: 1.6; }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
  padding: 56px 0 80px;
}

.content-area {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  background: rgba(5,5,5,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(201,149,54,.22);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

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

.site-logo img { height: 64px; width: auto; }
.site-logo .text-logo {
  font-family: var(--FT);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.site-logo .text-logo span { color: var(--gold-main); }

/* nav */
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0; margin: 0;
}
.main-navigation a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--t);
  position: relative;
}
.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-main);
  border-radius: 2px;
  transition: width var(--t);
}
.main-navigation a:hover,
.main-navigation .current-menu-item a { color: var(--white); }
.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-gold-btn);
  color: var(--ink) !important;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  letter-spacing: 0.3px;
  transition: all var(--t);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
  color: var(--ink) !important;
}

/* ═══════════════════════════════════════
   HERO DO BLOG (página inicial)
═══════════════════════════════════════ */
.blog-hero {
  background: var(--black);
  background-image: url("images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 64px 28px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::after { content:""; position:absolute; inset:0; background:rgba(5,5,5,0.85); pointer-events:none; }
.blog-hero .container { position:relative; z-index:2; }
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -10%, rgba(201,149,54,0.10), transparent 65%);
  pointer-events: none;
}
.blog-hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.blog-hero-eyebrow::before, .blog-hero-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--gold-main);
}
.blog-hero h1 {
  font-family: var(--FT);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.blog-hero h1 em { font-style: italic; color: var(--gold-l); }
.blog-hero p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

/* ═══════════════════════════════════════
   POSTS — LISTA
═══════════════════════════════════════ */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

/* post featured (primeiro) */
.post-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--t);
}
.post-card-featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(201,149,54,0.6);
}
.post-card-featured .post-thumb {
  aspect-ratio: 4/3;
}
.post-card-featured .post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.post-card-featured:hover .post-thumb img { transform: scale(1.04); }
.post-card-featured .post-body {
  padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: center;
}

/* post card normal */
.post-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--t);
  min-height: 0;
}
/* sem imagem: texto ocupa 100% */
.post-card.no-thumb {
  grid-template-columns: 1fr;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(201,149,54,0.5);
}
.post-card .post-thumb { overflow: hidden; align-self: stretch; }
.post-card .post-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-card .post-body {
  padding: 24px 28px;
  display: flex; flex-direction: column; justify-content: flex-start;
  min-width: 0;
}
/* featured sem imagem: coluna única */
.post-card-featured.no-thumb {
  grid-template-columns: 1fr;
}
.post-card-featured.no-thumb .post-body {
  padding: 40px 44px;
  max-width: 800px;
}

/* post body comum */
.post-category {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 10px;
}
.post-title {
  font-family: var(--FT);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color var(--t);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-title a { color: inherit; }
.post-title a:hover { color: var(--gold-d); }

.post-excerpt {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  color: #999;
  margin-top: auto;
  flex-wrap: wrap;
}
.post-meta span { display: flex; align-items: center; gap: 4px; }
.post-meta svg { width: 12px; height: 12px; stroke: var(--gold-d); fill: none; }

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold-d);
  margin-top: 14px;
  transition: gap var(--t);
}
.btn-read:hover { gap: 10px; }
.btn-read::after { content: '→'; }

/* ═══════════════════════════════════════
   POST ÚNICO (single.php)
═══════════════════════════════════════ */
.single-category {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-main);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.single-category::before { content: ''; width: 22px; height: 1px; background: var(--gold-main); }
.single-title {
  font-family: var(--FT);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600; color: var(--white);
  line-height: 1.15; margin-bottom: 20px;
  max-width: 760px;
}
.single-meta {
  display: flex; align-items: center; gap: 20px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}
.single-meta svg { width: 14px; height: 14px; stroke: var(--gold-main); fill: none; }
.single-meta span { display: flex; align-items: center; gap: 5px; }

/* thumbnail do post */
.single-thumb {
  max-width: 860px;
  margin: 0 auto 48px;
  padding: 0 28px;
}
.single-thumb img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  margin-top: -32px;
  position: relative; z-index: 2;
}

/* conteúdo do post */
.entry-content {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--ink);
  max-width: 720px;
}
.entry-content h2 {
  font-size: 1.5rem;
  margin-top: 48px; margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.entry-content h3 { font-size: 1.15rem; margin-top: 36px; }
.entry-content p { color: #444; margin-bottom: 1.4em; }
.entry-content ul, .entry-content ol { margin-bottom: 1.4em; }
.entry-content li { margin-bottom: 0.5em; color: #444; }
.entry-content a { color: var(--gold-d); border-bottom: 1px solid rgba(201,149,54,0.3); }
.entry-content a:hover { color: var(--gold); border-color: var(--gold); }
.entry-content img { border-radius: 8px; margin: 28px 0; }
.entry-content strong { color: var(--ink); font-weight: 700; }

/* aviso OAB */
.aviso-oab {
  background: var(--cream);
  border: 1px solid rgba(201,149,54,0.2);
  border-left: 3px solid var(--gold-main);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 32px 0;
  line-height: 1.7;
}

/* tags do post */
.post-tags {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.post-tags span { font-size: 0.72rem; color: var(--muted); font-weight: 600; }
.tag-item {
  font-size: 0.7rem; font-weight: 600;
  color: var(--gold-d);
  background: var(--gold-pale);
  border: 1px solid rgba(201,149,54,0.2);
  padding: 4px 12px; border-radius: 30px;
  transition: all var(--t);
}
.tag-item:hover { background: var(--gold-d); color: var(--white); }

/* posts relacionados */
.related-posts { margin-top: 56px; }
.related-posts h3 {
  font-family: var(--FT);
  font-weight: 600;
  font-size: 1.2rem; margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.related-posts h3::before { content: ''; width: 3px; height: 20px; background: var(--gradient-gold-line); border-radius: 2px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.related-card {
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-card); transition: all var(--t);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: rgba(201,149,54,0.5); }
.related-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.related-card-body { padding: 14px; }
.related-card-cat { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-d); margin-bottom: 6px; }
.related-card-title { font-family: var(--FT); font-weight: 600; font-size: 0.88rem; color: var(--ink); line-height: 1.35; }
.related-card-title a { color: inherit; }
.related-card-title a:hover { color: var(--gold-d); }

/* ═══════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 32px; }

.widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.widget-title {
  font-family: var(--FT);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 8px;
}
.widget-title::before {
  content: ''; width: 3px; height: 14px;
  background: var(--gold-main); border-radius: 2px;
}
.widget-body { padding: 20px; }

/* widget: sobre */
.widget-sobre { text-align: center; }
.widget-sobre img {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  margin: 0 auto 12px;
  border: 2px solid var(--gold);
}
.widget-sobre h4 { font-family: var(--FT); font-weight: 600; font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.widget-sobre p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.widget-sobre .oab-badge {
  display: inline-block;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold-d);
  background: var(--gold-pale); border: 1px solid rgba(201,149,54,0.2);
  padding: 3px 10px; border-radius: 30px;
  margin-bottom: 14px;
}

/* widget: categorias */
.cat-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.cat-list li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; border-radius: 6px;
  font-size: 0.83rem; color: var(--ink);
  font-weight: 500; transition: all var(--t);
}
.cat-list li a:hover { background: var(--gold-pale); color: var(--gold-d); }
.cat-list .cat-count {
  font-size: 0.7rem; background: var(--cream);
  padding: 2px 8px; border-radius: 10px; color: var(--muted);
}

/* widget: posts recentes */
.recent-posts-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.recent-post-item { display: grid; grid-template-columns: 64px 1fr; gap: 12px; align-items: start; }
.recent-post-item.no-thumb { grid-template-columns: 1fr; }
.recent-post-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.recent-post-title {
  font-family: var(--FT);
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.recent-post-title a { color: inherit; }
.recent-post-title a:hover { color: var(--gold-d); }
.recent-post-date { font-size: 0.68rem; color: #aaa; margin-top: 4px; }

/* widget: CTA */
.widget-cta {
  background: var(--black);
  text-align: center;
  padding: 28px 20px;
  border-radius: 14px;
  position: relative; overflow: hidden;
}
.widget-cta::before {
  content: '';
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,54,0.12), transparent 65%);
  pointer-events: none;
}
.widget-cta h4 { font-family: var(--FT); font-weight: 600; font-size: 1.05rem; color: var(--white); margin-bottom: 8px; position: relative; z-index: 1; }
.widget-cta p { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; position: relative; z-index: 1; }
.widget-cta .btn-wpp-sm {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-gold-btn); color: var(--ink);
  font-weight: 700; font-size: 0.8rem;
  padding: 11px 22px; border-radius: 30px;
  box-shadow: var(--shadow-gold);
  transition: all var(--t);
  position: relative; z-index: 1;
}
.widget-cta .btn-wpp-sm:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
  color: var(--ink);
}

/* ═══════════════════════════════════════
   PAGINAÇÃO
═══════════════════════════════════════ */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 48px;
}
.page-numbers {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 700;
  border: 1px solid var(--border);
  color: var(--ink); transition: all var(--t);
  white-space: nowrap;
}
.page-numbers:hover, .page-numbers.current {
  background: var(--gradient-gold-btn); color: var(--ink);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.page-numbers.dots { border: none; width: auto; }
.page-numbers.next, .page-numbers.prev {
  width: auto; height: 42px;
  padding: 0 18px;
  font-size: 0.78rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,149,54,.25);
  padding: 52px 28px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.footer-brand img { height: 72px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 1.8; }
.footer-oab {
  display: inline-block; margin-top: 12px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-main);
  background: rgba(201,149,54,0.08);
  border: 1px solid rgba(201,149,54,0.2);
  padding: 4px 12px; border-radius: 30px;
}
.footer-col h4 {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-main);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--gold-l); }
.footer-bottom {
  display: flex; flex-direction: row; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,.25); }
.footer-bottom a { color: var(--gold-main); }
.footer-social { display: flex; gap: 8px; }
.f-soc {
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.f-soc:hover { background: var(--gold-main); border-color: var(--gold-main); transform: translateY(-2px); }
.f-soc svg { width: 13px; height: 13px; fill: rgba(255,255,255,0.45); transition: fill var(--t); }
.f-soc:hover svg { fill: var(--white); }

/* Footer — crédito Fortiq */
.footer-credit { color: rgba(255,255,255,.45); font-size: .7rem; margin-top: 3px; text-align: center; }
.footer-credit a { color: var(--gold-main); font-weight: 600; transition: color var(--t); }
.footer-credit a:hover { color: var(--gold-l); }

/* ═══════════════════════════════════════
   WPP FLOAT (fica verde — reconhecimento da plataforma)
═══════════════════════════════════════ */
.wpp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s ease;
  animation: wppPulse 2.4s infinite;
}
.wpp-float:hover { transform: scale(1.1); }
.wpp-float svg { width: 26px; height: 26px; fill: white; }
@keyframes wppPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 24px rgba(37,211,102,0.65), 0 0 0 12px rgba(37,211,102,0.07); }
}

/* ═══════════════════════════════════════
   UTILITÁRIOS
═══════════════════════════════════════ */
.gold-line { width: 48px; height: 2px; background: var(--gradient-gold-line); border-radius: 2px; margin-bottom: 14px; }
.text-gold { color: var(--gold-d); }
.text-muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .content-area { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .post-card-featured { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .post-card { grid-template-columns: 1fr; }
  .post-card .post-thumb { aspect-ratio: 16/9; }
  .site-header .container { gap: 14px; }
  .main-navigation { display: none; }
  .sidebar { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .single-title { font-size: 1.8rem; }
}

/* ═══════════════════════════════════════
   SINGLE PREMIUM — HERO COM IMAGEM
═══════════════════════════════════════ */
.single-header {
  background: var(--black);
  padding: 80px 28px 60px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}
.single-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.95) 0%, rgba(5,5,5,.7) 40%, rgba(5,5,5,.45) 100%);
}
.single-header .container { position: relative; z-index: 2; width: 100%; }

/* Breadcrumbs */
.breadcrumbs {
  font-size: .72rem; color: rgba(255,255,255,.45);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255,255,255,.55); transition: color var(--t); }
.breadcrumbs a:hover { color: var(--gold-l); }
.bc-sep { color: rgba(255,255,255,.25); }

/* CTA do post: layout com avatar */
.post-cta-box {
  background: var(--black);
  border-radius: 14px;
  padding: 32px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  position: relative; overflow: hidden;
}
.post-cta-box::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,54,.12), transparent 65%);
  pointer-events: none;
}
.post-cta-avatar img {
  width: 72px; height: 72px;
  border-radius: 50%; object-fit: cover; object-position: top;
  border: 2px solid var(--gold-main);
}
.post-cta-content h4 {
  font-family: var(--FT); font-weight: 600; font-size: 1.05rem;
  color: var(--white); margin-bottom: 5px;
}
.post-cta-content p { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.btn-wpp-post {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-gold-btn); color: var(--ink);
  font-weight: 700; font-size: .82rem;
  padding: 12px 24px; border-radius: 30px;
  box-shadow: var(--shadow-gold);
  transition: all var(--t);
}
.btn-wpp-post:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-hover); color: var(--ink); }

/* Compartilhar — mantém cores oficiais das plataformas */
.post-share {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: .78rem; color: var(--muted); font-weight: 600;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600;
  padding: 7px 14px; border-radius: 6px;
  transition: all var(--t);
  color: var(--white);
}
.share-wpp { background: #25D366; }
.share-wpp:hover { background: #1EBC58; color: var(--white); }
.share-fb  { background: #1877F2; }
.share-fb:hover  { background: #1565D8; color: var(--white); }
.share-li  { background: #0A66C2; }
.share-li:hover  { background: #084fa0; color: var(--white); }

/* Single article spacing */
.single-article { max-width: 100%; }
.single-article .entry-content { font-size: 1.02rem; line-height: 1.9; color: #333; }
.single-article .entry-content h2 { margin-top: 44px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.single-article .entry-content img { border-radius: 10px; margin: 28px 0; box-shadow: 0 8px 30px rgba(0,0,0,.08); }
