:root {
  --primary: #0A4ABF;
  --secondary: #FFCC00;
  --bg: #F5F7FA;
  --text: #1A1A1A;
  --muted: #6B7280;
  --white: #FFFFFF;
  --alert: #D32F2F;
  --success: #2E7D32;
  --line: #E5E7EB;
  --shadow: 0 18px 55px rgba(10, 34, 71, .10);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}
.skip-link { position: absolute; left: -999px; }
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: #fff;
  padding: 12px;
}
.bdt-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}
.site-main { padding-block: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: transparent;
  padding: 7px 0 0;
  transition: transform .2s ease;
}
.header-wrap {
  max-width: 1360px;
}
.header-main {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border-radius: 0 0 18px 18px;
  background: rgba(11, 11, 15, .96);
  box-shadow: 0 16px 42px rgba(8, 13, 24, .22);
  backdrop-filter: blur(16px) saturate(150%);
  transition: min-height .2s ease, border-radius .2s ease, box-shadow .2s ease;
}
html.header-scrolled .header-main {
  min-height: 62px;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 14px 34px rgba(8, 13, 24, .24);
}
.header-left,
.header-actions {
  display: flex;
  align-items: center;
}
.header-actions { justify-content: flex-end; }
.brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(220px, 42vw);
  min-width: 0;
  pointer-events: auto;
}
.custom-logo {
  display: block;
  max-width: 205px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: max-height .2s ease, max-width .2s ease;
}
html.header-scrolled .custom-logo {
  max-height: 46px;
  max-width: 185px;
}
.site-logo-text {
  font-family: Chivo, Arial, sans-serif;
  font-weight: 900;
  white-space: nowrap;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}
.site-logo-text span { color: var(--secondary); }
.menu-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: #1B1F29;
  color: #fff;
  padding: 0 13px 0 12px;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.menu-pill:hover { background: #252B37; transform: translateY(-1px); }
.menu-pill strong {
  font-family: Chivo, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
}
.menu-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}
.menu-icon span {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.primary-nav { display: none; flex: 1; min-width: 0; }
.primary-nav ul,
.drawer-nav ul,
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.primary-nav li { position: relative; }
.primary-nav a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #334155;
  font-family: "Work Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  background: #EAF2FF;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(10, 74, 191, .12);
}
.primary-nav .menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-top: -3px;
}
.primary-nav .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  display: none;
  min-width: 250px;
  padding: 8px;
  background: #fff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .13);
  border-radius: 12px;
}
.primary-nav .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.primary-nav .sub-menu a {
  min-height: 38px;
  border-radius: 9px;
  justify-content: space-between;
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu { display: block; }

.header-actions {
  gap: 8px;
  min-width: 98px;
}
.icon-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #EEF4FF;
  color: var(--primary);
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.icon-button:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.ajax-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(310px, 42vw);
  min-width: 230px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #E2E8F0;
  transition: width .22s ease, background .18s ease;
}
.ajax-search.is-open,
.ajax-search:focus-within {
  width: min(330px, 48vw);
  background: #fff;
}
.ajax-search input {
  position: static;
  flex: 1;
  min-width: 0;
  width: auto;
  border: 0;
  background: transparent;
  outline: 0;
  opacity: 1;
  transition: opacity .16s ease, padding .16s ease;
  padding: 0 10px 0 14px;
  pointer-events: auto;
}
.ajax-search.is-open input,
.ajax-search:focus-within input {
  width: auto;
  padding: 0 10px 0 14px;
  opacity: 1;
  pointer-events: auto;
}
.ajax-search-results {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: min(340px, 88vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
}
.ajax-search-results.is-open { display: block; }
.ajax-results-list { list-style: none; margin: 0; padding: 0; }
.ajax-results-list a {
  display: block;
  padding: 10px;
  border-radius: 9px;
  font-weight: 700;
}
.ajax-results-list a:hover { background: #EEF4FF; color: var(--primary); }
.ajax-empty { margin: 0; padding: 10px; color: var(--muted); }
.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 104px;
  height: 38px;
  margin-right: 3px;
  border: 0;
  border-radius: 11px;
  background: var(--primary);
  color: #fff;
  padding: 0 18px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(10,74,191,.18);
  transition: background .18s ease, transform .18s ease;
}
.search-button:hover { background: #083B99; transform: translateY(-1px); }
.header-icon-button {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 13px;
  background: #1B1F29;
  color: #fff;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.header-icon-button:hover {
  background: #252B37;
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
}
.header-icon-button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.ajax-search.is-open .search-toggle,
.ajax-search:focus-within .search-toggle {
  border-color: transparent;
  background: transparent;
  color: #0D0F14;
}
.language-menu { position: relative; }
.language-trigger {
  overflow: hidden;
}
.flag-br {
  width: 26px;
  height: 18px;
  display: block;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.14);
}
.language-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  gap: 4px;
  min-width: 152px;
  padding: 8px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.language-menu.is-open .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-dropdown a {
  display: block;
  padding: 10px 11px;
  border-radius: 10px;
  color: #1F2937;
  font-size: 13px;
  font-weight: 800;
}
.language-dropdown a:hover {
  background: #EEF4FF;
  color: var(--primary);
}

.header-category-strip {
  background: rgba(11, 11, 15, .94);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
}
.category-strip-scroll {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 9px;
  -webkit-overflow-scrolling: touch;
}
.category-strip-scroll::-webkit-scrollbar { display: none; }
.category-strip-scroll a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #F8FAFC;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}
.category-strip-scroll a:hover {
  background: #FF7A1A;
  color: #111827;
}
.breaking-strip {
  background: #08111E;
  color: #fff;
  overflow: hidden;
}
.breaking-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 36px;
}
.breaking-inner strong {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FF7A1A;
  font-family: Chivo, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.breaking-inner strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #FF3B30;
  box-shadow: 0 0 0 5px rgba(255,59,48,.12);
}
.breaking-track {
  display: flex;
  gap: 28px;
  min-width: 0;
  white-space: nowrap;
  animation: bdtBreaking 32s linear infinite;
}
.breaking-track a,
.breaking-track span {
  color: #E5EDF8;
  font-size: 13px;
  font-weight: 750;
}
@keyframes bdtBreaking {
  from { transform: translateX(10%); }
  to { transform: translateX(-70%); }
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(3, 5, 10, .72);
  backdrop-filter: blur(7px);
}
.drawer-backdrop.is-open { display: block; }
.drawer-locked { overflow: hidden; }
.drawer-panel {
  width: 100vw;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255,122,26,.18), transparent 32%), #0B0B0F;
  color: #fff;
  box-shadow: 28px 0 80px rgba(0,0,0,.36);
  padding: 18px;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
  outline: none;
  overflow-y: auto;
}
.drawer-backdrop.is-open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.drawer-head .custom-logo { max-height: 48px; }
.drawer-head .icon-button {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.drawer-feature {
  margin: 18px 0 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10,74,191,.26), rgba(255,122,26,.16));
}
.drawer-feature span {
  display: block;
  margin-bottom: 7px;
  color: #FFB366;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.drawer-feature strong {
  display: block;
  font-family: Chivo, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.15;
}
.drawer-nav { padding-top: 10px; }
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 13px;
  border-radius: 16px;
  font-weight: 800;
  color: #F8FAFC;
  background: rgba(255,255,255,.035);
  transition: .18s ease;
}
.drawer-nav a span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,122,26,.15);
  color: #FFB366;
  font-size: 11px;
  font-weight: 950;
}
.drawer-nav a:hover {
  background: rgba(255,255,255,.10);
  color: #fff;
  transform: translateX(3px);
}
.drawer-nav li:first-child a { background: rgba(10,74,191,.34); }
.drawer-nav .sub-menu { padding-left: 10px; }
.drawer-nav .sub-menu a { min-height: 38px; font-size: 14px; color: #475569; }
.drawer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.drawer-social a {
  padding: 8px 10px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}
@media (min-width: 760px) {
  .drawer-panel {
    padding-inline: max(28px, calc((100vw - 760px) / 2));
  }
  .drawer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

.bdt-breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.bdt-breadcrumb a { color: var(--primary); font-weight: 700; }

.hero-section { padding-top: 12px; }
.hero-grid { display: grid; gap: 18px; }
.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #111827;
  min-height: 260px;
  box-shadow: var(--shadow);
}
.hero-main { min-height: 430px; }
.hero-media,
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; transition: transform .45s ease; }
.hero-card:hover img { transform: scale(1.04); }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.78)); }
.hero-copy { position: absolute; inset: auto 0 0; padding: 18px; color: #fff; }
.bdt-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-bottom: 8px;
  padding: 5px 8px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.hero-copy h1,
.hero-copy h2 { font-family: Chivo, Arial, sans-serif; margin: 0 0 8px; line-height: 1.07; }
.hero-copy h1 { font-size: clamp(30px, 4vw, 52px); }
.hero-copy h2 { font-size: 22px; }
.hero-copy p { max-width: 780px; margin: 0 0 12px; color: #E9EEF7; font-size: 17px; }
.bdt-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.hero-copy .bdt-meta { color: #E9EEF7; }
.bdt-meta span + span::before { content: "•"; margin-right: 10px; color: currentColor; }

.bdt-ad {
  min-height: 90px;
  margin-block: 20px;
  border: 1px dashed #CBD5E1;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  overflow: hidden;
}
.bdt-ad:empty::before { content: "Publicidade"; font-size: 12px; text-transform: uppercase; font-weight: 800; }

.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 34px 0 18px;
  border-top: 4px solid #101827;
  padding-top: 12px;
}
.section-head h2 {
  font-family: Chivo, Arial, sans-serif;
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
}
.section-head span {
  width: 10px;
  height: 10px;
  background: var(--alert);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(211,47,47,.12);
}
.latest-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.news-card {
  background: #fff;
  border: 1px solid #E7ECF4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.news-card:hover { transform: translateY(-3px); border-color: rgba(10,74,191,.28); box-shadow: 0 18px 44px rgba(15, 23, 42, .12); }
.card-media { display: block; aspect-ratio: 16 / 10; background: #DDE6F4; overflow: hidden; }
.bdt-img,
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media img { transition: transform .35s ease; }
.news-card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 14px 14px 15px; }
.card-body .bdt-badge {
  margin-top: -31px;
  position: relative;
  box-shadow: 0 8px 20px rgba(10, 74, 191, .24);
}
.card-body h3 { margin: 2px 0 8px; font-family: Chivo, Arial, sans-serif; font-size: 19px; line-height: 1.16; }
.card-body h3 a:hover { color: var(--primary); }
.card-body p { margin: 0 0 12px; color: #4B5563; line-height: 1.45; font-size: 14px; }
.load-more-wrap { text-align: center; margin-top: 24px; }
.load-more-button {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 13px 24px;
  min-height: 48px;
  min-width: 190px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(10,74,191,.18);
  transition: .18s ease;
}
.load-more-button:hover { background: #083B99; transform: translateY(-1px); }
.load-more-button:disabled { opacity: .65; cursor: not-allowed; }
.is-new { opacity: 0; transform: translateY(10px); }

.bento-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.bento-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 172px;
  padding: 14px;
  overflow: hidden;
  border-radius: 16px;
  background: #111827;
  color: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .10);
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.78));
}
.bento-card::after { display: none; }
.bento-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.bento-card:hover .bento-bg { transform: scale(1.05); }
.bento-card strong {
  width: max-content;
  max-width: 100%;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--cat-color);
  color: #fff;
  font-family: Chivo, Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
}
.bento-card em { font-style: normal; color: #E9EEF7; font-weight: 800; margin-top: 8px; line-height: 1.2; }
.bdt-widget-area,
.footer-widget-area {
  margin-block: 20px;
}
.bdt-widget-area .widget,
.footer-widget-area .widget {
  margin: 0;
}

.archive-layout { display: grid; gap: 28px; }
.section-title,
.single-header h1 { font-family: Chivo, Arial, sans-serif; line-height: 1.04; margin: 0 0 14px; }
.section-title { font-size: 34px; }
.archive-description { color: #4B5563; margin-bottom: 18px; }
.sidebar { display: grid; gap: 16px; align-content: start; }
.widget { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.widget-title { font-family: Chivo, Arial, sans-serif; margin: 0 0 12px; font-size: 20px; }
.ranked-list { margin: 0; padding-left: 24px; }
.ranked-list li { padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 800; }
.ranked-list a:hover { color: var(--primary); }

.single-article { padding-top: 18px; }
.single-header { max-width: 900px; }
.single-header h1 { font-size: clamp(34px, 5vw, 58px); }
.single-subtitle { font-size: 20px; color: #4B5563; margin: 0 0 14px; line-height: 1.45; }
.updated-note { font-size: 13px; color: var(--muted); margin: 8px 0 0; }
.single-featured { margin: 22px 0; border-radius: 8px; overflow: hidden; background: #fff; }
.single-featured img { display: block; width: 100%; max-height: 580px; object-fit: cover; }
.single-featured figcaption { padding: 8px 12px; color: var(--muted); font-size: 13px; }
.single-shell { display: grid; gap: 22px; }
.share-rail { display: flex; gap: 8px; position: sticky; top: 108px; z-index: 3; }
.share-rail a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.single-content-wrap { min-width: 0; }
.toc { background: #fff; border-left: 4px solid var(--primary); padding: 14px 16px; margin-bottom: 18px; border-radius: 0 8px 8px 0; }
.toc strong { font-family: Chivo, Arial, sans-serif; }
.toc ol { margin: 8px 0 0; padding-left: 20px; }
.toc a { color: #26364D; font-weight: 700; }
.entry-content { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.entry-content > :first-child { margin-top: 0; }
.entry-content h2,
.entry-content h3 { font-family: Chivo, Arial, sans-serif; line-height: 1.2; margin-top: 1.7em; }
.entry-content p { font-size: 18px; line-height: 1.75; color: #202633; }
.entry-content a { color: var(--primary); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: 8px; }
.community-box {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 18px;
  border-radius: 8px;
  background: #ECFDF3;
  border: 1px solid #BBF7D0;
}
.community-box strong {
  display: block;
  font-family: Chivo, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: #14532D;
}
.community-box p { margin: 6px 0 0; color: #365B3F; }
.community-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #2E7D32;
  color: #fff;
  font-weight: 900;
}
.comments-area {
  margin-top: 22px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.comments-title,
.comment-reply-title {
  margin: 0 0 14px;
  font-family: Chivo, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}
.comment-list { margin: 0 0 18px; padding-left: 20px; }
.comment-list li { margin-bottom: 14px; }
.comment-form-comment,
.comment-form-author,
.comment-form-email { margin: 0 0 12px; }
.comment-form label {
  display: block;
  margin-bottom: 6px;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid #DCE7F7;
  border-radius: 8px;
  background: #F8FAFC;
  padding: 12px;
  outline: 0;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 74, 191, .10);
}
.comment-submit {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  min-height: 44px;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
}
.related-section { padding-bottom: 28px; }
.compact-card { display: grid; grid-template-columns: 96px 1fr; gap: 12px; }
.compact-media { aspect-ratio: 16 / 10; border-radius: 8px; overflow: hidden; background: #DDE6F4; }
.author-box { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px; margin-bottom: 20px; }
.author-box img { border-radius: 999px; }
.eyebrow { margin: 0; color: var(--primary); font-size: 12px; text-transform: uppercase; font-weight: 900; }
.empty-state { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px; }

.site-footer {
  margin-top: 36px;
  background: #101827;
  color: #DDE6F4;
  border-top: 4px solid var(--primary);
}
.footer-grid {
  display: grid;
  gap: 22px;
  padding-block: 34px;
}
.footer-brand,
.footer-menu,
.footer-connect,
.footer-widget-area {
  min-width: 0;
}
.site-footer .site-logo-text { color: #fff; }
.site-footer p { max-width: 520px; color: #B8C2D4; }
.footer-menu h2,
.footer-connect h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Chivo, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}
.site-footer ul {
  display: grid;
  gap: 9px;
}
.site-footer a {
  color: #E7EDF8;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.site-footer a:hover { color: var(--secondary); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.footer-social a:hover {
  background: var(--secondary);
  color: #101827;
  transform: translateY(-1px);
}
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-extra {
  grid-column: 1 / -1;
  color: #C8D3E4;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
}
.footer-widget-area {
  color: #DDE6F4;
}
.footer-widget-area .widget {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.footer-extra a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 640px) {
  .latest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .bdt-container { padding-inline: 40px; }
  .primary-nav { display: none; }
  .hero-grid { grid-template-columns: 2fr 1fr; }
  .hero-main { grid-row: span 2; min-height: 540px; }
  .hero-secondary { min-height: 258px; }
  .latest-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
  .bento-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bento-card:nth-child(1),
  .bento-card:nth-child(2) { grid-column: span 2; min-height: 220px; }
  .archive-layout { grid-template-columns: minmax(0, 1fr) 320px; }
  .single-shell { grid-template-columns: 54px minmax(0, 780px) 320px; align-items: start; }
  .share-rail { flex-direction: column; }
  .entry-content { padding: 28px; }
  .community-box { grid-template-columns: 1fr auto; align-items: center; }
  .footer-grid { grid-template-columns: 1.4fr 1fr .8fr; align-items: start; }
}

@media (min-width: 1100px) {
  .header-main { padding-inline: 22px; }
}

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

/* Validated production header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 8px 0 0;
  background: rgba(245, 247, 250, .82);
  backdrop-filter: blur(12px);
}
.validated-header {
  display: grid;
  grid-template-columns: minmax(94px, 1fr) auto minmax(94px, 1fr);
  align-items: center;
  min-height: 64px;
  padding: 0 10px;
  border-radius: 0 0 18px 18px;
  background: #0b0b0f;
  box-shadow: 0 16px 38px rgba(8, 13, 24, .22);
}
.validated-header__left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}
.validated-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(210px, 42vw);
  min-width: 0;
}
.validated-header__logo .custom-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}
.validated-header__logo .site-logo-text {
  color: #fff;
  font-family: Chivo, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.validated-header__logo .site-logo-text span {
  color: #ff8a1d;
}
.validated-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}
.validated-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 13px;
  background: #1b1f29;
  color: #fff;
  cursor: pointer;
}
.validated-menu-button span {
  position: relative;
  width: 18px;
  height: 12px;
  display: block;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.validated-menu-button span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.validated-menu-button strong {
  font-family: Chivo, Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
}
.validated-menu-button:hover,
.validated-icon-button:hover {
  background: #262b36;
}
.validated-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: transparent;
  transition: width .2s ease, background .2s ease;
}
.validated-search.is-open,
.validated-search:focus-within {
  width: min(230px, 48vw);
  background: #fff;
}
.validated-search input {
  width: 0;
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}
.validated-search.is-open input,
.validated-search:focus-within input {
  width: auto;
  padding: 0 10px 0 13px;
  opacity: 1;
  pointer-events: auto;
}
.validated-icon-button {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 13px;
  background: #1b1f29;
  color: #fff;
  cursor: pointer;
}
.validated-search.is-open .validated-icon-button,
.validated-search:focus-within .validated-icon-button {
  border-color: transparent;
  background: transparent;
  color: #0b0b0f;
}
.validated-icon-button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.validated-language {
  position: relative;
}
.validated-language .validated-icon-button svg {
  width: 26px;
  height: 18px;
  border-radius: 4px;
}
.validated-language__dropdown {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.validated-language.is-open .validated-language__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.validated-language__dropdown a {
  display: block;
  padding: 10px;
  border-radius: 10px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 800;
}
.validated-language__dropdown a:hover {
  background: #eef4ff;
  color: var(--primary);
}
.validated-category-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 9px 0 0;
  -webkit-overflow-scrolling: touch;
}
.validated-category-bar::-webkit-scrollbar {
  display: none;
}
.validated-category-bar a {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff;
  color: #1f2937;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .06);
}
.validated-category-bar a:hover {
  background: #0a4abf;
  color: #fff;
}
.validated-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  background: rgba(3, 5, 10, .68);
  backdrop-filter: blur(6px);
}
.validated-drawer-backdrop.is-open {
  display: block;
}
.validated-drawer {
  width: min(88vw, 390px);
  height: 100%;
  overflow-y: auto;
  padding: 18px;
  background: #0b0b0f;
  color: #fff;
  box-shadow: 22px 0 70px rgba(0,0,0,.34);
  transform: translateX(-100%);
  transition: transform .24s ease;
}
.validated-drawer-backdrop.is-open .validated-drawer {
  transform: translateX(0);
}
.validated-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.validated-drawer__head .custom-logo {
  max-height: 46px;
  width: auto;
}
.validated-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.validated-drawer__nav ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.validated-drawer__nav a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 850;
}
.validated-drawer__nav a:hover {
  background: rgba(255,138,29,.16);
  color: #ffb366;
}
html.drawer-locked {
  overflow: hidden;
}
html.header-scrolled .validated-header {
  min-height: 58px;
}
html.header-scrolled .validated-header__logo .custom-logo {
  max-height: 42px;
}
@media (max-width: 520px) {
  .validated-header {
    grid-template-columns: 88px minmax(0, 1fr) 88px;
    min-height: 60px;
    padding-inline: 8px;
  }
  .validated-menu-button {
    width: 42px;
    padding: 0;
    justify-content: center;
  }
  .validated-menu-button strong {
    display: none;
  }
  .validated-header__logo {
    width: min(170px, 42vw);
  }
  .validated-header__right {
    gap: 6px;
  }
  .validated-icon-button,
  .validated-search {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .validated-search.is-open,
  .validated-search:focus-within {
    position: absolute;
    right: 8px;
    z-index: 3;
    width: min(250px, calc(100vw - 108px));
  }
}

/* Header portal responsivo: logo/anuncio em cima e menu preto abaixo. */
.site-header {
  background: #fff;
  padding: 0;
  border-bottom: 4px solid #9E1421;
  box-shadow: 0 2px 12px rgba(15, 23, 42, .08);
}
.bdt-header-top {
  display: grid;
  grid-template-columns: minmax(180px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding-block: 18px;
}
.bdt-header-logo.brand {
  position: static;
  transform: none;
  width: auto;
  justify-content: flex-start;
}
.bdt-header-logo .custom-logo { max-width: 300px; max-height: 84px; }
.bdt-header-logo .site-logo-text { color: #B8860B; font-size: 30px; }
.bdt-header-ad {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.bdt-header-ad .bdt-ad {
  width: min(728px, 100%);
  min-height: 90px;
  margin: 0;
  border-radius: 0;
}
.bdt-menu-bar.header-main {
  min-height: 52px;
  padding: 0;
  border-radius: 0;
  background: #050505;
  box-shadow: none;
  backdrop-filter: none;
  gap: 0;
}
html.header-scrolled .bdt-menu-bar.header-main {
  min-height: 52px;
  border-radius: 0;
}
.bdt-home-button {
  display: none;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  width: 52px;
  background: #B8202D;
  color: #fff;
}
.bdt-home-button svg { width: 21px; height: 21px; fill: currentColor; }
.bdt-menu-bar .primary-nav { padding-left: 0; }
.bdt-menu-bar .primary-nav a {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.bdt-menu-bar .primary-nav a:hover,
.bdt-menu-bar .primary-nav .current-menu-item > a {
  background: #141414;
  color: #fff;
  box-shadow: none;
}
.bdt-menu-bar .primary-nav .sub-menu { top: 100%; border-radius: 0; }
.bdt-menu-bar .header-actions {
  margin-left: auto;
  padding-right: 8px;
  min-width: 0;
}
.bdt-menu-bar .ajax-search {
  width: 292px;
  min-width: 292px;
  height: 38px;
  border-radius: 0;
  border-color: #202020;
  background: #111;
  overflow: visible;
}
.bdt-menu-bar .ajax-search input {
  color: #fff;
  display: block;
  min-height: 36px;
  cursor: text;
  z-index: 1;
}
.bdt-menu-bar .ajax-search input::placeholder { color: #bdbdbd; }
.bdt-menu-bar .search-button {
  position: relative;
  z-index: 2;
  height: 32px;
  min-width: 96px;
  margin-right: 3px;
  border-radius: 0;
  background: #B8202D;
  box-shadow: none;
}
.bdt-menu-bar .search-button:hover { background: #D12B39; transform: none; }
.drawer-nav ul { display: block !important; }
.drawer-nav li { margin-bottom: 8px; }

@media (min-width: 980px) {
  .bdt-menu-bar .primary-nav { display: block; }
  .bdt-menu-bar .mobile-trigger { display: none; }
  .bdt-home-button { display: flex; }
}
@media (max-width: 979px) {
  .bdt-header-top {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 12px;
    text-align: center;
  }
  .bdt-header-logo.brand { justify-content: center; }
  .bdt-header-logo .custom-logo { max-height: 70px; }
  .bdt-header-ad { min-height: 0; justify-content: center; }
  .bdt-header-ad .bdt-ad { min-height: 70px; }
  .bdt-menu-bar.header-main { padding: 0 8px; gap: 8px; }
  .bdt-menu-bar .mobile-trigger {
    width: auto;
    min-width: 88px;
    height: 38px;
    border-radius: 0;
    background: #B8202D;
    color: #fff;
  }
  .bdt-menu-bar .ajax-search {
    width: min(100%, 360px);
    min-width: 0;
    flex: 1;
  }
}
@media (max-width: 520px) {
  .bdt-menu-bar.header-main {
    min-height: auto;
    padding-block: 8px;
    flex-wrap: wrap;
  }
  .bdt-menu-bar .mobile-trigger,
  .bdt-menu-bar .ajax-search {
    width: 100%;
    flex-basis: 100%;
  }
  .bdt-menu-bar .search-button {
    min-width: 92px;
    padding-inline: 12px;
  }
}
