/* =============================================
   BCENARIO PORTAL - Main Stylesheet
   ============================================= */

:root {
  --color-navy:     #0d1b3e;
  --color-navy-mid: #162147;
  --color-magenta:  #e800d0;
  --color-orange:   #e83a0e;
  --color-teal:     #008fb3;
  --color-teal-dark:#006d8a;
  --color-white:    #ffffff;
  --color-gray-50:  #fafafa;
  --color-gray-100: #f4f4f4;
  --color-gray-200: #e0e0e0;
  --color-gray-400: #999999;
  --color-gray-600: #666666;
  --color-gray-700: #444444;
  --color-dark:     #1a1a1a;

  --font-sans: 'Inter', 'Segoe UI', Arial, sans-serif;
  --container: 1200px;
  --gap: 1.5rem;
  --radius: 6px;
  --transition: 0.2s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  background: var(--color-gray-50);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-gray-200);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: visible;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  overflow: visible;
}

/* Imagem decorativa à esquerda do header */
.site-header-left {
  flex: 1;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.site-header-img {
  height: 150px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: bottom;
}

/* Logo mobile — oculto por padrão, visível só no mobile */
.site-logo-mobile {
  display: none;
}

.site-logo-mobile img {
  height: 50px;
  width: auto;
}

/* Logo centralizado */
.site-logo {
  flex: 0 0 auto;
}

.site-logo img,
.site-logo-img { height: 70px; width: auto; }

/* Ações à direita */
.header-actions {
  flex: 1;
  justify-content: flex-end;
}

.site-logo .text-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo .logo-blog {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-logo .logo-cenario {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* --- Ações do header (lupa + menu) --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-search-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-navy);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.header-search-btn:hover {
  background: var(--color-gray-100);
  color: var(--color-teal);
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-navy);
  text-transform: uppercase;
  padding: 0.5rem 0.6rem;
  min-height: 44px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.menu-toggle:hover { background: var(--color-gray-100); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Search Overlay --- */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,62,0.97);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.search-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.search-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition);
}

.search-overlay-close:hover { color: var(--color-white); }

.search-overlay-inner { width: 100%; max-width: 600px; }

.search-overlay-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  text-align: center;
}

.search-overlay-form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s;
}

.search-overlay-form:focus-within { border-color: var(--color-teal); }

.search-overlay-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--color-white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  padding: 0.75rem 0;
  caret-color: var(--color-teal);
}

.search-overlay-input::placeholder { color: rgba(255,255,255,0.2); }

.search-overlay-submit {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  padding: 0.5rem;
  transition: color var(--transition);
  flex-shrink: 0;
}

.search-overlay-submit:hover { color: var(--color-teal); }

/* --- Nav Drawer (painel lateral) --- */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: var(--color-white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  overflow-y: auto;
}

.nav-drawer.is-open { transform: translateX(0); }

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-gray-200);
  flex-shrink: 0;
}

.nav-drawer-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.nav-drawer-logo .logo-blog {
  color: var(--color-teal);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  display: block;
  margin-bottom: -2px;
}

.nav-drawer-logo .logo-cenario { color: var(--color-navy); }

.nav-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--color-gray-100);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--color-gray-700);
  transition: background var(--transition), color var(--transition);
}

.nav-close:hover { background: var(--color-gray-200); color: var(--color-dark); }

.nav-drawer ul {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
  flex: 1;
}

.nav-drawer ul li { margin: 0; }

.nav-drawer ul a {
  display: flex;
  align-items: center;
  color: var(--color-dark);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  transition: background var(--transition), color var(--transition);
  border-left: 3px solid transparent;
}

.nav-drawer ul a:hover,
.nav-drawer ul .current-menu-item > a,
.nav-drawer ul .current_page_item > a {
  background: var(--color-gray-50);
  color: var(--color-teal);
  border-left-color: var(--color-teal);
}

.nav-drawer-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-gray-200);
  font-size: 0.72rem;
  color: var(--color-gray-400);
  flex-shrink: 0;
}

/* =============================================
   BREAKING NEWS TICKER
   ============================================= */
.ticker-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: flex;
  align-items: center;
}

.ticker-label {
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.7rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 1.25rem;
  border-radius: 2px;
}

.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 160s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 2.5rem;
}

.ticker-item a {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray-700);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.ticker-item a:hover { color: var(--color-teal); }

.ticker-separator {
  color: var(--color-gray-200);
  font-size: 0.6rem;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   AD BANNERS
   ============================================= */
.ad-banner {
  background: var(--color-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.ad-banner-top {
  max-width: 728px;
  height: 90px;
  margin: 1rem auto;
}

.ad-banner-mid {
  max-width: 728px;
  height: 90px;
  margin: 1rem auto;
}

.ad-banner-full {
  width: 100%;
  height: 90px;
  margin: 0;
  border-radius: 0;
}

.ad-banner-block {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: var(--color-magenta);
  border-radius: var(--radius);
}

.ad-placeholder-text {
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: absolute;
}

/* =============================================
   HERO / SLIDER SECTION
   ============================================= */
.hero-section {
  padding: 1rem 0 1.5rem;
  background: var(--color-white);
}

/* Widget acima do slider */
.above-slider-widget {
  margin-bottom: 1rem;
  text-align: center;
}

/* Wrapper externo: espaço lateral para as setas */
.hero-slider-outer {
  position: relative;
  padding: 0 48px;
}

.hero-slider {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
}

/* 1. Área da imagem */
.hero-slides-images-wrap {
  overflow: hidden;
  background: var(--color-gray-200);
}

.hero-slides-images {
  display: flex;
  transition: transform 0.5s ease;
}

.hero-slide-image {
  min-width: 100%;
  flex-shrink: 0;
  aspect-ratio: 16/7;
  max-height: 440px;
  overflow: hidden;
  background: var(--color-gray-200);
}

.hero-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2. Setas — fora do slider, centralizadas via JS */
.slider-arrow {
  position: absolute;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  z-index: 5;
  min-width: 38px;
  min-height: 38px;
}

.slider-arrow:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.slider-arrow.prev { left: 0; }
.slider-arrow.next { right: 0; }

/* Dots */
.slider-dots-bar {
  display: flex;
  justify-content: center;
  padding: 0.6rem 0;
  background: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-200);
}

.slider-dots { display: flex; gap: 0.5rem; align-items: center; }

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gray-200);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.slider-dot.active {
  background: var(--color-navy);
  transform: scale(1.3);
}

/* 3. Info: categoria + título + descrição */
.hero-slides-info { position: relative; overflow: hidden; }

.hero-slide-info {
  position: absolute;
  inset: 0;
  padding: 1.1rem 1.4rem 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hero-slide-info.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.slide-category {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
  display: inline-block;
}

.slide-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--color-dark);
  margin-bottom: 0.55rem;
}

.slide-title a { color: inherit; }
.slide-title a:hover { color: var(--color-navy); }

.slide-excerpt {
  font-size: 0.88rem;
  color: var(--color-gray-600);
  line-height: 1.65;
  margin-bottom: 0.7rem;
}

.slide-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

.slide-read-more:hover { color: var(--color-teal); }

/* =============================================
   NEWS GRID (6 cards 3x2)
   ============================================= */
.news-grid-section {
  padding: 2.5rem 0;
  background: var(--color-white);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-gray-200);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Separador entre linhas do grid */
.news-grid .news-card:nth-child(n+4) {
  border-top: 1px solid var(--color-gray-200);
  padding-top: 1.75rem;
  margin-top: 0;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.news-card-main {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.news-card-thumb {
  flex-shrink: 0;
  width: 160px;
  height: 118px;
  background: var(--color-gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card-thumb:hover img { transform: scale(1.04); }

.news-card-info { flex: 1; min-width: 0; }

.news-card-info .category-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
  display: block;
}

.news-card-info .card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.4;
}

.news-card-info .card-title a:hover { color: var(--color-navy); }

/* Sub-notícias com dots */
.sub-news-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.2rem;
  border-top: 1px solid var(--color-gray-100);
  padding-top: 0.75rem;
}

.sub-news-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.sub-news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.sub-news-text {
  font-size: 0.92rem;
  color: var(--color-gray-700);
  line-height: 1.45;
  font-weight: 500;
}

.sub-news-text a:hover { color: var(--color-navy); }

/* =============================================
   DARK FEATURED SECTION
   ============================================= */
.dark-section {
  background: var(--color-navy);
  padding: 2rem 0;
}

.dark-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: var(--gap);
  align-items: stretch;
}

.dark-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.dark-card-thumb {
  flex-shrink: 0;
  width: 130px;
  height: 98px;
  background: var(--color-navy-mid);
  border-radius: var(--radius);
  overflow: hidden;
}

.dark-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-card-info { flex: 1; }

.dark-card-info .category-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
  display: block;
}

.dark-card-info .card-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.3;
}

.dark-card-info .card-title a { color: var(--color-white); }
.dark-card-info .card-title a:hover { color: var(--color-teal); }

.dark-card-excerpt {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

.dark-ad-block {
  background: var(--color-magenta);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  position: relative;
}

/* =============================================
   TEAL BAR
   ============================================= */
.teal-bar {
  background: var(--color-teal);
  height: 6px;
  width: 100%;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 2.5rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.footer-brand .footer-logo span { color: var(--color-teal); }

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col ul a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

.footer-social { display: flex; gap: 0.6rem; }

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-white);
  transition: background var(--transition);
  min-width: 34px;
}

.footer-social a:hover { background: var(--color-teal); }

/* =============================================
   CATEGORY TAG
   ============================================= */
.category-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* =============================================
   SECTION DIVIDER
   ============================================= */
.section-divider {
  border: none;
  border-top: 1px solid var(--color-gray-200);
  margin: 0;
}

/* =============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }

  .news-grid .news-card:nth-child(n+4) {
    border-top: none;
    padding-top: 0;
  }

  .news-grid .news-card:nth-child(odd):nth-child(n+3) {
    border-top: 1px solid var(--color-gray-200);
    padding-top: 1.25rem;
  }

  .dark-section-grid { grid-template-columns: 1fr 1fr; }
  .dark-ad-block { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .hero-slider-outer { padding: 0 42px; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {

  /* Container */
  .container { padding: 0 1rem; }

  /* Header */
  .site-logo .logo-cenario { font-size: 1.2rem; }
  .site-logo img { height: 56px; }
  .site-header-left { display: none; }
  .site-logo { display: none; }
  .site-logo-mobile { display: flex; align-items: center; }
  .site-header .container { height: 60px; }

  /* Ticker */
  .ticker-label { display: none; }
  .ticker-item a { font-size: 0.78rem; }

  /* Slider: remove padding lateral, setas ficam sobrepostas */
  .hero-slider-outer { padding: 0; }

  .slider-arrow {
    position: absolute;
    top: auto !important; /* desliga o JS no mobile */
    bottom: auto;
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.9);
    /* centraliza sobre a imagem com transform */
  }

  /* recalcula via CSS: imagem aspect 4/3 em mobile */
  .hero-slide-image { aspect-ratio: 4/3; max-height: 280px; }

  .slider-arrow.prev { left: 8px; top: calc(50% - 17px) !important; }
  .slider-arrow.next { right: 8px; top: calc(50% - 17px) !important; }

  /* A área .hero-slider-outer serve de reference para % */
  .hero-slider-outer { position: relative; }
  /* "50%" do outer inclui info-panel; centramos na imagem manualmente */

  /* Slide info */
  .hero-slide-info { padding: 0.85rem 1rem 1rem; }
  .slide-title { font-size: 1.45rem; }
  .slide-excerpt { font-size: 0.82rem; }

  /* Grid: 1 coluna */
  .news-grid { grid-template-columns: 1fr; gap: 0; }

  .news-card {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-gray-200);
    gap: 0.6rem;
  }

  .news-grid .news-card:nth-child(n+4) {
    border-top: none;
    padding-top: 0;
  }

  .news-grid .news-card:last-child { border-bottom: none; }

  /* Cards mobile: thumb redimensionado */
  .news-card-thumb { width: 130px; height: 96px; }
  .news-card-info .card-title { font-size: 1rem; }
  .sub-news-text { font-size: 0.88rem; }

  /* Dark section */
  .dark-section-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .dark-card-thumb { width: 110px; height: 82px; }
  .dark-card-info .card-title { font-size: 0.98rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-col:nth-child(n+3) { display: none; } /* oculta colunas extras no mobile */
  .site-footer { padding: 2rem 0 1rem; }

  /* Ads */
  .ad-banner-top, .ad-banner-mid { height: 60px; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================= */
@media (max-width: 480px) {
  .site-logo .logo-cenario { font-size: 1.1rem; }

  .hero-slide-image { aspect-ratio: 3/2; max-height: 220px; }

  .slide-title { font-size: 1.2rem; }
  .slide-excerpt { display: none; } /* remove excerpt em telas muito pequenas */

  .news-card-thumb { width: 100px; height: 76px; }

  .nav-drawer ul a { font-size: 1rem; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* =============================================
   SINGLE POST — Conceito G1 / editorial
   ============================================= */

/* ── Layout 2 colunas ── */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

/* ── Artigo ── */
.single-article {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
}

.single-article > *:not(.single-featured-image) {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Categoria */
.single-category {
  padding-top: 1.75rem;
  padding-bottom: 0.5rem;
  border-left: 4px solid;
  padding-left: 0.85rem !important;
  margin-left: 2rem;
}

.single-category a {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Título */
.single-title {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

/* Meta (autor + data) */
.single-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-gray-400);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-gray-200);
  margin-bottom: 0;
}

.single-meta-author,
.single-meta-date {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.single-meta-author { font-weight: 600; color: var(--color-gray-700); }
.single-meta-sep { color: var(--color-gray-200); font-size: 1rem; }

/* Share bar */
.share-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.share-bar-bottom {
  border-top: 1px solid var(--color-gray-200);
  border-bottom: none;
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.share-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.share-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
}

.share-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.share-whatsapp { background: #25D366; color: #fff; }
.share-facebook { background: #1877F2; color: #fff; }
.share-twitter  { background: #000;    color: #fff; }
.share-copy     { background: var(--color-gray-100); color: var(--color-navy); border: 1px solid var(--color-gray-200); }

/* Imagem destaque */
.single-featured-image {
  width: 100%;
  margin: 1.25rem 0;
}

.single-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
}

.single-featured-image figcaption {
  font-size: 0.72rem;
  color: var(--color-gray-400);
  padding: 0.5rem 2rem;
  font-style: italic;
  background: var(--color-gray-50);
  border-left: 3px solid var(--color-gray-200);
}

/* Conteúdo */
.single-content {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-gray-700);
  max-width: 680px;
}

.single-content p { margin-bottom: 1.35rem; }

.single-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-dark);
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}

.single-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 1.5rem 0 0.6rem;
}

.single-content a {
  color: var(--color-teal);
  text-decoration: underline;
  text-decoration-color: rgba(0,143,179,0.3);
  text-underline-offset: 3px;
}

.single-content a:hover {
  color: var(--color-navy);
  text-decoration-color: var(--color-navy);
}

.single-content blockquote {
  border-left: 4px solid var(--color-teal);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: var(--color-gray-50);
  font-style: italic;
  color: var(--color-gray-600);
  font-size: 1.05rem;
}

.single-content ul,
.single-content ol {
  margin: 1rem 0 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.single-content ul { list-style: disc; }
.single-content ol { list-style: decimal; }

.single-content img {
  border-radius: var(--radius);
  margin: 1rem 0;
}

/* Tags */
.single-tags {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-gray-200);
}

.single-tags-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-400);
  padding-top: 0.2rem;
  white-space: nowrap;
}

.single-tags-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.single-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-gray-700);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.single-tag:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* Comentários */
.single-comments { padding: 1.5rem 0 0.5rem; }

/* ── Sidebar ── */
.single-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-block {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
}

.sidebar-block-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-navy);
  padding: 0.9rem 1.1rem;
  border-left: 4px solid var(--color-teal);
  border-bottom: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
}

/* Related posts */
.related-list {
  display: flex;
  flex-direction: column;
}

.related-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--color-gray-100);
  transition: background var(--transition);
}

.related-item:last-child { border-bottom: none; }
.related-item:hover { background: var(--color-gray-50); }

.related-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 54px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-gray-200);
}

.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-item:hover .related-thumb img { transform: scale(1.05); }

.related-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.related-date {
  font-size: 0.65rem;
  color: var(--color-gray-400);
}

.related-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.related-title:hover { color: var(--color-teal); }

/* Editorias sidebar */
.editoria-list {
  display: flex;
  flex-direction: column;
}

.editoria-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid var(--color-gray-100);
  border-left: 3px solid transparent;
  transition: background var(--transition), border-color var(--transition);
  font-size: 0.82rem;
  font-weight: 700;
}

.editoria-link:last-child { border-bottom: none; }
.editoria-link:hover { background: var(--color-gray-50); }

.editoria-link small {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-gray-400);
}

/* ── Responsivo single ── */
@media (max-width: 900px) {
  .single-layout {
    grid-template-columns: 1fr;
  }

  .single-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .single-article > *:not(.single-featured-image) {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .single-category {
    margin-left: 1.1rem;
    padding-left: 0.7rem !important;
  }

  .single-title { font-size: 1.35rem; }
  .single-content { font-size: 0.95rem; max-width: 100%; }

  .share-btn span { display: none; } /* mostra só ícone no mobile */
  .share-btn { padding: 0.4rem 0.55rem; border-radius: 50%; }

  .single-featured-image figcaption { padding: 0.4rem 1rem; }
}

/* =============================================
   SINGLE POST (G1)
   ============================================= */
/* =========================================================
   SINGLE POST — bc editorial
   ========================================================= */

.bc-single { background: var(--color-white); }
.bc-article { background: var(--color-white); }

/* --- Hero Header --- */
.bc-hero {
  padding: 2.75rem 0 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  border-bottom: 3px solid var(--color-gray-200);
}

.bc-breadcrumb {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gray-400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.bc-breadcrumb a {
  color: var(--color-gray-400);
  transition: color var(--transition);
}

.bc-breadcrumb a:hover { color: var(--color-dark); }

.bc-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.25rem 0.65rem 0.25rem 0.5rem;
  border-left: 4px solid currentColor;
  background: rgba(0,0,0,0.035);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1rem;
}

.bc-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 0.9rem;
  max-width: 36ch;
}

.bc-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-gray-600);
  max-width: 54ch;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.bc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-gray-200);
}

.bc-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bc-author-initial {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--color-navy);
  color: var(--color-white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
}

.bc-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.bc-author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-dark);
  transition: color var(--transition);
}

.bc-author-name:hover { color: var(--color-teal); }

.bc-author-avatar {
  flex-shrink: 0;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid var(--color-gray-200);
  transition: border-color var(--transition), opacity var(--transition);
}

.bc-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-author-avatar:hover { opacity: 0.85; border-color: var(--color-teal); }

.bc-date,
.bc-date-updated {
  font-size: 0.8rem;
  color: var(--color-gray-400);
}

/* --- Share Buttons --- */
.bc-share {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.bc-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--color-gray-200);
  display: grid;
  place-items: center;
  background: var(--color-white);
  color: var(--color-gray-600);
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.bc-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  border-color: transparent;
  color: var(--color-white);
}

.bc-share-wa:hover  { background: #25d366; }
.bc-share-fb:hover  { background: #1877f2; }
.bc-share-tw:hover  { background: #000000; }
.bc-share-copy:hover { background: var(--color-navy); }

/* --- Hero Media (imagem destaque) --- */
.bc-hero-media {
  margin: 0;
  width: 100%;
  background: var(--color-gray-100);
  position: relative;
}

.bc-hero-media img {
  width: 100%;
  height: clamp(260px, 44vw, 520px);
  object-fit: cover;
  display: block;
}

.bc-hero-caption {
  font-size: 0.78rem;
  color: var(--color-gray-400);
  font-style: italic;
  padding: 0.5rem 1.25rem 0.75rem;
  max-width: var(--container);
  margin: 0 auto;
  border-bottom: 1px solid var(--color-gray-200);
}

/* --- Corpo do artigo --- */
.bc-body {
  padding: 2.5rem 0 3.5rem;
}

.bc-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.bc-body-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.bc-share-float { display: none; }

/* --- Conteúdo editorial --- */
.bc-content {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--color-dark);
}

.bc-content p { margin: 0 0 1.5rem; }

.bc-content h2 {
  font-size: 1.6rem;
  margin: 2.75rem 0 0.9rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-dark);
}

.bc-content h3 {
  font-size: 1.3rem;
  margin: 2.25rem 0 0.8rem;
  line-height: 1.25;
  color: var(--color-dark);
}

.bc-content h4 {
  font-size: 1.1rem;
  margin: 1.75rem 0 0.6rem;
  line-height: 1.3;
  color: var(--color-dark);
}

.bc-content a {
  color: var(--color-teal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.bc-content a:hover { color: var(--color-teal-dark); }

.bc-content ul,
.bc-content ol {
  padding-left: 1.5rem;
  margin: 0 0 1.5rem;
}

.bc-content li { margin-bottom: 0.4rem; }

.bc-content blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--color-navy);
  background: var(--color-gray-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-gray-700);
}

.bc-content blockquote p { margin-bottom: 0; }

.bc-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.bc-content figure { margin: 1.75rem 0; }
.bc-content figcaption {
  font-size: 0.8rem;
  color: var(--color-gray-400);
  font-style: italic;
  margin-top: 0.4rem;
}

/* Containment for wide content elements that can cause horizontal overflow */
.bc-content pre,
.bc-content code,
.wp-block-code,
.wp-block-preformatted {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.bc-content table,
.wp-block-table table {
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
  display: block;
  border-collapse: collapse;
}

.bc-content iframe,
.bc-content embed,
.bc-content object,
.bc-content video,
.wp-block-embed__wrapper iframe {
  max-width: 100%;
}

.wp-block-embed {
  max-width: 100%;
  overflow: hidden;
}

/* --- Tags --- */
.bc-tags {
  border-top: 1px solid var(--color-gray-200);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

.bc-tags-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gray-400);
  margin-bottom: 0.65rem;
}

.bc-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bc-tag {
  border: 1px solid var(--color-gray-200);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--color-gray-700);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.bc-tag:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* --- Sidebar --- */
.bc-sidebar {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.bc-sidebar-card {
  border: 1px solid var(--color-gray-200);
  border-top: 3px solid var(--accent, var(--color-teal));
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.25rem;
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.bc-sidebar-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent, var(--color-teal));
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.bc-sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bc-sidebar-cats li { border-bottom: 1px solid var(--color-gray-100); }
.bc-sidebar-cats li:last-child { border-bottom: none; }

.bc-cat-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 0;
  transition: color var(--transition);
}

.bc-cat-link:hover .bc-cat-name { color: var(--cat-color, var(--color-teal)); }

.bc-cat-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cat-color, var(--color-teal));
}

.bc-cat-name {
  flex: 1;
  color: var(--color-dark);
  transition: color var(--transition);
}

.bc-cat-count {
  color: var(--color-gray-400);
  font-size: 0.82rem;
  font-weight: 400;
}

/* --- Sidebar: Anúncio --- */
.bc-sidebar-ad {
  margin-top: 0;
}

.bc-ad-placeholder {
  background: var(--color-gray-100);
  border: 1px dashed var(--color-gray-200);
  border-radius: var(--radius);
  height: 250px;
  display: grid;
  place-items: center;
}

.bc-ad-placeholder span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gray-400);
}

/* --- Sidebar: Mais Lidas --- */
.bc-popular-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bc-popular-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.bc-popular-item:last-child { border-bottom: none; }

.bc-popular-rank {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--color-gray-100);
  color: var(--color-gray-400);
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.bc-popular-item:nth-child(1) .bc-popular-rank { background: var(--color-orange); color: var(--color-white); }
.bc-popular-item:nth-child(2) .bc-popular-rank { background: var(--color-gray-600); color: var(--color-white); }
.bc-popular-item:nth-child(3) .bc-popular-rank { background: #b08040; color: var(--color-white); }

.bc-popular-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.bc-popular-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-dark);
  transition: color var(--transition);
}

.bc-popular-title:hover { color: var(--color-teal); }

.bc-popular-date {
  font-size: 0.72rem;
  color: var(--color-gray-400);
}

/* --- Relacionadas --- */
.bc-related {
  background: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-200);
  padding: 2.75rem 0 3.5rem;
}

.bc-related-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.bc-related-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-navy);
  padding: 0.25rem 0.65rem 0.25rem 0.5rem;
  border-left: 4px solid var(--color-navy);
  background: rgba(13,27,62,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.bc-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.bc-related-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.bc-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.09);
}

.bc-related-thumb {
  display: block;
  overflow: hidden;
}

.bc-related-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.bc-related-card:hover .bc-related-thumb img {
  transform: scale(1.04);
}

.bc-related-info {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bc-related-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.bc-related-title-sm {
  font-size: 0.98rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  flex: 1;
}

.bc-related-title-sm a {
  color: var(--color-dark);
  transition: color var(--transition);
}

.bc-related-title-sm a:hover { color: var(--color-teal); }

.bc-related-date {
  font-size: 0.78rem;
  color: var(--color-gray-400);
  margin-top: auto;
}

/* --- Responsivo desktop --- */
@media (min-width: 900px) {
  .bc-body-grid {
    grid-template-columns: minmax(0, 720px) 280px;
    gap: 3rem;
  }

  .bc-body-main {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 1.5rem;
  }

  .bc-share-top { display: none; }

  .bc-share-float {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    position: sticky;
    top: 120px;
  }

  .bc-sidebar {
    display: flex;
    position: sticky;
    top: 120px;
  }
}

/* --- Responsivo mobile --- */
@media (max-width: 899px) {
  .bc-share-top { justify-content: flex-start; }
  .bc-title { max-width: 100%; }
  .bc-subtitle { max-width: 100%; }
  .bc-related-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (max-width: 540px) {
  .bc-related-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PÁGINA DO AUTOR — au-*
   ========================================================= */

/* --- Perfil do autor (sutil) --- */
.au-hero {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 2rem 0;
}

.au-hero-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.au-avatar-wrap { flex-shrink: 0; }

.au-avatar {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--color-gray-200);
  display: block;
}

.au-avatar-fallback {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: var(--color-navy);
  color: var(--color-white);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.au-profile { flex: 1; }

/* Categoria sem avatar: perfil ocupa largura total */
.au-profile--full { flex: 1; }
.au-cat-icon { border-radius: var(--radius); }

.au-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gray-400);
  margin-bottom: 0.2rem;
}

.au-name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
}

.au-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-gray-600);
  max-width: 56ch;
  margin-bottom: 0.75rem;
}

.au-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.au-posts-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gray-400);
}

.au-links {
  display: flex;
  gap: 0.5rem;
}

.au-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gray-600);
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.au-link:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* --- Corpo: artigos + sidebar --- */
.au-body {
  padding: 2rem 0 4rem;
  background: var(--color-gray-50);
}

.au-body-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

/* --- Cabeçalho da seção --- */
.au-section-header { margin-bottom: 1.25rem; }

.au-section-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-navy);
  display: inline-block;
  padding: 0.25rem 0.65rem 0.25rem 0.5rem;
  border-left: 4px solid var(--color-navy);
  background: rgba(13,27,62,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* --- Grid de artigos --- */
.au-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.au-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  transition: box-shadow var(--transition);
}

.au-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.au-card-thumb {
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  width: 180px;
  background: var(--color-gray-100);
}

.au-card-thumb img {
  width: 180px;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.au-card:hover .au-card-thumb img { transform: scale(1.04); }

.au-card-thumb-placeholder {
  width: 180px;
  height: 130px;
  display: grid;
  place-items: center;
  background: var(--color-gray-100);
}

.au-card-thumb-placeholder svg {
  color: var(--color-gray-200);
}

.au-card-info {
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.au-card-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.3rem;
}

.au-card-cat {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: opacity var(--transition);
}

.au-card-cat:hover { opacity: 0.75; }

.au-card-cats .au-card-cat + .au-card-cat::before {
  content: '|';
  margin-right: 0.35rem;
  color: var(--color-gray-200);
  font-weight: 400;
}

.au-card-title {
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.au-card-title a {
  color: var(--color-dark);
  transition: color var(--transition);
}

.au-card-title a:hover { color: var(--color-teal); }

.au-card-excerpt {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-gray-600);
  flex: 1;
  margin-bottom: 0.4rem;
}

.au-card-date {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  margin-top: auto;
}

/* --- Sidebar --- */
.au-sidebar { display: none; }

/* --- Paginação --- */
.au-pagination {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-gray-200);
}

.au-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.au-pagination .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-gray-700);
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.au-pagination .page-numbers:hover {
  background: var(--color-gray-100);
  border-color: var(--color-gray-400);
}

.au-pagination .page-numbers.current {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.au-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  pointer-events: none;
}

.au-pagination .prev.page-numbers,
.au-pagination .next.page-numbers {
  font-size: 0.82rem;
  padding: 0 0.9rem;
}

.au-listing-ad {
  margin: 1rem 0;
  text-align: center;
}

.au-empty {
  color: var(--color-gray-400);
  padding: 2rem 0;
  text-align: center;
}

.au-search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--color-gray-600);
}

.au-search-empty svg { color: var(--color-gray-200); }

.au-search-empty p {
  font-size: 1rem;
  font-weight: 600;
}

.au-search-tip {
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  color: var(--color-gray-400);
}

/* --- Responsivo desktop --- */
@media (min-width: 900px) {
  .au-body-inner {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 3rem;
  }

  .au-sidebar {
    display: block;
    position: sticky;
    top: 120px;
  }
}

/* --- Responsivo mobile --- */
@media (max-width: 680px) {
  .au-hero-inner { gap: 1rem; }
  .au-avatar { width: 64px; height: 64px; }
  .au-avatar-fallback { width: 64px; height: 64px; font-size: 1.4rem; }
  .au-name { font-size: 1.2rem; }
  .au-bio { font-size: 0.85rem; }

  .au-card { flex-direction: column; }
  .au-card-thumb,
  .au-card-thumb img,
  .au-card-thumb-placeholder { width: 100%; height: 160px; }
}

/* =============================================
   ABOVE-SLIDER GLOBAL (header.php)
   ============================================= */
.above-slider-global {
  background-color: #fff;
  padding: 0.6rem 0;
  text-align: center;
}

.above-slider-global .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =============================================
   PÁGINA SOBRE NÓS — sobre-*
   ============================================= */

/* Hero */
.sobre-hero {
  position: relative;
  min-height: 340px;
  background: var(--color-navy) center/cover no-repeat;
  display: flex;
  align-items: center;
}

.sobre-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,.85) 0%, rgba(0,143,179,.55) 100%);
}

.sobre-hero__inner {
  position: relative;
  z-index: 1;
  padding: 4rem 1.25rem;
  text-align: center;
}

.sobre-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.sobre-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.8);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* Labels e headings comuns */
.sobre-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}

.sobre-section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

/* História */
.sobre-historia {
  padding: 4rem 0;
  background: var(--color-white);
}

.sobre-historia__inner {
  max-width: 760px;
}

.sobre-historia__body {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--color-gray-700);
}

.sobre-historia__body p { margin: 0 0 1.25rem; }

/* MVV */
.sobre-mvv {
  padding: 4rem 0;
  background: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

.sobre-mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sobre-mvv__card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.sobre-mvv__card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  transform: translateY(-4px);
}

.sobre-mvv__icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.sobre-mvv__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sobre-mvv__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-gray-600);
}

/* Equipe */
.sobre-equipe {
  padding: 4rem 0;
  background: var(--color-white);
}

.sobre-section-header { margin-bottom: 2rem; }

.sobre-equipe__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.sobre-equipe__card {
  text-align: center;
}

.sobre-equipe__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-gray-200);
  margin: 0 auto 1rem;
  display: block;
  transition: border-color var(--transition);
}

.sobre-equipe__card:hover .sobre-equipe__photo {
  border-color: var(--color-teal);
}

.sobre-equipe__photo-fallback {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  text-transform: uppercase;
}

.sobre-equipe__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.sobre-equipe__role {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  margin-bottom: 0.6rem;
}

.sobre-equipe__bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-gray-600);
}

/* CTA */
.sobre-cta {
  background: var(--color-navy);
  padding: 4rem 0;
}

.sobre-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.sobre-cta__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.sobre-cta__body {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.sobre-cta__btn {
  display: inline-block;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.04em;
}

.sobre-cta__btn:hover {
  background: var(--color-teal-dark);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .sobre-mvv__grid { grid-template-columns: 1fr; }
  .sobre-equipe__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .sobre-hero { min-height: 240px; }
}

@media (max-width: 480px) {
  .sobre-equipe__grid { grid-template-columns: 1fr; }
}

.canal-whatsapp-box {
  border-left: 5px solid #192056;
  background-color: #e5f6ff;
  background-image: url(https://i.imgur.com/TRF9P3H.png);
  background-size: cover;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: sans-serif;
  margin: 20px 20px;
}

.canal-whatsapp-icon img {
  width: 68px;
  height: 68px;
}

.canal-whatsapp-content {
  flex: 1;
}

.canal-whatsapp-content strong {
  font-size: 1rem;
  color: #192056;
  display: block;
  margin-bottom: 4px;
	line-height: normal;
}

.canal-whatsapp-content p {
  margin: 0 0 10px;
  font-size: 0.8rem;
  color: #333;
  padding: 0;
	line-height: normal;
}

.canal-whatsapp-content a {
  background-color: #1eaa60;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  font-size: 0.8rem;
}

		.canal-whatsapp-content a i{
			    font-size: 1.2rem;
		}
		.canal-i-wp{
			display: flex;
    		align-items: center;
    		gap: 5px;
		}
/* Responsivo */
@media (max-width: 768px) {
  .canal-whatsapp-box {
    flex-direction: row;
        align-items: center;
        margin: 20px;
        text-align: center;
  }
	.canal-whatsapp-content {
    text-align: left;
}
	
	.canal-whatsapp-content strong {
		font-size: 0.9rem;
        line-height: normal;
	}
	.canal-whatsapp-content p {
    margin: 0 0 10px;
    font-size: .8rem;
    line-height: normal;
	}

  .canal-whatsapp-icon img {
    width: 60px;
    height: 60px;
  }

  .canal-whatsapp-content a {
	  font-size:1rem;
	  display: block;
  }
	.canal-i-wp {
    	justify-content: center;
	}
}
