/* ═══════════════════════════════════════════════════════════════════════════
   BLOG — listagem + posts individuais
   ═══════════════════════════════════════════════════════════════════════════ */

.blog-page {
  background: #0a0a0a;
  color: white;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* ── Reading progress bar (topo da tela) ────────────────────────────────── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cor-vermelho, #e53e3e), #ff8a8a);
  z-index: 1000;
  box-shadow: 0 0 12px rgba(229, 62, 62, 0.5);
  transition: width 0.05s linear;
}

/* ── Header minimalista (igual opcoes-custom) ───────────────────────────── */
.blog-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 3vw;
  z-index: 100;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.blog-back:hover { color: white; }

.blog-logo {
  color: white;
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.blog-logo strong { font-weight: 800; }

/* ── Main ───────────────────────────────────────────────────────────────── */
.blog-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3vw 80px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LISTAGEM (blog/index.html)
   ═══════════════════════════════════════════════════════════════════════════ */

.blog-hero {
  padding: 60px 0 50px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.blog-label {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cor-vermelho, #e53e3e);
  margin-bottom: 18px;
}

.blog-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 0 60px rgba(229, 62, 62, 0.15);
}
.blog-titulo strong { font-weight: 800; }

.blog-intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* Filtros de categoria */
.blog-filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 40px 0 50px;
}

.blog-filtro {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.25s;
}
.blog-filtro:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}
.blog-filtro.ativo {
  background: rgba(229, 62, 62, 0.15);
  border-color: rgba(229, 62, 62, 0.4);
  color: white;
}

/* Grid de posts */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(229, 62, 62, 0.2),
              0 0 28px rgba(229, 62, 62, 0.08);
}

.post-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a1a1a;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-img img {
  transform: scale(1.05);
}

.post-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.post-card-cat {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 99px;
}
.post-card-cat.infodicas { background: rgba(249, 115, 22, 0.14); color: #fdba74; }
.post-card-cat.faq       { background: rgba(34, 197, 94, 0.14);  color: #6ee7a3; }
.post-card-cat.analise   { background: rgba(168, 85, 247, 0.14); color: #c197fb; }

.post-card-titulo {
  font-family: Montserrat, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: white;
}

.post-card-resumo {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  flex: 1;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.post-card-meta span:not(:first-child)::before {
  content: '·';
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   POST INDIVIDUAL (post-template.html)
   ═══════════════════════════════════════════════════════════════════════════ */

.post-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 0;
}

.post-breadcrumb {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 30px;
}
.post-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.post-breadcrumb a:hover { color: white; }
.post-breadcrumb-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.25);
}

.post-cat {
  display: inline-block;
  padding: 5px 14px;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 99px;
  margin-bottom: 18px;
}
.post-cat.infodicas { background: rgba(249, 115, 22, 0.14); color: #fdba74; }
.post-cat.faq       { background: rgba(34, 197, 94, 0.14);  color: #6ee7a3; }
.post-cat.analise   { background: rgba(168, 85, 247, 0.14); color: #c197fb; }

.post-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 22px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.post-meta strong { color: rgba(255, 255, 255, 0.75); font-weight: 600; }
.post-meta span:not(:first-child)::before {
  content: '·';
  margin-right: 14px;
  color: rgba(255, 255, 255, 0.3);
}

.post-img-destaque {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Conteúdo do post — tipografia otimizada pra leitura longa
   Serifa no corpo (Georgia) torna a leitura mais confortável e "literária" */
.post-conteudo {
  font-family: Georgia, 'Iowan Old Style', 'Palatino', 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.005em;
}

/* Lead paragraph — primeiro parágrafo maior e mais marcante */
.post-conteudo > p:first-of-type {
  font-size: 22px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 400;
  margin-bottom: 36px;
}

/* Drop cap — letra inicial gigante estilo revista */
.post-conteudo > p:first-of-type::first-letter {
  float: left;
  font-family: Georgia, serif;
  font-size: 5.5em;
  line-height: 0.85;
  font-weight: 700;
  color: var(--cor-vermelho, #e53e3e);
  margin: 8px 14px 0 0;
  text-shadow: 0 0 30px rgba(229, 62, 62, 0.3);
}

.post-conteudo h2 {
  font-family: Montserrat, sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: white;
  margin: 60px 0 22px;
}
/* Primeiro H2 não precisa de margin-top extra (já tem espaço da imagem destaque) */
.post-conteudo > h2:first-child { margin-top: 8px; }

.post-conteudo h3 {
  font-family: Montserrat, sans-serif;
  font-size: clamp(19px, 2.4vw, 23px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: white;
  margin: 42px 0 16px;
}

.post-conteudo p {
  margin-bottom: 26px;
}

.post-conteudo a {
  color: var(--cor-vermelho, #e53e3e);
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 62, 62, 0.3);
  transition: border-color 0.2s, color 0.2s;
}
.post-conteudo a:hover {
  color: #ff7575;
  border-bottom-color: rgba(229, 62, 62, 0.7);
}

.post-conteudo strong { color: white; }

.post-conteudo ul,
.post-conteudo ol {
  margin: 0 0 22px 22px;
  padding: 0;
}
.post-conteudo li {
  margin-bottom: 8px;
}
.post-conteudo ul li::marker { color: var(--cor-vermelho, #e53e3e); }

.post-conteudo blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--cor-vermelho, #e53e3e);
  background: rgba(229, 62, 62, 0.05);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 0 10px 10px 0;
}

.post-conteudo img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 28px 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.post-conteudo figure {
  margin: 28px 0;
}
.post-conteudo figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  font-style: italic;
}

.post-conteudo table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  overflow: hidden;
}
.post-conteudo th,
.post-conteudo td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.post-conteudo th {
  background: rgba(229, 62, 62, 0.1);
  color: white;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.post-conteudo tr:last-child td { border-bottom: none; }

.post-conteudo code {
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: monospace;
  color: #ffd0d0;
}

.post-conteudo .destaque {
  background: rgba(229, 62, 62, 0.06);
  border: 1px solid rgba(229, 62, 62, 0.15);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 28px 0;
}
.post-conteudo .destaque strong { color: var(--cor-vermelho, #e53e3e); }

/* ── Layout 2-col (desktop): article + TOC sidebar sticky ───────────────── */
.post-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
}

@media (min-width: 1025px) {
  .post-wrapper {
    grid-template-columns: minmax(0, 1fr) 240px;
  }
  .post-sidebar {
    position: sticky;
    top: 30px;
    height: fit-content;
    align-self: start;
    padding-top: 80px;
  }
}

/* Tabela de Conteúdos (Sumário) */
.post-toc {
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  padding-left: 18px;
}
.post-toc-titulo {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}
.post-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-toc li { margin: 0; }
.post-toc a {
  display: block;
  padding: 6px 0;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s, padding-left 0.2s;
}
.post-toc li.toc-h2 a { font-weight: 500; }
.post-toc li.toc-h3 a {
  padding-left: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  position: relative;
}
.post-toc li.toc-h3 a::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  width: 6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.post-toc a:hover {
  color: white;
  transform: translateX(3px);
}
.post-toc a.ativo {
  color: var(--cor-vermelho, #e53e3e);
  font-weight: 600;
}
.post-toc li.toc-h3 a.ativo { color: #ff7575; }
.post-toc li.toc-h3 a.ativo::before {
  background: var(--cor-vermelho, #e53e3e);
  width: 8px;
}

/* Share buttons */
.post-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
.post-share-label {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 4px;
}
.post-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}
.post-share-btn:hover {
  background: rgba(229, 62, 62, 0.15);
  border-color: rgba(229, 62, 62, 0.4);
  color: white;
  transform: translateY(-2px);
}

/* Ornament/divider */
.post-conteudo .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
  color: rgba(255, 255, 255, 0.2);
  font-size: 22px;
  letter-spacing: 0.5em;
}

/* Caixa de destaque / key takeaway */
.post-conteudo .takeaway {
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.08), rgba(229, 62, 62, 0.02));
  border-left: 4px solid var(--cor-vermelho, #e53e3e);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 17px;
  line-height: 1.65;
}
.post-conteudo .takeaway-label {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cor-vermelho, #e53e3e);
  margin-bottom: 8px;
}

/* Card do autor */
.post-author {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 50px 0;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}
.post-author-foto {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(229, 62, 62, 0.4);
  flex-shrink: 0;
}
.post-author-info { flex: 1; }
.post-author-label {
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}
.post-author-nome {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.post-author-bio {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

/* CTA final do post */
.post-cta {
  margin: 60px 0;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.post-cta-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.post-cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.post-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: white;
  color: black;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.25s, background 0.25s;
}
.post-cta-btn:hover {
  transform: translateY(-2px);
  background: var(--cor-vermelho, #e53e3e);
  color: white;
}

/* Posts relacionados */
.post-relacionados {
  margin: 70px 0 0;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.post-relacionados-titulo {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.blog-footer {
  text-align: center;
  padding: 28px 3vw;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Sidebar: visível apenas em desktop ≥ 1025px ─────────────────────── */
@media (max-width: 1024px) {
  .post-sidebar { display: none; }
  .post-wrapper { gap: 0; }
}

/* ── TABLET (768px – 1024px) ──────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {
  .blog-main { padding: 0 32px 70px; overflow-x: hidden; }
  .blog-hero { padding: 50px 0 40px; }
  .blog-titulo { font-size: clamp(38px, 6vw, 56px); }
  .blog-intro { font-size: 15px; }

  .blog-filtros { margin: 32px 0 38px; }

  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .post-card-titulo { font-size: 1rem; }
  .post-card-resumo { font-size: 0.84rem; }

  .post-article { padding: 30px 0 0; max-width: 100%; }
  .post-titulo { font-size: clamp(28px, 4.8vw, 40px); }
  .post-conteudo { font-size: 18px; line-height: 1.78; }
  .post-conteudo > p:first-of-type { font-size: 20px; }
  .post-conteudo > p:first-of-type::first-letter { font-size: 5em; margin: 6px 12px 0 0; }
  .post-conteudo h2 { font-size: clamp(22px, 3vw, 28px); margin: 50px 0 18px; }
  .post-conteudo h3 { font-size: clamp(18px, 2.4vw, 21px); margin: 38px 0 14px; }
  .post-img-destaque { margin-bottom: 30px; }

  .post-cta { padding: 36px 28px; margin: 50px 0; }
  .post-author { padding: 22px 24px; }
  .post-share { padding: 18px 22px; }
  .post-relacionados { margin-top: 56px; padding-top: 44px; }
}

/* ── MOBILE (≤ 767px) ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .blog-main { padding: 0 20px 60px; overflow-x: hidden; }
  .blog-hero { padding: 30px 0 30px; }
  .blog-titulo { font-size: clamp(32px, 9vw, 44px); }

  .blog-filtros { margin: 28px 0 32px; gap: 6px; }
  .blog-filtro { padding: 7px 14px; font-size: 10px; }

  .posts-grid { grid-template-columns: 1fr; gap: 22px; }

  .post-wrapper { padding: 0; max-width: 100%; overflow-x: hidden; }
  .post-article { padding: 24px 0 0; max-width: 100%; overflow-x: hidden; }
  .post-titulo { font-size: clamp(22px, 7vw, 32px); }
  .post-meta {
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 11px;
  }
  .post-meta span:not(:first-child)::before { display: none; }

  .post-conteudo {
    font-size: 17px;
    line-height: 1.75;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .post-conteudo > p:first-of-type {
    font-size: 18px;
    line-height: 1.65;
  }
  .post-conteudo > p:first-of-type::first-letter {
    float: none;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
    margin: 0;
    text-shadow: none;
  }
  .post-conteudo h2 { font-size: 21px; margin: 38px 0 14px; }
  .post-conteudo h3 { font-size: 17px; margin: 28px 0 12px; }
  .post-img-destaque { aspect-ratio: 4/3; border-radius: 10px; margin-bottom: 24px; }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 28px -20px;
    padding: 0 20px;
    overscroll-behavior-x: contain;
  }
  .table-wrap table {
    min-width: 560px;
    margin: 0;
    white-space: normal;
    font-size: 13px;
  }
  .table-wrap th,
  .table-wrap td {
    min-width: 120px;
    white-space: normal;
    vertical-align: top;
  }
  .table-wrap th:first-child,
  .table-wrap td:first-child { min-width: 100px; }

  .takeaway { padding: 16px 18px; font-size: 16px; }

  .post-share {
    flex-wrap: wrap;
    padding: 14px 16px;
    gap: 8px;
  }
  .post-share-label { width: 100%; margin-right: 0; }

  .post-author { padding: 18px 18px; gap: 14px; }
  .post-author-foto { width: 52px; height: 52px; }
  .post-author-bio { font-size: 12px; }

  .post-cta { padding: 28px 20px; margin: 40px 0; }
  .post-cta-titulo { font-size: 19px; }
  .post-cta-desc { font-size: 13px; }

  .post-relacionados { margin-top: 44px; padding-top: 36px; }
  .post-relacionados-titulo { font-size: 12px; }
}
