  :root {
    --bg: #f5f7fb;
    --bg-soft: #ffffff;
    --border: #dde1ee;
    --text: #111827;
    --muted: #6b7280;
    --accent: #2563eb;
    --accent-soft: #e0edff;
    --danger-soft: #ffe4e6;
    --success-soft: #e5f9e7;
    --radius: 10px;
  }

  * {
    box-sizing: border-box;
  }

  /* garante que nenhuma imagem estoure a largura do container */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* trava qualquer overflow lateral globalmente */
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }

  /* =====================
     Layout geral do blog
     ===================== */
  .ep-page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* HEADER – mais claro e neutro */
  .ep-site-header {
    background: #ffffff;
    color: #111827;
    padding: 12px 18px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid #e5e7eb;
  }

  .ep-site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .ep-site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
  }

  .ep-site-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .ep-site-title {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .ep-site-tagline {
    font-size: 0.8rem;
    color: #6b7280;
  }

  .ep-site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
  }

  .ep-site-nav a {
    color: #111827;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .ep-site-nav a:hover {
    background: #e5edff;
    color: #1d4ed8;
  }

  @media (max-width: 720px) {
    .ep-site-header-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  .ep-main {
    padding: 24px 16px 32px;
    flex: 1;
  }

  .ep-main-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1.3fr);
    align-items: flex-start;
    /* evita que filhos do grid causem overflow horizontal */
    min-width: 0;
  }

  /* garante que as colunas do grid não estourem o viewport */
  .ep-container,
  .ep-sidebar {
    min-width: 0;
  }

  /* Telas grandes um pouco menores: ajusta proporção */
  @media (max-width: 1180px) {
    .ep-main-inner {
      grid-template-columns: minmax(0, 2.5fr) minmax(260px, 1.1fr);
      gap: 20px;
    }
  }

  /* Tablet / telas médias: 1 coluna (artigo em cima, sidebar embaixo) */
  @media (max-width: 1024px) {
    .ep-main-inner {
      grid-template-columns: 1fr;
    }

    .ep-sidebar {
      margin-top: 8px;
    }
  }

  /* Mobile: padding um pouco menor para respirar melhor */
  @media (max-width: 640px) {
    .ep-main {
      padding: 20px 12px 28px;
    }
  }

  /* Card principal do artigo */
  .ep-container {
    width: 100%;
    max-width: 100%;
    padding: 24px 20px 18px;
    background: var(--bg-soft);
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  }

  @media (min-width: 900px) {
    .ep-container {
      padding: 32px 36px 4px;
    }
  }

  @media (max-width: 640px) {
    .ep-container {
      padding: 20px 16px 12px;
    }
  }

  /* Sidebar */
  .ep-sidebar {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .ep-sidebar-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 14px 16px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    font-size: 0.9rem;
  }

  .ep-sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .ep-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .ep-sidebar-list li + li {
    margin-top: 8px;
  }

  .ep-sidebar-list a {
    text-decoration: none;
    color: var(--accent);
    font-size: 0.9rem;
  }

  .ep-sidebar-list a:hover {
    text-decoration: underline;
  }

  /* Resumo do guia – limitar links + ver mais */
  .ep-sidebar-list--resumo li.is-extra {
    display: none;
  }

  .ep-sidebar-list--resumo.is-expanded li.is-extra {
    display: list-item;
  }

  .ep-sidebar-more-toggle {
    margin-top: 8px;
    font-size: 0.85rem;
  }

  .ep-sidebar-more-toggle button {
    border: none;
    background: transparent;
    color: var(--accent);
    cursor: pointer;
    padding: 0;
    font: inherit;
    text-decoration: underline;
  }

	.ep-sidebar-tag-cloud {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 6px;
	  margin-top: 6px;
	}

	/* Usado tanto em <a> quanto em <span>, visual igual em todo lugar */
	.ep-sidebar-tag {
	  display: inline-block;
	  padding: 4px 10px;
	  border-radius: 999px;
	  background: #eef2ff;
	  font-size: 0.78rem;
	  color: #4338ca;
	  text-decoration: none;
	  cursor: pointer;
	  user-select: none;
	  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
	}

	.ep-sidebar-tag:hover {
	  background: #e0e7ff;
	  color: #312e81;
	  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
	}


  .ep-sidebar-note {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 6px;
  }

  .ep-sidebar-cta {
    margin-top: 8px;
    text-align: center;
  }

  .ep-sidebar-cta .ep-btn-primary {
    width: 100%;
    max-width: 260px;
  }

  /* Footer – claro e simples */
  .ep-site-footer {
    margin-top: auto;
    background: #f3f4f6;
    color: #4b5563;
    padding: 16px 16px 20px;
    font-size: 0.85rem;
    border-top: 1px solid #e5e7eb;
  }

  .ep-site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .ep-site-footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
  }

  .ep-site-footer a {
    color: #111827;
    text-decoration: none;
  }

  .ep-site-footer a:hover {
    text-decoration: underline;
  }

  .ep-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }

  /* -----------------------------
     Estilos originais do artigo
     ----------------------------- */

    /* BREADCRUMB */
    .ep-breadcrumb {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .ep-breadcrumb span + span::before {
      content: "›";
      margin: 0 4px;
      color: #9ca3af;
    }

	/* Links invisíveis para breadcrumb */
	.ep-breadcrumb a {
	  text-decoration: none;
	  color: inherit;
	}

	.ep-breadcrumb a:hover {
	  text-decoration: underline;
	}

  h1.ep-title-main {
    font-size: 1.9rem;
    margin: 0 0 6px;
  }

  @media (max-width: 640px) {
    h1.ep-title-main {
      font-size: 1.6rem;
    }
  }

  .ep-intro {
    font-size: 0.98rem;
    color: #111827;
    margin-bottom: 16px;
  }

  /* META INFO (data, tempo de leitura) */
  .ep-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 24px;
  }

  h1.ep-title,
  h2.ep-title {
    font-size: 1.7rem;
    margin: 0 0 6px;
  }

  .ep-subbadge {
    display: inline-block;
    font-size: 0.9rem;
    padding: 2px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #1d4ed8;
    margin-top: 4px;
  }

  .ep-rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 18px;
  }

  .ep-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #fef3c7;
    font-size: 0.9rem;
  }

  .ep-rating-pill span.star {
    color: #f59e0b;
    font-size: 1rem;
  }

  .ep-tag-premium {
    padding: 3px 10px;
    border-radius: 999px;
    background: #e0e7ff;
    color: #4338ca;
    font-size: 0.8rem;
  }

  /* CARD PRINCIPAL DO PRODUTO */
  .ep-product-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 24px;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(135deg, #f9fafb, #eef2ff);
    margin-bottom: 28px;
    max-width: 100%;
    min-width: 0;
  }

  .ep-product-card > * {
    min-width: 0;
  }

  @media (max-width: 768px) {
    .ep-product-card {
      grid-template-columns: 1fr;
      padding: 16px 12px;
    }
  }

	.ep-product-media {
	  display: flex;  
	  flex-direction: column;
	  gap: 12px;
	  align-items: center;
	  justify-content: flex-start;
	  text-align: center;
	}

	/* Imagem principal do produto */
	.ep-product-media img {
	  width: 100%;
	  max-width: 320px;
	  max-height: 320px; 
	  height: auto;   
	  border-radius: 14px;
	  border: 1px solid #e5e7eb;
	  background: #fff;
	  object-fit: contain; 
	  object-position: center; 
	  display: block;
	}

	/* Ajuste para telas menores (mobile) */
	@media (max-width: 600px) {
	  .ep-product-media img {
		max-height: 280px;   
	  }
	}


  .ep-price-note {
    font-size: 0.85rem;
    color: var(--muted);
  }

  .ep-product-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    text-align: center;
  }

  .ep-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    background: #f52b3c;
    color: #f9fafb;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.35);
    transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.1s ease;
  }

  .ep-btn-primary:hover {
    background: #e11d2f;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(185, 28, 28, 0.45);
  }

  .ep-btn-primary span.icon {
    font-size: 1.1rem;
    margin-left: 6px;
  }

  .ep-product-summary-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .ep-product-summary {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 10px;
  }

  .ep-highlight-list {
    list-style: disc;
    padding-left: 18px;
    margin: 8px 0 0;
    font-size: 0.95rem;
  }

  /* SEÇÕES DE TEXTO */
  section {
    margin-bottom: 28px;
  }

  section h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  section h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  section p {
    margin: 6px 0;
    font-size: 0.96rem;
  }

  /* GRID VANTAGENS X DESVANTAGENS */
  .ep-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 10px;
    max-width: 100%;
    min-width: 0;
  }

  .ep-pros,
  .ep-cons {
    padding: 16px 16px 14px;
    border-radius: var(--radius);
    min-width: 0;
  }

  .ep-pros {
    background: var(--success-soft);
  }

  .ep-cons {
    background: var(--danger-soft);
  }

  .ep-pros-title,
  .ep-cons-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .ep-pros-title span.icon {
    color: #16a34a;
  }
  .ep-cons-title span.icon {
    color: #dc2626;
  }

  .ep-pros ul,
  .ep-cons ul {
    padding-left: 18px;
    margin: 0;
    font-size: 0.95rem;
  }

  @media (max-width: 768px) {
    .ep-pros-cons {
      grid-template-columns: 1fr;
    }
  }

  .ep-header-image {
    margin: 16px 0 24px;
    text-align: center;
  }

  .ep-header-image img {
    width: 100%;
    max-width: 850px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  /* LISTAS DE PERFIL INDICADO */
  .ep-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    list-style: none;
    margin: 10px 0 4px;
  }

  .ep-pill-list li {
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef2ff;
    font-size: 0.85rem;
    color: #4338ca;
  }

  .ep-note {
    font-size: 0.86rem;
    color: var(--muted);
    margin-top: 6px;
  }

  .ep-divider {
    margin: 32px 0 28px;
    border-top: 1px dashed #e5e7eb;
  }

  /* =========================
     Índice (TOC) colapsável
     ========================= */
  .ep-toc {
    margin: 20px 0 24px;
    padding: 10px 12px;
    background: #f3f4ff;
    border-radius: var(--radius);
    border: 1px solid #e0e7ff;
    font-size: 0.95rem;
    max-width: 250px;
    margin-right: auto;
    transition: max-width 0.25s ease;
  }

  .ep-toc.is-open {
    max-width: 500px;
  }

  @media (max-width: 768px) {
    .ep-toc,
    .ep-toc.is-open {
      max-width: 100%;
    }
  }

  .ep-toc-toggle-header {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 4px 2px;
    cursor: pointer;
    font: inherit;
    color: var(--text);
  }

  .ep-toc-toggle-header:hover {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
  }

  .ep-toc-toggle-label {
    font-weight: 600;
    font-size: 0.98rem;
  }

  .ep-toc-toggle-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid #d4d4ff;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .ep-toc-toggle-lines,
  .ep-toc-toggle-lines::before,
  .ep-toc-toggle-lines::after {
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: #4b5563;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  }

  .ep-toc-toggle-lines::before {
    position: absolute;
    transform: translateY(-4px);
  }

  .ep-toc-toggle-lines::after {
    position: absolute;
    transform: translateY(4px);
  }

  .ep-toc-toggle-header.is-open .ep-toc-toggle-icon {
    background: #f0f2ff;
    border-color: #c7cffd;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.04);
  }

  .ep-toc-toggle-header.is-open .ep-toc-toggle-lines {
    background: transparent;
    opacity: 1;
  }

  .ep-toc-toggle-header.is-open .ep-toc-toggle-lines::before,
  .ep-toc-toggle-header.is-open .ep-toc-toggle-lines::after {
    opacity: 1;
  }

  .ep-toc-toggle-header.is-open .ep-toc-toggle-lines::before {
    transform: rotate(45deg);
  }

  .ep-toc-toggle-header.is-open .ep-toc-toggle-lines::after {
    transform: rotate(-45deg);
  }

  .ep-toc-inner {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition:
      max-height 0.3s ease,
      opacity 0.25s ease,
      padding-top 0.3s ease,
      padding-bottom 0.3s ease;
  }

  .ep-toc-inner.is-open {
    max-height: 800px;
    opacity: 1;
    padding-top: 6px;
    padding-bottom: 4px;
  }

  .ep-toc-title {
    font-weight: 600;
    margin-bottom: 6px;
  }

  .ep-toc ul {
    margin: 0;
    padding-left: 18px;
  }

  .ep-toc a {
    color: var(--accent);
    text-decoration: none;
  }

  .ep-toc a:hover {
    text-decoration: underline;
  }

  @media (max-width: 600px) {
    .ep-toc {
      max-width: 100%;
    }
  }

	/* =========================
	   Resumo rápido – lista compacta (1 produto por linha)
	   ========================= */
	.ep-summary-block {
	  margin: 24px 0 28px;
	  padding: 16px 16px 18px;
	  border-radius: var(--radius);
	  border: 1px solid var(--border);
	  background: #f9fafb;
	  font-size: 0.95rem;
	}

	.ep-summary-block h2 {
	  margin-top: 0;
	  font-size: 1.25rem;
	  margin-bottom: 6px;
	}

	.ep-summary-block > p {
	  margin: 0 0 12px;
	  color: var(--muted);
	  font-size: 0.9rem;
	}

	/* container das linhas */
	.ep-summary-table {
	  display: flex;
	  flex-direction: column;
	  gap: 8px;
	}

	/* Cada produto = 1 linha clicável */
	.ep-summary-row {
	  display: grid;
	  grid-template-columns: auto minmax(0, 1fr) auto;
	  gap: 12px;
	  align-items: center;
	  padding: 10px 12px;
	  border-radius: 10px;
	  border: 1px solid #e5e7eb;
	  background: #ffffff;
	  text-decoration: none;
	  color: inherit;
	  transition:
		background 0.15s ease,
		border-color 0.15s ease,
		box-shadow 0.15s ease,
		transform 0.08s ease;
	}

	.ep-summary-row:hover {
	  background: #eff6ff;
	  border-color: #bfdbfe;
	  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
	  transform: translateY(-1px);
	}

	.ep-summary-col {
	  min-width: 0;
	}

	.ep-summary-rank {
	  font-weight: 700;
	  font-size: 0.9rem;
	  color: #4b5563;
	}

	.ep-summary-main {
	  display: flex;
	  flex-direction: column;
	  gap: 2px;
	}

	.ep-summary-product {
	  font-weight: 600;
	  font-size: 0.98rem;
	}

	.ep-summary-tag {
	  display: inline-block;
	  font-size: 0.8rem;
	  padding: 2px 8px;
	  border-radius: 999px;
	  background: #e0f2fe;
	  color: #0369a1;
	  margin-top: 2px;
	  max-width: fit-content;
	}

	.ep-summary-meta {
	  font-size: 0.86rem;
	  color: var(--muted);
	  margin-top: 4px;
	}

	.ep-summary-extra {
	  font-size: 0.8rem;
	  color: #6b7280;
	}

	.ep-summary-cta {
	  text-align: right;
	}

	/* BOTÃO – vermelho com texto branco */
	.ep-summary-cta-pill {
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  gap: 4px;
	  padding: 8px 14px;
	  border-radius: 999px;
	  border: none;
	  background: #f52b3c;
	  color: #ffffff;
	  font-size: 0.83rem;
	  font-weight: 600;
	  white-space: nowrap;
	  text-decoration: none;
	  cursor: pointer;
	  box-shadow: 0 10px 22px rgba(229, 62, 62, 0.35);
	  transition:
		background 0.15s ease,
		transform 0.1s ease,
		box-shadow 0.15s ease;
	}

	.ep-summary-cta-pill:hover {
	  background: #e11d2f;
	  transform: translateY(-1px);
	  box-shadow: 0 12px 26px rgba(185, 28, 28, 0.45);
	}

	.ep-summary-cta-pill span.icon {
	  font-size: 0.9rem;
	}

	/* Mobile */
	@media (max-width: 640px) {
	  .ep-summary-row {
		grid-template-columns: minmax(0, 1fr);
		align-items: flex-start;
	  }

	  .ep-summary-cta {
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 6px;
	  }

	  .ep-summary-rank {
		font-size: 0.82rem;
		opacity: 0.8;
	  }
	}

  /* Blocos seções gerais (como escolher / FAQ) */
  .ep-section-block {
    margin: 32px 0 28px;
  }

  .ep-section-block h2 {
    margin-top: 0;
  }

  .ep-faq-item {
    margin-bottom: 14px;
  }

  .ep-faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  /* BLOCOS DE NOTAS POR CRITÉRIO */
  .ep-criteria-block {
    margin: 24px 0 12px;
    padding: 14px 14px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #f9fafb;
    max-width: 100%;
  }

  .ep-criteria-block h3 {
    font-size: 1.02rem;
    margin-bottom: 8px;
  }

  .ep-criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 100%;
    min-width: 0;
  }

  .ep-criteria-item {
    padding: 8px 10px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    min-width: 0;
  }

  .ep-criteria-label {
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .ep-criteria-score {
    font-size: 0.85rem;
    font-weight: 600;
    color: #15803d;
    margin-bottom: 2px;
  }

  .ep-criteria-detail {
    font-size: 0.82rem;
    color: var(--muted);
  }

  @media (max-width: 900px) {
    .ep-criteria-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 600px) {
    .ep-criteria-grid {
      grid-template-columns: 1fr;
    }
  }
	/* Especificações técnicas */
	.ep-specs-wrapper {
	  margin-top: 12px;
	  border-radius: var(--radius);
	  border: 1px solid var(--border);
	  background: #f9fafb;
	  padding: 16px;
	}

	.ep-specs-grid {
	  display: grid;
	  gap: 16px;
	  margin-top: 10px;
	  max-width: 100%;
	  min-width: 0;
	}

	.ep-specs-grid-2col {
	  grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	@media (max-width: 768px) {
	  .ep-specs-grid-2col {
		grid-template-columns: 1fr;
	  }
	}

	.ep-spec-table {
	  width: 100%;
	  border-collapse: collapse;
	  font-size: 0.9rem;
	}

	/* AQUI É ONDE A GENTE ENXUGA AS LINHAS */
	.ep-spec-table th,
	.ep-spec-table td {
	  padding: 2px 5px;        /* antes 6px 8px */
	  border-bottom: 1px solid #e5e7eb;
	  vertical-align: top;
	  line-height: 1.4;        /* força linha mais baixa só na tabela */
	}

	.ep-spec-table th {
	  width: 42%;
	  font-weight: 600;
	  color: #4b5563;
	}

	.ep-spec-table tr:last-child th,
	.ep-spec-table tr:last-child td {
	  border-bottom: none;
	}

	.ep-note {
	  font-size: 0.86rem;
	  color: var(--muted);
	  margin-top: 6px;
	  text-align: center;
	}

	/* =========================
	   Posts relacionados (carrossel)
	   ========================= */
	.ep-related-posts {
	  margin-top: 40px;
	  padding-top: 24px;
	  border-top: 1px solid #e5e7eb;
	}

	.ep-related-posts h2 {
	  font-size: 1.4rem;
	  margin-bottom: 10px;
	}

	.ep-related-intro {
	  font-size: 0.95rem;
	  color: var(--muted);
	  margin-bottom: 16px;
	}

	.ep-related-carousel {
	  position: relative;
	  max-width: 100%;
	}

	/* Linha de cards (track) */
	.ep-related-track {
	  display: grid;
	  grid-auto-flow: column;
	  gap: 16px;
	  overflow-x: auto;
	  padding-bottom: 8px;
	  scroll-snap-type: x mandatory;
	  -webkit-overflow-scrolling: touch;
	  max-width: 100%;
	  min-width: 0;

	  /* esconde barra de rolagem de forma cross-browser */
	  scrollbar-width: none;    /* Firefox */
	  -ms-overflow-style: none; /* IE/Edge antigo */
	}

	.ep-related-track::-webkit-scrollbar {
	  display: none;            /* Chrome, Edge novo, Safari */
	}

	.ep-related-card {
	  background: #ffffff;
	  border-radius: 12px;
	  border: 1px solid #e5e7eb;
	  padding: 10px 10px 12px;
	  font-size: 0.9rem;
	  display: flex;
	  flex-direction: column;
	  gap: 6px;
	  scroll-snap-align: start;
	  min-height: 100%;
	  min-width: 0;
	}

	/* Desktop: 3 cards visíveis */
	@media (min-width: 900px) {
	  .ep-related-track {
		grid-auto-columns: calc((100% - 2 * 16px) / 3);
	  }
	}

	/* Mobile / tablet: 1 card por vez */
	@media (max-width: 899px) {
	  .ep-related-track {
		grid-auto-columns: 100%;
	  }
	}

	.ep-related-category {
	  font-size: 0.75rem;
	  text-transform: uppercase;
	  letter-spacing: 0.04em;
	  color: #6b7280;
	}

	.ep-related-title {
	  font-size: 0.95rem;
	  font-weight: 600;
	  margin-bottom: 2px;
	}

	.ep-related-title a {
	  text-decoration: none;
	  color: var(--text);
	}

	.ep-related-title a:hover {
	  color: var(--accent);
	}

	.ep-related-meta {
	  font-size: 0.78rem;
	  color: var(--muted);
	}

	.ep-related-link {
	  margin-top: 4px;
	  font-size: 0.78rem;
	}

	.ep-related-link a {
	  color: var(--accent);
	  text-decoration: none;
	}

	.ep-related-link a:hover {
	  text-decoration: underline;
	}

	/* Navegação (setas) */
	.ep-related-nav {
	  display: flex;
	  justify-content: flex-end;
	  gap: 8px;
	  margin-top: 10px;
	}

	.ep-related-nav button {
	  border-radius: 999px;
	  border: 1px solid #d1d5db;
	  background: #ffffff;
	  width: 32px;
	  height: 32px;
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  cursor: pointer;
	  font-size: 1rem;
	  color: #4b5563;
	  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
	}

	.ep-related-nav button:hover:not(:disabled) {
	  background: #e5edff;
	  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
	  transform: translateY(-1px);
	}

	.ep-related-nav button:disabled {
	  opacity: 0.35;
	  cursor: default;
	  box-shadow: none;
	  transform: none;
	}

	#ep-related-track {
	  scroll-behavior: smooth;
	}
  /* Ajustes extras para mobile */
  @media (max-width: 768px) {
    .ep-main {
      padding-left: 8px;
      padding-right: 8px;
    }

    .ep-container {
      padding-left: 14px;
      padding-right: 14px;
    }
  }