/* Blog Olefoot — layout + tipografia (tokens alinhados ao site) */
:root {
  --black: #080808;
  --yellow: #ffd200;
  --white: #f5f0e8;
  --gray: #1a1a1a;
  --muted: #888880;
  --font-display: "Agency FB", "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Moret", "Playfair Display", Georgia, serif;
}

.blog-page {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
.blog-page a {
  color: inherit;
  text-decoration: none;
}

/* Top nav (igual espírito Contato) */
.blog-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid rgba(255, 210, 0, 0.08);
  backdrop-filter: blur(12px);
}
.blog-nav .nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-nav .nav-links a:hover {
  color: var(--yellow);
  transition: color 0.2s;
}
.blog-nav .nav-links a.active {
  color: var(--yellow);
}
.blog-nav .nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 24px;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.blog-nav .nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

.blog-hero {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 48px 48px;
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 210, 0, 0.08);
}
.blog-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--yellow);
}
.blog-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 210, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 210, 0, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.blog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.blog-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.blog-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--yellow);
}
.blog-hero-title,
.blog-hero-display {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.blog-hero-title span,
.blog-hero-display span {
  color: var(--yellow);
}
.blog-hero-lead {
  margin-top: 18px;
  max-width: 560px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.5);
}

/* Grid: sidebar | main */
.blog-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 96px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  padding: 28px 24px;
  background: var(--gray);
  border: 1px solid rgba(255, 210, 0, 0.1);
}
.blog-sidebar-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 20px;
}
.blog-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-sidebar-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s, border-color 0.2s;
}
.blog-sidebar-link:last-child {
  border-bottom: none;
}
.blog-sidebar-link:hover {
  background: rgba(255, 210, 0, 0.04);
}
.blog-sidebar-date {
  display: block;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.blog-sidebar-txt {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(245, 240, 232, 0.88);
}
.blog-sidebar-link.is-active {
  border-left: 3px solid var(--yellow);
  margin-left: -24px;
  padding-left: 21px;
  background: rgba(255, 210, 0, 0.06);
}
.blog-sidebar-link.is-active .blog-sidebar-txt {
  color: var(--yellow);
}

.blog-main {
  min-width: 0;
}
.blog-main--index {
  padding-top: 8px;
}

/* Artigo */
.blog-article-meta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.blog-article-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  color: var(--white);
}
.blog-prose {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.82);
}
.blog-prose p {
  margin: 0 0 1.1em;
}
.blog-prose h2 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 2em 0 0.8em;
}
.blog-prose a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-prose a:hover {
  color: #fff;
}
.blog-prose .lead {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.92);
  margin-bottom: 1.4em;
}
.blog-prose code {
  font-size: 0.9em;
  padding: 0.15em 0.45em;
  background: rgba(255, 210, 0, 0.08);
  border-radius: 4px;
  color: rgba(245, 240, 232, 0.95);
}
.blog-prose ul {
  margin: 0 0 1.1em;
  padding-left: 1.25em;
  color: rgba(245, 240, 232, 0.82);
}
.blog-prose li {
  margin-bottom: 0.4em;
}
.blog-prose blockquote {
  margin: 1.4em 0;
  padding: 0.5em 0 0.5em 1.1em;
  border-left: 3px solid var(--yellow);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05em;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.92);
}
.blog-byline {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5em;
}
.blog-signoff {
  margin-top: 2em;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
}

.blog-cta-wrap {
  margin: 2.75em 0;
  text-align: center;
}
a.blog-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
a.blog-cta:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* Índice: destaque */
.blog-index-highlight {
  padding: 32px;
  background: #141414;
  border: 1px solid rgba(255, 210, 0, 0.12);
  margin-bottom: 40px;
}
.blog-index-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.blog-index-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--white);
}
.blog-index-excerpt {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 20px;
}
.blog-readmore {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-readmore::after {
  content: "→";
}

.blog-back {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.blog-back:hover {
  color: var(--yellow);
}

/* Footer (site) */
.blog-footer {
  background: var(--black);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  border-top: 1px solid rgba(255, 210, 0, 0.1);
}
.blog-footer .footer-brand {
  display: block;
  line-height: 0;
}
.blog-footer .footer-brand img {
  height: calc(28px * 1.1);
  width: auto;
  display: block;
  margin: 0 auto;
}
.blog-footer-legal {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.blog-footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-footer-social a:hover {
  color: var(--yellow);
}

@media (max-width: 1024px) {
  .blog-shell {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px 72px;
  }
  .blog-sidebar {
    position: static;
    order: 2;
  }
  .blog-main {
    order: 1;
  }
}

.lang-switch {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.lang-switch a { transition: color 0.2s; }
.lang-switch a:hover { color: var(--white); }
.lang-switch a.active { color: var(--yellow); }
.lang-switch span { color: rgba(255,255,255,0.15); font-size: 9px; }

@media (max-width: 900px) {
  .blog-nav {
    padding: 16px 20px;
  }
  .blog-nav .nav-links {
    display: none;
  }
  .blog-hero {
    padding: 100px 20px 36px;
  }
}
