/* ============================================================
   Follow Turbo — Blog
   Design system alinhado a tokens.css (--ft-orange, Varela Round).
   Depende de: tokens.css, bootstrap-grid.min.css, footer.css.
   ============================================================ */

:root {
  --blog-max: 1140px;
  --blog-article: 760px;
  --blog-ink: var(--ft-ink, #23242a);
  --blog-muted: var(--ft-muted, #515151);
  --blog-line: #e9eaee;
  --blog-soft: #f6f7f9;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body.ft-blog {
  margin: 0;
  font-family: var(--ft-font, "Varela Round", Arial, sans-serif);
  color: var(--blog-ink);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.ft-blog a {
  color: var(--ft-orange, #ff6d00);
}

img {
  max-width: 100%;
}

.ft-wrap {
  width: 100%;
  max-width: var(--blog-max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
}

/* ── Skip link (a11y) ───────────────────────────────────── */
.ft-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ft-orange, #ff6d00);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.ft-skip:focus {
  left: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.ft-bhead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--blog-line);
}
.ft-bhead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.ft-bhead-logo img {
  display: block;
  height: 32px;
  width: auto;
}
.ft-bhead-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ft-bhead-nav a,
.ft-bhead-drop > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  border-radius: var(--r-pill, 999px);
  color: var(--blog-ink);
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.ft-bhead-nav a:hover,
.ft-bhead-nav a[aria-current="page"],
.ft-bhead-drop:hover > span {
  background: var(--ft-orange-50, #fff1e6);
  color: var(--ft-orange-600, #e85f00);
}
.ft-bhead-cta {
  background: var(--ft-orange, #ff6d00) !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: var(--sh-2, 0 8px 22px rgba(255, 109, 0, 0.12));
}
.ft-bhead-cta:hover {
  background: var(--ft-orange-600, #e85f00) !important;
  color: #fff !important;
}

/* Dropdown Pacotes */
.ft-bhead-drop {
  position: relative;
}
.ft-bhead-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--blog-line);
  border-radius: var(--r, 14px);
  box-shadow: 0 16px 40px rgba(20, 23, 38, 0.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.ft-bhead-drop:hover .ft-bhead-drop-menu,
.ft-bhead-drop:focus-within .ft-bhead-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ft-bhead-drop-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.ft-bhead-drop-menu a img {
  width: 24px;
  height: 24px;
}
.ft-bhead-arrow {
  font-size: 0.6rem;
  opacity: 0.6;
}

/* Mobile menu (CSS-only) */
.ft-bhead-toggle,
.ft-bhead-check {
  display: none;
}
@media (max-width: 900px) {
  .ft-bhead-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
  }
  .ft-bhead-toggle span {
    width: 24px;
    height: 2px;
    background: var(--blog-ink);
    border-radius: 2px;
  }
  .ft-bhead-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--blog-line);
    padding: 16px clamp(18px, 4vw, 32px) 24px;
    box-shadow: 0 18px 30px rgba(20, 23, 38, 0.08);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }
  .ft-bhead-check:checked ~ .ft-bhead-nav {
    transform: translateY(0);
  }
  .ft-bhead-drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 12px;
  }
}

/* ============================================================
   LIST / HERO
   ============================================================ */
.ft-blog-hero {
  background: linear-gradient(180deg, var(--ft-cream, #fff8f3) 0%, #fff 100%);
  border-bottom: 1px solid var(--blog-line);
  padding: clamp(36px, 6vw, 64px) 0 clamp(28px, 4vw, 44px);
}
.ft-blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ft-orange-600, #e85f00);
  background: var(--ft-orange-50, #fff1e6);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--r-pill, 999px);
}
.ft-blog-hero h1 {
  color: var(--blog-ink);
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.1;
  margin: 16px 0 12px;
  letter-spacing: -0.01em;
}
.ft-blog-hero p {
  color: var(--blog-muted);
  font-size: 1.12rem;
  max-width: 640px;
  margin: 0;
}

/* Categorias (chips de filtro) */
.ft-cat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.ft-cat-chip {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--blog-muted);
  background: #fff;
  border: 1px solid var(--blog-line);
  padding: 8px 16px;
  border-radius: var(--r-pill, 999px);
  transition: all 0.15s ease;
}
.ft-cat-chip:hover,
.ft-cat-chip[aria-current="page"] {
  color: #fff;
  background: var(--ft-orange, #ff6d00);
  border-color: var(--ft-orange, #ff6d00);
}

/* ── Destaque (post em evidência) ───────────────────────── */
.ft-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin: clamp(28px, 5vw, 48px) 0;
  padding: clamp(16px, 3vw, 24px);
  background: #fff;
  border: 1px solid var(--blog-line);
  border-radius: var(--r-lg, 18px);
  box-shadow: var(--sh-1, 0 2px 10px rgba(0, 0, 0, 0.04));
}
.ft-feature-media {
  display: block;
  overflow: hidden;
  border-radius: var(--r, 14px);
  aspect-ratio: 16 / 10;
  background: var(--blog-soft);
}
.ft-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ft-feature:hover .ft-feature-media img {
  transform: scale(1.03);
}
.ft-feature h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.18;
  margin: 12px 0;
}
.ft-feature h2 a {
  color: var(--blog-ink);
  text-decoration: none;
}
.ft-feature h2 a:hover {
  color: var(--ft-orange-600, #e85f00);
}
.ft-feature p {
  color: var(--blog-muted);
  margin: 0 0 16px;
}
@media (max-width: 760px) {
  .ft-feature {
    grid-template-columns: 1fr;
  }
}

/* ── Grid de cards ──────────────────────────────────────── */
.ft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin: clamp(24px, 4vw, 40px) 0;
}
.ft-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--blog-line);
  border-radius: var(--r, 14px);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ft-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(20, 23, 38, 0.1);
  border-color: #dfe1e7;
}
.ft-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--blog-soft);
}
.ft-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ft-card:hover .ft-card-media img {
  transform: scale(1.04);
}
.ft-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}
.ft-card-cat {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ft-orange-600, #e85f00);
  margin-bottom: 8px;
}
.ft-card h3 {
  font-size: 1.18rem;
  line-height: 1.32;
  margin: 0 0 10px;
}
.ft-card h3 a {
  color: var(--blog-ink);
  text-decoration: none;
}
.ft-card h3 a:hover {
  color: var(--ft-orange-600, #e85f00);
}
.ft-card p {
  color: var(--blog-muted);
  font-size: 0.95rem;
  margin: 0 0 16px;
}
.ft-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: #8a8f99;
  font-size: 0.82rem;
}
.ft-card-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

/* ── Paginação numerada ─────────────────────────────────── */
.ft-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: clamp(28px, 5vw, 56px) 0;
}
.ft-pagination a,
.ft-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--blog-line);
  background: #fff;
  color: var(--blog-ink);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.ft-pagination a:hover {
  border-color: var(--ft-orange, #ff6d00);
  color: var(--ft-orange-600, #e85f00);
}
.ft-pagination .is-current {
  background: var(--ft-orange, #ff6d00);
  border-color: var(--ft-orange, #ff6d00);
  color: #fff;
}
.ft-pagination .is-ellipsis {
  border: 0;
  background: none;
  min-width: 24px;
}
.ft-pagination .is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ============================================================
   ARTIGO
   ============================================================ */
.ft-article {
  padding: clamp(28px, 5vw, 48px) 0 0;
}
.ft-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: #8a8f99;
  margin-bottom: 18px;
}
.ft-breadcrumb a {
  color: var(--blog-muted);
  text-decoration: none;
}
.ft-breadcrumb a:hover {
  color: var(--ft-orange-600, #e85f00);
}
.ft-breadcrumb .sep {
  opacity: 0.5;
}

.ft-article-head {
  max-width: var(--blog-article);
  margin: 0 auto;
}
.ft-article-cat {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ft-orange-600, #e85f00);
}
.ft-article-head h1 {
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--blog-ink);
  margin: 12px 0 16px;
}
.ft-article-lead {
  font-size: 1.18rem;
  color: var(--blog-muted);
  margin: 0 0 24px;
}

/* Meta + autor */
.ft-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--blog-line);
  border-bottom: 1px solid var(--blog-line);
}
.ft-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ft-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--blog-soft);
}
.ft-author-name {
  font-weight: 700;
  color: var(--blog-ink);
  font-size: 0.95rem;
}
.ft-author-meta {
  color: #8a8f99;
  font-size: 0.82rem;
}
.ft-article-meta .ft-meta-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8a8f99;
  font-size: 0.85rem;
}

.ft-article-figure {
  max-width: 1000px;
  margin: clamp(24px, 4vw, 40px) auto;
  border-radius: var(--r-lg, 18px);
  overflow: hidden;
}
.ft-article-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.ft-article-figure figcaption {
  font-size: 0.85rem;
  color: #8a8f99;
  text-align: center;
  padding: 10px 16px 0;
}

/* Layout artigo + sumário */
.ft-article-body {
  max-width: var(--blog-article);
  margin: 0 auto;
}

/* Sumário (TOC) */
.ft-toc {
  background: var(--ft-cream, #fff8f3);
  border: 1px solid var(--blog-line);
  border-radius: var(--r, 14px);
  padding: 18px 20px;
  margin: 0 0 28px;
}
.ft-toc-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blog-muted);
  margin: 0 0 12px;
}
.ft-toc ol {
  margin: 0;
  padding-left: 1.1rem;
}
.ft-toc li {
  margin: 6px 0;
}
.ft-toc a {
  color: var(--blog-ink);
  text-decoration: none;
}
.ft-toc a:hover {
  color: var(--ft-orange-600, #e85f00);
  text-decoration: underline;
}
.ft-toc .lvl-3 {
  margin-left: 14px;
  font-size: 0.95em;
}

/* Conteúdo / tipografia rica */
.ft-content {
  color: #2a2d35;
  font-size: 1.09rem;
  line-height: 1.8;
}
.ft-content > * {
  scroll-margin-top: 90px;
}
.ft-content p,
.ft-content ul,
.ft-content ol,
.ft-content figure,
.ft-content table,
.ft-content blockquote,
.ft-content pre {
  margin: 0 0 1.45rem;
}
.ft-content h2,
.ft-content h3,
.ft-content h4 {
  color: var(--blog-ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  scroll-margin-top: 90px;
}
.ft-content h2 {
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  margin: 2.2em 0 0.7em;
  padding-top: 0.3em;
}
.ft-content h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  margin: 1.8em 0 0.6em;
}
.ft-content h4 {
  font-size: 1.18rem;
  margin: 1.5em 0 0.5em;
}
.ft-content a {
  color: var(--ft-orange-600, #e85f00);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ft-content img {
  border-radius: var(--r, 14px);
  height: auto;
}
.ft-content figure img {
  display: block;
  margin: 0 auto;
}
.ft-content figcaption {
  font-size: 0.85rem;
  color: #8a8f99;
  text-align: center;
  margin-top: 8px;
}
.ft-content ul,
.ft-content ol {
  padding-left: 1.4rem;
}
.ft-content li {
  margin: 0.4rem 0;
}
.ft-content blockquote {
  border-left: 4px solid var(--ft-orange, #ff6d00);
  background: var(--ft-cream, #fff8f3);
  padding: 16px 22px;
  border-radius: 0 var(--r-sm, 10px) var(--r-sm, 10px) 0;
  color: #3a3d45;
  font-size: 1.12rem;
}
.ft-content blockquote p:last-child {
  margin-bottom: 0;
}
.ft-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.ft-content th,
.ft-content td {
  border: 1px solid var(--blog-line);
  padding: 10px 14px;
  text-align: left;
}
.ft-content th {
  background: var(--blog-soft);
  font-weight: 700;
}
.ft-content pre {
  background: #1b1c20;
  color: #e6e6e6;
  padding: 18px;
  border-radius: var(--r, 14px);
  overflow-x: auto;
  font-size: 0.9rem;
}
.ft-content hr {
  border: 0;
  border-top: 1px solid var(--blog-line);
  margin: 2.4rem 0;
}

/* ============================================================
   CTA Instagram (crescer perfil)
   ============================================================ */
.ft-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff6d00 0%, #ff9a3d 100%);
  color: #fff;
  border-radius: var(--r-lg, 18px);
  padding: clamp(26px, 4vw, 40px);
  margin: clamp(28px, 5vw, 44px) 0;
  text-align: center;
  box-shadow: 0 18px 40px rgba(255, 109, 0, 0.28);
}
.ft-cta::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: -120px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}
.ft-cta-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}
.ft-cta h3 {
  position: relative;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin: 0 0 10px;
  color: #fff;
}
.ft-cta p {
  position: relative;
  margin: 0 auto 20px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
}
.ft-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ft-orange-600, #e85f00);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 30px;
  border-radius: var(--r-pill, 999px);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ft-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  color: var(--ft-orange-600, #e85f00);
}
.ft-cta-note {
  position: relative;
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* CTA inline compacto (meio do artigo) */
.ft-cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  background: var(--ft-cream, #fff8f3);
  border: 1px solid var(--ft-orange-50, #fff1e6);
  border-left: 4px solid var(--ft-orange, #ff6d00);
  border-radius: var(--r, 14px);
  padding: 18px 22px;
  margin: 2rem 0;
}
.ft-cta-inline-text {
  flex: 1;
  min-width: 200px;
}
.ft-cta-inline-text strong {
  display: block;
  color: var(--blog-ink);
  font-size: 1.05rem;
}
.ft-cta-inline-text span {
  color: var(--blog-muted);
  font-size: 0.92rem;
}
.ft-cta-inline .ft-btn {
  white-space: nowrap;
}

/* ============================================================
   Compartilhar / tags / autor box
   ============================================================ */
.ft-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 2rem 0;
}
.ft-share-label {
  font-weight: 700;
  color: var(--blog-muted);
  font-size: 0.9rem;
}
.ft-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blog-soft);
  color: var(--blog-ink);
  border: 1px solid var(--blog-line);
  transition: all 0.15s ease;
}
.ft-share a:hover {
  background: var(--ft-orange, #ff6d00);
  border-color: var(--ft-orange, #ff6d00);
  color: #fff;
}

.ft-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.6rem 0;
}
.ft-tag {
  font-size: 0.85rem;
  color: var(--blog-muted);
  background: var(--blog-soft);
  border: 1px solid var(--blog-line);
  padding: 6px 14px;
  border-radius: var(--r-pill, 999px);
  text-decoration: none;
}
.ft-tag:hover {
  border-color: var(--ft-orange, #ff6d00);
  color: var(--ft-orange-600, #e85f00);
}

.ft-authorbox {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--blog-soft);
  border: 1px solid var(--blog-line);
  border-radius: var(--r-lg, 18px);
  padding: 24px;
  margin: 2.4rem 0;
}
.ft-authorbox img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ft-authorbox-name {
  font-weight: 700;
  color: var(--blog-ink);
  font-size: 1.05rem;
}
.ft-authorbox-role {
  color: var(--ft-orange-600, #e85f00);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.ft-authorbox-bio {
  color: var(--blog-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ── Navegação anterior / próximo ───────────────────────── */
.ft-prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: clamp(28px, 5vw, 48px) 0;
}
.ft-prevnext a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--blog-line);
  border-radius: var(--r, 14px);
  text-decoration: none;
  background: #fff;
  transition: all 0.18s ease;
}
.ft-prevnext a:hover {
  border-color: var(--ft-orange, #ff6d00);
  box-shadow: var(--sh-1, 0 2px 10px rgba(0, 0, 0, 0.04));
}
.ft-prevnext .dir {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a8f99;
}
.ft-prevnext .ttl {
  color: var(--blog-ink);
  font-weight: 600;
  line-height: 1.35;
}
.ft-prevnext .next {
  text-align: right;
}
@media (max-width: 600px) {
  .ft-prevnext {
    grid-template-columns: 1fr;
  }
  .ft-prevnext .next {
    text-align: left;
  }
}

/* ── Posts relacionados ─────────────────────────────────── */
.ft-related {
  border-top: 1px solid var(--blog-line);
  padding: clamp(32px, 5vw, 56px) 0;
  margin-top: clamp(24px, 4vw, 40px);
}
.ft-related h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0 0 24px;
  color: var(--blog-ink);
}

/* ── Faixa CTA final antes do footer ────────────────────── */
.ft-endcta {
  background: var(--ft-cream, #fff8f3);
  border-top: 1px solid var(--blog-line);
  padding: clamp(36px, 6vw, 64px) 0;
  text-align: center;
}
.ft-endcta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--blog-ink);
  margin: 0 0 12px;
}
.ft-endcta p {
  color: var(--blog-muted);
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
}

/* Empty state (categoria sem posts) */
.ft-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--blog-muted);
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
