/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0f2137;
  --navy-2:  #1e3550;
  --gold:    #c9a84c;
  --gold-lt: rgba(201,168,76,.15);
  --cream:   #e8dcc8;
  --bg:      #f5f3ef;
  --bg2:     #fff;
  --border:  #e0d8c8;
  --muted:   #6b6055;
  --text:    #1a1a1a;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
  --radius:  3px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); font-size: 18px; line-height: 1.75; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Utilities ────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: #8a6f3a; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: #d4c5a0; }

/* ── Header ───────────────────────────────────────────── */
.header-top {
  background: #0a1824;
  text-align: center; padding: 8px;
  font-size: 11px; letter-spacing: 2px; color: #8fa8c0; text-transform: uppercase;
}
.site-header { background: var(--navy); border-bottom: 1px solid var(--navy-2); position: sticky; top: 0; z-index: 100; }
.header-main { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.site-logo { font-family: var(--serif); font-size: 22px; color: var(--cream); font-weight: 700; letter-spacing: -.5px; }
.site-logo span { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { color: #8fa8c0; font-size: 13px; padding: 8px 12px; border-radius: var(--radius); transition: color .2s; cursor: pointer; }
.nav-link:hover, .nav-link.active { color: var(--gold); }

/* Dropdown */
.nav-item { position: relative; }
.arrow { font-size: 10px; margin-left: 3px; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy); border: 1px solid var(--navy-2); border-top: 2px solid var(--gold);
  min-width: 200px; list-style: none; padding: 8px 0; z-index: 200;
}
.nav-item:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 8px 16px; color: #8fa8c0; font-size: 13px; }
.dropdown li a:hover { color: var(--gold); background: rgba(255,255,255,.04); }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: #8fa8c0; transition: .3s; }

/* ── Hero ─────────────────────────────────────────────── */
.hero { background: var(--navy); border-bottom: 3px solid var(--gold); padding: 44px 0 52px; }
.hero-inner { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }

.hero-tag {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 500; letter-spacing: 2px;
  padding: 4px 10px; margin-bottom: 14px; text-transform: uppercase;
}

.hero-title {
  font-family: var(--sans); font-size: 28px; color: var(--cream);
  line-height: 1.25; font-weight: 700; margin-bottom: 14px;
}
.hero-title a { color: var(--cream); }
.hero-title a:hover { color: var(--gold); }

.hero-excerpt {
  font-size: 16px; color: #8fa8c0; line-height: 1.7; margin-bottom: 20px;
  /* Limita o resumo a 3 linhas */
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* Garante que nenhum elemento filho do hero herde cor escura */
.hero-left * { color: inherit; }
.hero-left p, .hero-left li, .hero-left ul, .hero-left ol { color: #8fa8c0; }
.hero-left h1, .hero-left h2, .hero-left h3 { color: var(--cream); font-family: var(--sans); }
.hero-left strong, .hero-left b { color: var(--cream); }

.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 20px; }
.hero-date { font-size: 11px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }
.hero-cat {
  background: var(--gold-lt); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold); font-size: 10px; padding: 3px 9px;
  border-radius: var(--radius); letter-spacing: 1px; text-transform: uppercase;
}
.btn-read {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: 12px; font-weight: 500; padding: 9px 20px;
  letter-spacing: .5px; transition: opacity .2s;
}
.btn-read:hover { opacity: .85; }

.hero-right { display: flex; flex-direction: column; gap: 10px; }
.mini-card {
  background: rgba(255,255,255,.04); border: .5px solid rgba(255,255,255,.1);
  border-left: 2px solid var(--gold); padding: 12px 14px; transition: background .2s; display: block;
}
.mini-card:hover { background: rgba(255,255,255,.08); }
.mini-cat { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.mini-title { font-family: var(--sans); font-size: 13px; color: var(--cream); line-height: 1.35; margin-bottom: 5px; }
.mini-date { font-size: 10px; color: #5a7590; letter-spacing: .5px; }

/* ── Page body layout ─────────────────────────────────── */
.page-body {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 40px; padding: 36px 24px; align-items: start;
  max-width: 1160px; margin: 0 auto;
}
.posts-wrap { min-width: 0; }

/* ── Post cards ───────────────────────────────────────── */
.posts-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.post-card {
  background: var(--bg2); border: .5px solid var(--border);
  display: flex; overflow: hidden; transition: transform .15s;
}
.post-card:hover { transform: translateX(4px); }
.post-num {
  width: 52px; background: var(--navy); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-family: var(--sans);
  font-size: 20px; flex-shrink: 0;
}
.post-body { padding: 16px 20px; flex: 1; min-width: 0; }
.post-cats { display: flex; gap: 6px; align-items: center; margin-bottom: 6px; flex-wrap: wrap; }
.post-cat-parent { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: #8a6f3a; }
.post-cat-parent::after { content: ' /'; color: #ccc; margin-right: 2px; }
.post-cat { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.post-title { font-family: var(--sans); font-size: 19px; color: var(--text); line-height: 1.5; margin-bottom: 8px; font-weight: 600; }
.post-title a { color: var(--text); }
.post-title a:hover { color: var(--gold); }
.post-excerpt { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.post-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.post-date { font-size: 11px; color: #9a8e80; letter-spacing: .5px; }
.post-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: 9px; background: #f0ebe0; color: #7a6a50; padding: 2px 8px; border-radius: var(--radius); letter-spacing: .5px; }

.see-all { text-align: center; margin-top: 8px; }
.btn-outline {
  display: inline-block; border: 1px solid var(--navy); color: var(--navy);
  font-size: 12px; padding: 10px 24px; letter-spacing: .5px; transition: all .2s;
}
.btn-outline:hover { background: var(--navy); color: var(--gold); }

/* ── Section page header ──────────────────────────────── */
.section-header { margin-bottom: 28px; }
.section-title { font-family: var(--sans); font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.section-desc { font-size: 16px; color: var(--muted); margin-bottom: 20px; }
.subcats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; margin-bottom: 24px; }
.subcat-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg2); border: .5px solid var(--border);
  padding: 6px 14px; font-size: 12px; transition: all .2s;
}
.subcat-pill:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.subcat-pill span {
  background: var(--navy); color: var(--gold);
  font-size: 10px; padding: 1px 6px; border-radius: var(--radius);
}

/* ── Single post ──────────────────────────────────────── */
.single-post { min-width: 0; }
.breadcrumb {
  font-size: 12px; color: var(--muted); margin-bottom: 24px;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: #bbb; }

.post-header { margin-bottom: 24px; }
.post-title-single { font-family: var(--sans); font-size: 30px; font-weight: 700; line-height: 1.2; margin: 10px 0 12px; }
.post-desc { font-size: 16px; color: var(--muted); margin-bottom: 16px; line-height: 1.65; }
.post-meta-bar { display: flex; gap: 16px; align-items: center; font-size: 12px; color: #9a8e80; margin-bottom: 12px; flex-wrap: wrap; }
.post-ticker { background: var(--navy); color: var(--gold); font-size: 11px; font-weight: 500; padding: 2px 10px; border-radius: var(--radius); letter-spacing: 1px; }
.post-tags-bar { display: flex; gap: 6px; flex-wrap: wrap; }
.post-divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

/* Conteúdo do post (Markdown renderizado) */
.post-content { color: var(--text); }
.post-content h2 { font-family: var(--sans); font-size: 22px; font-weight: 700; margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); color: var(--text); }
.post-content h3 { font-family: var(--sans); font-size: 18px; font-weight: 600; margin: 24px 0 10px; color: var(--text); }
.post-content p { margin-bottom: 18px; line-height: 1.85; font-size: 17px; color: var(--text); }
.post-content ul, .post-content ol { margin: 0 0 16px 24px; }
.post-content li { margin-bottom: 6px; line-height: 1.7; color: var(--text); }
.post-content strong { font-weight: 500; color: var(--navy); }
.post-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.post-content th { background: var(--navy); color: var(--gold); padding: 10px 14px; text-align: left; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.post-content td { padding: 9px 14px; border-bottom: .5px solid var(--border); color: var(--text); }
.post-content tr:nth-child(even) td { background: #faf8f4; }
.post-content blockquote { border-left: 3px solid var(--gold); padding: 12px 20px; background: #faf8f4; margin: 20px 0; font-style: italic; color: var(--muted); }

.disclaimer { background: #faf8f4; border: .5px solid var(--border); border-left: 3px solid var(--gold); padding: 14px 18px; font-size: 13px; color: var(--muted); margin: 28px 0; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.post-nav-prev, .post-nav-next { background: var(--bg2); border: .5px solid var(--border); padding: 14px 18px; transition: border-color .2s; display: block; }
.post-nav-prev:hover, .post-nav-next:hover { border-color: var(--gold); }
.post-nav-next { text-align: right; }
.post-nav-prev span, .post-nav-next span { display: block; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.post-nav-prev strong, .post-nav-next strong { font-family: var(--sans); font-size: 13px; color: var(--text); font-weight: 600; }

/* ── Sidebar ──────────────────────────────────────────── */
.sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 28px; }
.sb-title { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #8a6f3a; padding-bottom: 8px; border-bottom: 1px solid #d4c5a0; margin-bottom: 14px; }

/* Pagefind */
.pagefind-ui__search-input {
  background: var(--bg2) !important; border: .5px solid var(--border) !important;
  font-family: var(--sans) !important; font-size: 13px !important; color: var(--text) !important;
  padding: 8px 12px !important; border-radius: var(--radius) !important; width: 100% !important;
}
.pagefind-ui__search-clear { display: none !important; }
.pagefind-ui { --pagefind-ui-font: var(--sans); }

.sb-cat-list { list-style: none; }
.sb-cat-list > li { margin-bottom: 8px; }
.sb-cat-parent { font-size: 14px; font-weight: 500; color: var(--navy); display: block; margin-bottom: 4px; }
.sb-cat-parent:hover { color: var(--gold); }
.sb-cat-children { list-style: none; padding-left: 12px; }
.sb-cat-children li { margin-bottom: 3px; }
.sb-cat-children a { font-size: 13px; color: var(--muted); }
.sb-cat-children a:hover { color: var(--gold); }

.sb-recent { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sb-recent li { padding: 8px 0; border-bottom: .5px solid #ede7db; }
.sb-recent li:last-child { border-bottom: none; }
.sb-recent a { font-size: 13px; color: var(--text); line-height: 1.45; display: block; margin-bottom: 3px; }
.sb-recent a:hover { color: var(--gold); }
.sb-recent span { font-size: 11px; color: #9a8e80; letter-spacing: .5px; }

.rss-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: var(--gold); font-size: 12px; padding: 8px 16px; letter-spacing: .5px; transition: opacity .2s; }
.rss-btn:hover { opacity: .85; }

/* ── Paginação ────────────────────────────────────────── */
.pagination { display: flex; gap: 4px; margin-top: 24px; flex-wrap: wrap; }
.page-number { display: flex; }
.page-number a, .page-number span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; font-size: 13px;
  border: .5px solid var(--border); background: var(--bg2); color: var(--text);
  transition: all .2s;
}
.page-number a:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.page-number.active span { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ── Footer ───────────────────────────────────────────── */
.site-footer { background: var(--navy); border-top: 1px solid var(--navy-2); padding: 40px 0 28px; margin-top: 60px; }
.footer-inner { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { font-family: var(--sans); font-size: 20px; color: var(--gold); font-weight: 700; }
.footer-desc { font-size: 12px; color: #5a7590; max-width: 480px; line-height: 1.7; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-links a { font-size: 12px; color: #8fa8c0; letter-spacing: .5px; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: #3d5470; letter-spacing: 1px; border-top: .5px solid var(--navy-2); padding-top: 16px; margin-top: 8px; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .page-body { grid-template-columns: 1fr; padding: 24px 16px; }
  .sidebar { position: static; }
  .post-nav { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); padding: 16px 24px;
    border-top: 1px solid var(--navy-2); gap: 0;
  }
  .site-nav.open { display: flex; }
  .nav-link { width: 100%; padding: 10px 0; border-bottom: .5px solid var(--navy-2); }
  .dropdown { position: static; border: none; background: transparent; padding: 0 0 0 16px; display: block; }
  .hero-title { font-size: 22px; }
  .post-title-single { font-size: 24px; }
  .header-top { display: none; }
}

/* ── Post card clicável ───────────────────────────────── */
a.post-card {
  display: flex;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.post-card:hover {
  transform: translateX(4px);
}
a.post-card:hover .post-title {
  color: var(--gold);
}
a.post-card .post-title {
  transition: color .2s;
}

/* ── Cores do post-num por categoria ─────────────────── */

/* Fundo de Tijolo — azul-ardósia */
.post-num.num-tijolo {
  background: #2a4a6b;
  border-right: 3px solid #4a7fa8;
}

/* Fundo de Papel — verde-musgo escuro */
.post-num.num-papel {
  background: #1e4035;
  border-right: 3px solid #3a7a5e;
}

/* Fiagro — vinho/bordô */
.post-num.num-fiagro {
  background: #4a1e35;
  border-right: 3px solid #8a3a5e;
}

/* ── Ticker badges com cores por categoria ────────────── */
.post-ticker {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
  text-decoration: none;
}

/* Fundo de Tijolo — azul-ardósia */
.ticker-tijolo {
  background: #2a4a6b;
  color: #a8c8e8;
  border: 1px solid #4a7fa8;
}
.ticker-tijolo:hover { background: #3a5a7b; color: #c8e0f0; }

/* Fundo de Papel — verde-musgo */
.ticker-papel {
  background: #1e4035;
  color: #7abda0;
  border: 1px solid #3a7a5e;
}
.ticker-papel:hover { background: #2a5045; color: #9ad0b8; }

/* Fiagro — bordô */
.ticker-fiagro {
  background: #4a1e35;
  color: #c890a8;
  border: 1px solid #8a3a5e;
}
.ticker-fiagro:hover { background: #5a2a45; color: #e0a8c0; }

/* Ticker do fundo (GAME11, VISC11 etc) — dourado */
.ticker-fundo {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
}

/* Badges de categoria abaixo do disclaimer */
.post-category-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 28px;
}

/* ── Página do ticker ─────────────────────────────────── */
.ticker-page-badge {
  display: inline-block; background: var(--navy); color: var(--gold);
  font-size: 13px; font-weight: 500; letter-spacing: 2px;
  padding: 4px 14px; margin-bottom: 12px;
}
.ticker-page-title { margin-bottom: 16px; }
.ticker-page-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.ticker-page-desc p { margin-bottom: 12px; }

/* Grid de tickers (página /tickers/) */
.tickers-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px; margin-bottom: 32px;
}
.ticker-card {
  background: var(--bg2); border: .5px solid var(--border);
  padding: 14px 16px; transition: all .2s; display: block;
}
.ticker-card:hover { border-color: var(--gold); background: var(--navy); }
.ticker-card:hover .ticker-card-name { color: var(--gold); }
.ticker-card:hover .ticker-card-count { color: #8fa8c0; }
.ticker-card-name { font-family: var(--sans); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.ticker-card-count { font-size: 11px; color: var(--muted); letter-spacing: .5px; }

/* ── Busca de ticker ──────────────────────────────────── */
.ticker-search-wrap { position: relative; }
.ticker-search-input {
  width: 100%; background: var(--bg2); border: .5px solid var(--border);
  font-family: var(--sans); font-size: 13px; color: var(--text);
  padding: 8px 12px; outline: none;
}
.ticker-search-input:focus { border-color: var(--gold); }
.ticker-results {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg2); border: .5px solid var(--border);
  border-top: none; list-style: none; z-index: 50; max-height: 280px; overflow-y: auto;
}
.ticker-results li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-bottom: .5px solid var(--border);
  transition: background .15s;
}
.ticker-results li:last-child a { border-bottom: none; }
.ticker-results li a:hover { background: var(--bg); }
.tr-ticker {
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  color: var(--navy); min-width: 60px;
}

/* ── Header mobile ────────────────────────────────────── */
@media (max-width: 640px) {
  .header-main {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
  }
  .site-logo {
    text-align: center;
    font-size: 20px;
  }
  .nav-toggle {
    display: flex;
    justify-self: start;
  }
  .mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    background: none;
    border: none;
    color: #8fa8c0;
    cursor: pointer;
    padding: 8px;
  }
  .mobile-search-btn:hover { color: var(--gold); }
  .site-nav { display: none !important; }

  /* Barra de busca expansível */
  .mobile-search-bar {
    display: none;
    background: var(--navy);
    border-top: 1px solid var(--navy-2);
    padding: 10px 0;
    position: relative;
  }
  .mobile-search-bar.open { display: block; }
  .mobile-ticker-input {
    width: 100%;
    background: rgba(255,255,255,.08);
    border: .5px solid rgba(255,255,255,.15);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 14px;
    padding: 10px 14px;
    outline: none;
  }
  .mobile-ticker-input::placeholder { color: #5a7590; }
  .mobile-ticker-input:focus { border-color: var(--gold); }
  .mobile-ticker-results {
    position: absolute;
    left: 24px; right: 24px;
    top: 100%;
    background: #fff;
    border: .5px solid var(--navy-2);
    z-index: 200;
  }

  /* Drawer menu */
  .mobile-drawer {
    position: fixed;
    top: 0; left: -280px;
    width: 280px; height: 100vh;
    background: var(--navy);
    z-index: 300;
    transition: left .25s ease;
    overflow-y: auto;
  }
  .mobile-drawer.open { left: 0; }
  .mobile-drawer-inner { padding: 32px 24px; }
  .drawer-link, .drawer-parent {
    display: block;
    color: #8fa8c0;
    font-size: 14px;
    padding: 12px 0;
    border-bottom: .5px solid var(--navy-2);
  }
  .drawer-link:hover, .drawer-parent:hover { color: var(--gold); }
  .drawer-parent { font-weight: 500; color: var(--cream); }
  .drawer-children { list-style: none; padding-left: 12px; }
  .drawer-children li a {
    display: block;
    color: #8fa8c0;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: .5px solid rgba(255,255,255,.05);
  }
  .drawer-children li a:hover { color: var(--gold); }
  .drawer-group { border-bottom: .5px solid var(--navy-2); }

  /* Overlay */
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 200;
  }
  .mobile-overlay.open { display: block; }
}

@media (min-width: 641px) {
  .mobile-search-btn { display: none; }
  .mobile-search-bar { display: none !important; }
  .mobile-drawer { display: none !important; }
  .mobile-overlay { display: none !important; }
}

/* Corrige gap no dropdown */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px;
}

/* ── Banner sidebar ───────────────────────────────────── */
.sidebar-banner {
  display: block;
  border: .5px solid var(--border);
  overflow: hidden;
  transition: opacity .2s;
}
.sidebar-banner:hover { opacity: .9; }
.sidebar-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Meus ───────────────────────────────────── */
.a-tickers {
  color: inherit;
  font-weight: bold;
  text-decoration: underline;
}

.a-tickers:hover {
  color: var(--gold);
}
