/* Web Rádio - Tema escuro com vermelho */
/* Tema no estilo Sound PRO / Hoost - cor de destaque #c4242a */
/* Player popup - janela lateral */
.player-popup-page {
  display: flex;
  justify-content: flex-end;
}
.radio-player-popup {
  width: 100%;
  max-width: 360px;
  min-height: 100vh;
  background: var(--bg-darker);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 32px rgba(0,0,0,0.5);
}
.radio-player-popup .radio-panel-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.radio-player-popup .radio-panel-body {
  padding: 1.5rem 1.25rem;
}

/* App shell - player persistente, música continua ao navegar */
body.app-shell {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #1a1a1a;
}
.app-iframe {
  display: block;
  width: 100%;
  height: 100vh;
  border: none;
}

:root {
  --bg-dark: #1a1a1a;
  --bg-darker: #0d0d0d;
  --accent: #c4242a;
  --accent-hover: #a01d22;
  --text: #f0f0f0;
  --text-muted: rgba(255,255,255,0.6);
  --border: #333;
}

* {
  box-sizing: border-box;
}

body {
  background: #252525;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 0L28 14L14 28L0 14L14 0zm0 4L4 14l10 10 10-10L14 4z' fill='%23000' fill-opacity='0.25' fill-rule='evenodd'/%3E%3C/svg%3E");
  color: var(--text);
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Títulos e descrições - Poppins */
h1, h2, h3, h4, h5, h6,
.section-title,
.card-title,
.lead,
p {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

/* Coluna central 1170px - formato do print */
.site-wrap {
  max-width: 1170px;
  margin: 0 auto;
  background: var(--bg-dark);
  min-height: 100vh;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

/* Desktop: espaçamento lateral proporcional (escala com zoom) */
@media (min-width: 768px) {
  .site-wrap {
    margin-left: max(50px, 4vw);
    margin-right: max(50px, 4vw);
  }
  .top-bar .container,
  .site-footer .footer-section-wrap,
  .site-footer .footer-bottom .container {
    padding-left: max(50px, 4vw) !important;
    padding-right: max(50px, 4vw) !important;
  }
  body.portal-white .portal-header-inner,
  body.portal-white .portal-cats-row .container {
    padding-left: max(50px, 4vw) !important;
    padding-right: max(50px, 4vw) !important;
  }
}

a {
  color: var(--accent);
}
a:hover {
  color: var(--accent-hover);
}

/* Header - não fixo, rola com a página */
.site-header {
  position: relative;
  z-index: 10;
}

/* Top bar (logo + redes) - fora do site-wrap, totalmente transparente, sem fundo */
.top-bar.header-top {
  background: transparent !important;
  border-bottom: none;
}
.top-bar.header-top .container {
  max-width: 1170px;
}
.header-top-inner {
  padding: 1.25rem 0;
  min-height: 110px;
  align-items: center;
}

.logo-block {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: #fff;
}
.site-logo-img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-pick {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50% 50% 8px 50%;
  transform: rotate(-45deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 4px;
}
.logo-pick i {
  color: #fff;
  font-size: 1.4rem;
  transform: rotate(45deg);
}

.logo-freq-tag {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 3px 8px;
  margin-left: -6px;
  margin-right: 10px;
  align-self: flex-end;
  margin-bottom: 0;
}

.logo-name {
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.logo-fm {
  font-weight: 700;
  color: #fff;
  margin-left: 2px;
}

.logo-by {
  font-size: 0.7rem;
  color: var(--accent);
  margin-left: 6px;
  align-self: flex-end;
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: lowercase;
}

.logo-block:hover {
  color: #fff;
}
.logo-block:hover .logo-name,
.logo-block:hover .logo-fm { color: #fff; }
.logo-block:hover .logo-by { color: var(--accent-hover); }

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social-links a {
  color: #fff;
  font-size: 1.25rem;
  opacity: 0.9;
}
.social-links a:hover {
  color: #fff;
  opacity: 1;
}

/* Barra de navegação - fundo #1c1c1c */
.main-nav {
  background: #1c1c1c !important;
  padding: 0;
  border: none;
  min-height: 46px;
}
.main-nav .container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  padding-right: 0;
}
.main-nav .navbar-collapse {
  flex-grow: 1;
  align-items: stretch;
  justify-content: space-between;
}
.main-nav .navbar-collapse.show {
  display: flex;
}
.main-nav .navbar-nav {
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
}
.main-nav .nav-link {
  color: #fff !important;
  padding: 0.6rem 0.85rem;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border: none;
  border-top: 3px solid transparent;
  display: flex;
  align-items: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  outline: none !important;
  box-shadow: none !important;
}
.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .nav-link:focus-visible,
.main-nav .nav-item.dropdown.show .nav-link {
  color: #fff !important;
  background: rgba(255,255,255,0.06);
  border-top-color: var(--accent);
  outline: none !important;
  box-shadow: none !important;
}
.main-nav .dropdown-toggle::after {
  margin-left: 0.35em;
  vertical-align: middle;
}
.main-nav .dropdown-toggle:focus,
.main-nav .dropdown-toggle:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Submenu dropdown - fundo escuro, linha vermelha em cima */
.main-nav .dropdown-menu-nav {
  background: #1c1c1c;
  border: none;
  border-top: 3px solid var(--accent);
  border-radius: 0;
  padding: 0.5rem 0;
  margin-top: 0;
}
.main-nav .dropdown-menu-nav .dropdown-item {
  color: #fff;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
  outline: none !important;
  box-shadow: none !important;
}
.main-nav .dropdown-menu-nav .dropdown-item:hover,
.main-nav .dropdown-menu-nav .dropdown-item:focus,
.main-nav .dropdown-menu-nav .dropdown-item:focus-visible {
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none !important;
  box-shadow: none !important;
}

/* Botão Abrir Player - vermelho, colado na borda direita do menu */
.btn-player-block {
  display: inline-flex;
  align-items: stretch;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  border: none;
  padding: 0 1rem 0 1.25rem;
  margin-left: 0;
  margin-right: 0;
  margin-top: -2px;
  margin-bottom: -2px;
  min-height: 50px;
  align-self: stretch;
  transition: background 0.2s;
  border-radius: 0;
}
.btn-player-block:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

.btn-player-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-player-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.2;
}
.btn-player-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
}
.btn-player-sub {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.95;
  margin-top: 1px;
}
.btn-player-inner i {
  font-size: 1.4rem;
  opacity: 0.95;
}

/* Hero Slider - somente imagem, setas em chevron branco */
.hero-slider {
  margin-bottom: 0;
  position: relative;
}
.hero-slider .carousel-inner {
  border-radius: 0;
}
.hero-slide {
  min-height: var(--hero-height, 520px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.hero-slide-img {
  min-height: var(--hero-height, 520px);
}
.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: var(--hero-height, 520px);
}
.hero-slide-placeholder {
  background: linear-gradient(135deg, var(--accent) 0%, #8b0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hero-placeholder-text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

/* Setas de navegação - Bootstrap Icons chevron (finas) */
.hero-slider .hero-arrow {
  width: 80px;
  opacity: 1;
  background: transparent;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  padding: 0;
  margin: 0;
  z-index: 2;
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 80px;
  height: 100px;
  margin-top: -50px;
  opacity: 0.9;
}
.hero-slider .carousel-control-prev {
  left: 15px;
}
.hero-slider .carousel-control-next {
  right: 15px;
}
.hero-slider .hero-arrow .bi-chevron-left,
.hero-slider .hero-arrow .bi-chevron-right {
  color: #fff;
  font-size: 4rem;
  font-weight: 300;
}
.hero-slider .hero-arrow:hover .bi-chevron-left,
.hero-slider .hero-arrow:hover .bi-chevron-right {
  opacity: 0.95;
}

/* Últimas Notícias - largura fixa 1160px, 3 colunas, imagem em cima texto embaixo */
.news-section {
  background: var(--bg-darker);
  padding: 50px 0;
}
.news-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
}
.news-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.news-section .news-container {
  text-align: center;
}
.news-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
}
/* Slider: 3 cards por página, setas navegam */
.news-slider-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.news-slider-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}
.news-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}
/* Desktop: 3 colunas | Mobile: escondido, usa .news-mobile */
.news-section .news-desktop { display: block; }
.news-section .news-mobile { display: none; }
.news-section .news-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.news-carousel-mobile { position: relative; margin-top: 0.5rem; }
.news-carousel-mobile .carousel-inner { border-radius: 8px; overflow: hidden; }
.news-carousel-mobile .news-card-v { background: rgba(40,40,40,0.8); }
.news-carousel-control {
  width: 40px; height: 40px;
  top: 50%; margin-top: -20px;
  background: rgba(0,0,0,0.6); border-radius: 50%;
  opacity: 1; border: none;
}
.news-carousel-control i { color: #fff; font-size: 1.25rem; }
@media (max-width: 767px) {
  .news-section .news-desktop { display: none !important; }
  .news-section .news-mobile { display: block !important; }
}
@media (min-width: 768px) {
  .news-section .news-mobile { display: none !important; }
}
/* Apenas 3 colunas, 3 cards por linha (em qualquer largura de tela) */
.news-section .news-grid,
.news-section .news-slide .news-slider,
.news-section .news-slider {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-template-rows: auto !important;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.news-section .news-grid .news-card-wrap,
.news-section .news-slider .news-card-wrap {
  max-width: 100%;
}
.news-card-wrap {
  display: flex;
  min-width: 0;
}
.news-card-wrap .news-card-v {
  flex: 1;
  width: 100%;
  min-width: 0;
}
/* Card: imagem sempre mesmo tamanho (aspect-ratio); título em cima ou embaixo alternado */
.news-card-v {
  display: flex;
  flex-direction: column;
  background: rgba(40,40,40,0.8);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: background 0.2s;
  height: 100%;
}
.news-card-v:hover {
  background: rgba(50,50,50,0.9);
  color: #fff;
}
/* Imagem sempre mesmo tamanho, independente do upload (altura menor: 16/9) */
.news-card-v-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
  flex-shrink: 0;
  order: 1;
}
.news-card-v-img img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.news-card-v:hover .news-card-v-img img {
  transform: scale(1.08);
}
.news-card-v-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  font-size: 2rem;
  color: var(--text-muted);
}
.news-card-v-body {
  padding: 1rem 1rem;
  flex-shrink: 0;
  order: 2;
}
/* Alternado: 1º título em cima, 2º embaixo, 3º em cima... */
.news-card-wrap:nth-child(odd) .news-card-v .news-card-v-body {
  order: 0;
}
.news-card-wrap:nth-child(odd) .news-card-v .news-card-v-img {
  order: 1;
}
.news-card-v-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: 0 0 0.35rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-v-date {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.news-card-v-resumo {
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  margin: 0.5rem 0 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* "só uma parte" */
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
}

/* Tema claro: cards da seção "Últimas noticias" */
body.portal-white .news-card-v {
  background: #fff !important;
  color: #111 !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
}

body.portal-white .news-card-v:hover {
  background: #fff !important;
}

body.portal-white .news-card-v-title {
  color: #111 !important;
}

body.portal-white .news-card-v-date,
body.portal-white .news-card-v-resumo {
  color: rgba(0,0,0,0.62) !important;
}

/* Portal branco (home/notícias/detalhe) */
body.portal-white {
  /* Gutter lateral (fora do container central) */
  background: #fff !important;
  background-image: none !important;
  color: #111 !important;
}
body.portal-white .site-wrap {
  background: #fff !important;
  box-shadow: none;
}
body.portal-white .main-nav {
  background: #fff !important;
}
body.portal-white .site-footer {
  color: rgba(255,255,255,0.85);
  background: var(--accent) !important;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 0 !important;
}
body.portal-white .footer-title {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.22);
}
body.portal-white .footer-texto,
body.portal-white .footer-menu a,
body.portal-white .footer-contato {
  color: rgba(255,255,255,0.88) !important;
}
body.portal-white .footer-menu a:hover {
  color: rgba(255,255,255,1) !important;
}
body.portal-white .footer-columns {
  border-bottom-color: rgba(255,255,255,0.18) !important;
}
body.portal-white .footer-bottom {
  border-top-color: rgba(255,255,255,0.18) !important;
}
body.portal-white .footer-social a {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}
body.portal-white .footer-social a:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.30);
  color: #fff;
}
body.portal-white .news-section {
  background: #fff !important;
}
body.portal-white .news-section-title {
  color: #111 !important;
}

/* ===== Portal branco: cartões da "próxima dobra" (home-portal-grid) ===== */
body.portal-white .home-side-news-card {
  background: #fff !important;
  color: #111 !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
}
body.portal-white .home-side-news-card:hover {
  background: #fff !important;
}
body.portal-white .home-side-news-img {
  background: #f3f3f3 !important;
}
body.portal-white .home-side-news-title {
  color: #111 !important;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 1.35rem !important;
}
body.portal-white .home-side-news-date {
  color: rgba(0,0,0,0.55) !important;
}

body.portal-white .home-side-news-preview {
  margin: 0.35rem 0 0 0;
  color: rgba(0,0,0,0.58) !important;
  font-size: 0.86rem;
  line-height: 1.35;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif !important;
  text-transform: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.portal-white .home-side-news-cat {
  background: var(--cat-color, var(--accent)) !important;
  color: #fff !important;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif !important;
  font-weight: 700 !important;
}
body.portal-white .home-side-news-cat-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
}

body.portal-white .home-side-news-placeholder {
  background: rgba(0,0,0,0.06) !important;
  color: rgba(0,0,0,0.35) !important;
}

body.portal-white .home-featured-news-card {
  border: 1px solid rgba(0,0,0,0.08) !important;
  color: #fff !important;
  background: rgba(0,0,0,0.12) !important;
  height: 425px !important;
}
body.portal-white .home-featured-news-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0.92) 100%) !important;
}
body.portal-white .home-featured-news-title {
  color: #fff !important;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 2rem !important;
}
body.portal-white .home-featured-news-cat {
  background: var(--cat-color, var(--accent)) !important;
}

body.portal-white .home-featured-news-resumo {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif !important;
  text-transform: none !important;
}

body.portal-white .home-featured-carousel-control {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  background: rgba(0,0,0,0.25);
  border-radius: 999px;
}
body.portal-white .home-featured-carousel-control i {
  color: #fff;
  font-size: 1.5rem;
  position: relative;
  top: 1px;
}

body.portal-white .sidebar-block-title {
  color: #111 !important;
  border-bottom-color: var(--accent) !important;
}
body.portal-white .home-right-news-item {
  color: rgba(0,0,0,0.75) !important;
  background: rgba(0,0,0,0.03) !important;
}
body.portal-white .home-right-news-item:hover {
  background: rgba(0,0,0,0.06) !important;
}
body.portal-white .home-right-news-title {
  color: rgba(0,0,0,0.75) !important;
}

/* Banner "PUBLICIDADE" no modo portal branco */
body.portal-white .banner-pub-label {
  color: rgba(0,0,0,0.55) !important;
  background: rgba(0,0,0,0.06) !important;
}

/* Barra "Últimas notícias" (tema branco) */
body.portal-white .portal-latest-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0 6px 0;
}
body.portal-white .portal-latest-pill {
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  white-space: nowrap;
}
body.portal-white .portal-latest-ticker {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

body.portal-white .portal-latest-ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 2px 0;
  animation: portalLatestScroll 18s linear infinite;
  will-change: transform;
}
body.portal-white .portal-latest-ticker:hover .portal-latest-ticker-inner {
  animation-play-state: paused;
}
@keyframes portalLatestScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

body.portal-white .portal-latest-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  white-space: nowrap;
}
body.portal-white .portal-latest-sep {
  color: rgba(0,0,0,0.35);
  font-weight: 700;
}
body.portal-white .portal-latest-cat {
  color: var(--cat-color, var(--accent));
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
body.portal-white .portal-latest-title {
  color: rgba(0,0,0,0.65);
  font-size: 0.85rem;
  font-weight: 600;
}
body.portal-white .portal-latest-item:hover .portal-latest-title {
  color: rgba(0,0,0,0.82);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Portal (tema branco): largura total das seções e margens internas 50px */
body.portal-white .site-wrap {
  max-width: 1420px !important; /* 1320 + 50px de cada lado */
  margin-left: auto;
  margin-right: auto;
}
body.portal-white .container {
  max-width: 1320px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.portal-white .news-container {
  max-width: 1320px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.portal-white .news-section {
  padding-top: 28px;
  padding-bottom: 40px;
}

/* Home (layout modular): mais respiro abaixo de cada bloco */
.portal-home-layout > section.py-4 {
  padding-bottom: 3.75rem !important;
}
.portal-home-layout > section.py-3 {
  padding-bottom: 3rem !important;
}
.portal-home-layout > section.portal-latest-wrap {
  margin-bottom: 2.5rem;
}

/* Mobile: recuperar padding lateral para não ficar "colado" nas bordas */
@media (max-width: 767px) {
  body.portal-white .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  body.portal-white .news-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  body.portal-white .portal-latest-wrap .news-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 0.5rem;
}
.news-link-all {
  flex: 1;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}
.news-link-all:hover {
  color: var(--accent);
}
.news-nav-arrows {
  display: flex;
  gap: 0.5rem;
}
.news-nav-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.news-nav-btn:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Seção 3 colunas abaixo das notícias (Peça música | Vídeo | Enquete + Segue lá) */
.home-three-cols .home-block-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  position: relative;
  display: inline-block;
}
.home-three-cols .home-block-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}
.home-cta-pedido {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: background 0.2s;
}
.home-cta-pedido:hover {
  background: var(--accent-hover);
  color: #fff !important;
}
.home-cta-pedido i {
  font-size: 1.5rem;
}
.home-block-mural .mural-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.home-block-mural .mural-item:last-of-type {
  border-bottom: none;
}
.btn-mural-recado {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.btn-mural-recado:hover {
  background: var(--accent-hover);
  color: #fff;
}
.mural-form-wrap[hidden] {
  display: none !important;
}
.mural-form .mural-input {
  background: rgba(60,60,60,0.8) !important;
  border: 1px solid var(--border);
  color: #fff;
}
.mural-form .mural-input::placeholder {
  color: var(--text-muted);
}
.mural-form .mural-textarea {
  background: #fff !important;
  border: 1px solid #dee2e6;
  color: #212529;
  resize: vertical;
}
.mural-form .mural-textarea::placeholder {
  color: #6c757d;
}
.mural-form-footer {
  margin-top: 0.75rem;
}
.mural-btn-enviar {
  background: var(--accent) !important;
  color: #fff !important;
  border: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: background 0.2s;
}
.mural-btn-enviar:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
}
.link-mural-ver-todos {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted) !important;
  text-decoration: none !important;
  border: none !important;
  background: none !important;
  padding: 0;
}
.link-mural-ver-todos:hover {
  color: var(--accent) !important;
}
.mural-paginacao .pagination {
  gap: 0.25rem;
}
.mural-page-link {
  background: rgba(255,255,255,0.06) !important;
  border: none !important;
  color: var(--text-muted) !important;
  padding: 0.3rem 0.5rem;
  font-size: 0.8rem;
}
.mural-page-link:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
}
.mural-paginacao .page-item.active .page-link {
  background: var(--accent) !important;
  color: #fff !important;
}

/* Publicidade abaixo do mural */
.publicidade-mural .carousel-inner {
  border-radius: 6px;
  overflow: hidden;
}
.pub-mural-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.publicidade-mural .carousel-control-prev,
.publicidade-mural .carousel-control-next {
  width: 40px;
  background: transparent !important;
  border: none;
  opacity: 0.7;
  top: 50%;
  transform: translateY(-50%);
}
.publicidade-mural .carousel-control-prev { left: 8px; }
.publicidade-mural .carousel-control-next { right: 8px; }
.publicidade-mural .carousel-control-prev i,
.publicidade-mural .carousel-control-next i {
  font-size: 1.75rem;
}
.publicidade-mural .carousel-control-prev:hover,
.publicidade-mural .carousel-control-next:hover {
  opacity: 1;
}
.pub-mural-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: right;
  margin: 0.35rem 0 0 0;
  opacity: 0.7;
}

/* Galeria de fotos (preview na home) */
.galeria-preview-section {
  background: rgba(0,0,0,0.2);
}
.galeria-preview-section .container {
  max-width: 900px;
}
.section-title-galeria {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.section-title-galeria::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 280px;
  height: 3px;
  background: var(--accent);
}
.galeria-mosaico {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  justify-content: center;
}
@media (min-width: 768px) {
  .galeria-mosaico { grid-template-columns: repeat(6, 1fr); }
}
@media (min-width: 992px) {
  .galeria-mosaico { grid-template-columns: repeat(6, 1fr); gap: 10px; }
}
.galeria-mosaico-item {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1;
}
.galeria-mosaico-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
}
.galeria-mosaico-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.galeria-ver-todas-wrap {
  text-align: left;
}
.galeria-ver-todas {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  border: none;
  background: none;
  transition: color 0.2s;
}
.galeria-ver-todas:hover {
  color: var(--accent);
}

/* Página Galeria única - mosaico */
.galeria-mosaico-pagina {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 576px) {
  .galeria-mosaico-pagina { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .galeria-mosaico-pagina { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}
@media (min-width: 992px) {
  .galeria-mosaico-pagina { grid-template-columns: repeat(5, 1fr); gap: 14px; }
}

/* Compartilhar galeria - Facebook, Twitter, WhatsApp */
.galeria-compartilhar {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s, transform 0.15s;
}
.share-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.share-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  border-radius: 6px;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.share-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.share-btn-pre {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.95;
}
.share-btn-plataforma {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.share-facebook {
  background: #1877f2;
}
.share-twitter {
  background: #1da1f2;
}
.share-whatsapp {
  background: #25d366;
}
@media (max-width: 575px) {
  .share-buttons {
    gap: 0.4rem;
  }
  .share-btn {
    padding: 0.45rem 0.7rem;
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  .share-btn-icon {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }
  .share-btn-pre {
    display: none;
  }
  .share-btn-plataforma {
    font-size: 0.85rem;
  }
}

/* Página Galerias - capas com hover efeito câmera */
.galeria-capa-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.galeria-capa {
  position: relative;
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}
.galeria-capa:hover {
  transform: translateY(-2px);
}
.galeria-capa-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.galeria-capa-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s, transform 0.3s;
}
.galeria-capa:hover .galeria-capa-img img {
  filter: grayscale(60%);
  transform: scale(1.05);
}
.galeria-capa-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.08);
  font-size: 3rem;
  color: rgba(255,255,255,0.4);
}
.galeria-capa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(0,0,0,0.5);
}
.galeria-capa:hover .galeria-capa-overlay {
  opacity: 1;
}
.galeria-capa-overlay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
}
.galeria-capa-info {
  padding: 1rem;
  text-align: center;
}
.galeria-capa-titulo {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.galeria-capa-data {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
/* Lightbox galeria home: imagem colorida com borda branca */
.galeria-lightbox img,
.fslightbox-container.galeria-lightbox img,
.fslightbox-container img {
  border: 4px solid #fff !important;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.noticia-fotos-extra--lightbox .noticia-fotos-extra-link[data-fslightbox] {
  cursor: zoom-in;
}
.mural-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.25rem;
}
.mural-content {
  flex: 1;
  min-width: 0;
}
.home-segue-la {
  margin-bottom: 0;
}
.segue-la-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 6px;
  transition: background 0.2s;
  min-height: 180px;
}
.segue-la-link:hover {
  background: var(--accent-hover);
  color: #fff !important;
}
.segue-la-link i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.segue-la-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.95;
}
.segue-la-count {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin: 0.15rem 0;
}
.segue-la-cta {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.home-block-video .home-block-title,
.home-block-noticias .home-block-title {
  font-size: 2.5rem;
}
.home-block-mural .home-block-title {
  font-size: 2rem;
}
/* Botões da home usando cor principal (Configurações) */
.home-block .btn-outline-danger,
.home-block-noticias .btn-outline-danger,
.news-section .btn-outline-danger {
  border-color: var(--accent);
  color: var(--accent);
}
.home-block .btn-outline-danger:hover,
.home-block-noticias .btn-outline-danger:hover,
.news-section .btn-outline-danger:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.home-block .btn-danger,
.home-block-noticias .btn-danger {
  background-color: var(--accent);
  border-color: var(--accent);
}
.home-block .btn-danger:hover,
.home-block-noticias .btn-danger:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Páginas estáticas em duas colunas (texto + imagem) */
.page-static-row {
  margin-top: 1rem;
}
.page-static-content {
  font-size: 0.95rem;
}
.page-static-img-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.page-static-img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  max-height: 420px;
  width: 100%;
  object-fit: cover;
}

/* Lista de vídeos */
.pagina-videos .video-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pagina-videos .video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}
.video-thumb {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.video-thumb-inner iframe {
  width: 100%;
  height: 100%;
}
.video-thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.video-thumb-play {
  margin-bottom: 0.7rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.8rem;
}
.video-thumb:hover .video-thumb-overlay {
  opacity: 1;
}
.video-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.video-desc {
  font-size: 0.8rem;
}

/* Página de vídeo - player maior e espaçamento melhor */
.pagina-video .video-detail {
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0,0,0,0.4);
}
.pagina-video .video-detail-ratio {
  margin-bottom: 1.25rem;
}
.pagina-video .video-detail-embed iframe {
  width: 100%;
  height: 100%;
}
.pagina-video .video-detail-desc {
  padding: 0 1rem 1.25rem 1rem;
  font-size: 0.95rem;
}

/* Equipe - cards modernos */
.pagina-equipe .row {
  padding-top: 5rem; /* espaço para a foto circular flutuante não sobrepor o título */
}
.pagina-equipe .row > .col-md-6.col-lg-4 {
  display: flex;
}
.team-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(0,0,0,0.6));
  border-radius: 18px;
  padding: 2.75rem 1.5rem 1.75rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  width: 100%;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px color-mix(in srgb, var(--accent) 16%, transparent);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}
.team-photo-wrap {
  position: absolute;
  inset-inline: 0;
  top: -52px;
  display: flex;
  justify-content: center;
}
.team-photo,
.team-photo-placeholder {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  border: 4px solid rgba(0,0,0,0.7);
  outline: 3px solid color-mix(in srgb, var(--accent) 40%, transparent);
  object-fit: cover;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 55%), rgba(0,0,0,0.8);
  box-shadow: 0 18px 45px rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.7);
  font-size: 3rem;
}
.team-body {
  padding-top: 4.25rem;
}
.team-name {
  font-family: 'Bebas Neue', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: .06em;
  font-size: 1.8rem;
  margin-bottom: .15rem;
  text-transform: uppercase;
}
.team-role {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.6);
  margin-bottom: .6rem;
}
.team-bio {
  font-size: .9rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}
.team-social .btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.team-social .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent) 45%, transparent);
}

/* Programação - cards com imagem */
.prog-filter-nav .prog-filter-btn {
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
}
.prog-filter-nav .prog-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
}
.prog-filter-nav .prog-filter-btn:not(.active):hover {
  border-color: var(--accent);
  color: var(--accent);
}
.prog-filter-nav {
  justify-content: center;
}
.prog-card-wrap {
  display: flex;
}
.prog-card {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.prog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
}
.prog-card-inner {
  position: relative;
  padding: 1rem 1.25rem 1.4rem;
  width: 100%;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
.prog-card-hour {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.prog-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  text-transform: uppercase;
  margin: 0.1rem 0 0.3rem;
}
.prog-card-host {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.prog-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.4rem;
}
.prog-card-day {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}
.prog-empty-msg {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* Página de evento */
.pagina-evento .card-img-top {
  max-height: 360px;
  object-fit: cover;
}
.evento-map-date {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Listagem de eventos */
.pagina-eventos .evento-card-link:hover .evento-card-modern {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.evento-card-modern {
  transition: transform 0.2s, box-shadow 0.2s;
}
.evento-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.evento-card-img-wrap img {
  max-height: 220px;
  object-fit: cover;
}
.evento-card-date {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: rgba(220, 38, 38, 0.9);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.evento-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.evento-card-hour {
  color: var(--accent);
}
.evento-card-local i {
  color: var(--accent);
}
.eventos-sidebar .eventos-search-form .form-control {
  border-radius: 999px 0 0 999px;
}
.eventos-sidebar .eventos-search-form .btn {
  border-radius: 0 999px 999px 0;
}

/* Promoções - cards e página de detalhe */
.promocao-card-link:hover .promocao-card {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent) !important;
}
.promocao-card {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 1px solid rgba(255,255,255,0.06);
}
.promocao-card-link:hover .card-title {
  color: var(--accent) !important;
}
.pagina-promocao .promocao-validade {
  color: var(--accent);
  font-size: 0.95rem;
}
.pagina-promocao .promocao-regulamento {
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.pagina-promocao .promocao-regulamento h3 {
  color: var(--accent);
}
.pagina-promocao a.hover-text-white:hover {
  color: #fff !important;
}

/* Top 10 - estilo card com capa circular */
.top10-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}
.top10-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.top10-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}
.top10-capa {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  background: rgba(0,0,0,0.3);
}
.top10-capa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top10-capa-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.25rem;
}
.top10-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.top10-pos {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
}
.top10-artista {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.top10-musica {
  color: var(--text-muted);
  font-size: 0.75rem;
}
.home-block-video .card-body {
  padding: 1.25rem;
}
.home-block-video .video-destaque-wrap {
  min-height: 260px;
}
@media (min-width: 992px) {
  .home-block-video .video-destaque-wrap {
    min-height: 320px;
  }
}
/* Cards Últimas noticias abaixo do vídeo - imagem em cima, categoria + título + data embaixo */
.noticias-grid-video {
  margin-top: 0.5rem;
}
.noticia-card-video {
  display: block;
  background: rgba(40,40,40,0.8);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  border-radius: 6px;
  transition: background 0.2s;
}
.noticia-card-video:hover {
  background: rgba(50,50,50,0.9);
  color: #fff;
}
.noticia-card-video-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.noticia-card-video-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.noticia-card-video-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  font-size: 1.5rem;
  color: var(--text-muted);
}
.noticia-card-video-body {
  padding: 0.75rem 1rem;
}
.noticia-card-video-cat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}
.noticia-card-video-titulo {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 0.35rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.noticia-card-video-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* Banners */
.banners-section {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.banners-section.banners-rodape {
  margin-bottom: 0;
  border-bottom: none;
}
/* Banner posição 2 - largura total */
.banners-section.banners-pos2-fullwidth {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.banners-pos2-inner {
  width: 100%;
  max-width: 100%;
}
.banners-pos2-fullwidth .banner-img-wrap-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.banners-pos2-fullwidth .banner-img-wrap-fullwidth .banner-box {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banners-pos2-fullwidth .banner-img-wrap-fullwidth img {
  width: 100%;
  max-width: 100%;
  height: 130px;
  object-fit: contain;
  background: #d0d0d0;
  display: block;
}
/* Script banner (mesma altura da posição 1) */
.banners-pos2-fullwidth .banner-img-wrap-fullwidth .banner-box.script-banner,
.banners-pos2-fullwidth .banner-box.script-banner {
  width: 100%;
  height: 130px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* remove margem extra que existia por causa de .banner-img-wrap genérico */
.banners-pos2-fullwidth .banner-img-wrap-fullwidth .banner-box {
  margin-bottom: 0 !important;
}
/* Banner posição 3 - tamanho real da imagem */
.banners-section.banners-pos3-natural .banners-pos3-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banners-pos3-natural .banner-img-wrap-natural {
  display: inline-block;
}
.banners-pos3-natural .banner-img-wrap-natural .banner-box {
  display: inline-block;
}
.banners-pos3-natural .banner-img-wrap-natural img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: none;
  display: block;
  vertical-align: top;
}
/* Banner tamanho real (rodapé notícias, etc.) */
.banners-section.banners-natural .banners-natural-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banners-natural .banner-img-wrap-natural {
  display: inline-block;
}
.banners-natural .banner-img-wrap-natural .banner-box {
  display: inline-block;
}
.banners-natural .banner-img-wrap-natural img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: none;
  display: block;
  vertical-align: top;
}
.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}
.banner-box {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}
.banner-box img {
  max-height: 130px;
  object-fit: contain;
}
.banner-img-wrap {
  display: block;
  width: 100%;
  text-align: right;
}
.banner-img-wrap .banner-box {
  margin-bottom: 4px;
}
.banner-pub-label {
  display: inline-block;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.12);
  padding: 4px 12px;
  border-radius: 2px;
}

/* Banners: mobile (proporção 480×130px) */
@media (max-width: 767px) {
  .banner-img-wrap {
    text-align: center;
  }
  .banner-img-wrap .banner-box {
    justify-content: center;
  }
  .banner-box img,
  .banner-img-wrap picture img {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 480 / 130;
    object-fit: contain;
  }
  .banners-pos2-fullwidth .banner-img-wrap-fullwidth .banner-box,
  .banners-pos2-fullwidth .banner-img-wrap-fullwidth img,
  .home-top-ad .home-top-ad-link,
  .home-top-ad-img {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    aspect-ratio: 480 / 130;
    object-fit: contain;
  }
  .home-top-ad .banner-box.script-banner,
  .banners-pos2-fullwidth .banner-box.script-banner {
    aspect-ratio: 480 / 130;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .banners-section,
  .home-top-ad,
  .banners-topo-noticias {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .portal-home-layout > section.home-top-ad.py-3,
  .portal-home-layout > section.banners-section.py-3 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .home-top-ad .row.g-3,
  .banners-section .row.g-3 {
    --bs-gutter-y: 0.5rem;
  }
  .banners-topo-noticias .banner-topo-noticias {
    margin-bottom: 0.5rem;
  }
  .banners-topo-noticias .banner-topo-noticias:last-child {
    margin-bottom: 0;
  }
}

/* Cards e listas */
.card.bg-dark {
  background: rgba(0,0,0,0.4) !important;
  border-radius: 6px;
}
.list-group-item.bg-transparent {
  background: transparent !important;
}
.news-list .list-group-item {
  padding: 0.75rem 0;
}

/* Footer - transparente para o fundo do site aparecer */
.site-footer {
  background: var(--accent) !important;
  margin-top: 3rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: none;
}
.site-footer .container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer .container,
.footer-columns,
.footer-section-wrap,
.footer-bottom {
  background: transparent !important;
}
.footer-section-wrap {
  padding-left: 50px;
  padding-right: 50px;
  max-width: none;
}
@media (max-width: 767px) {
  .footer-section-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer-columns {
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-top: 2.4rem !important;
}
.footer-cols-row {
  justify-content: center;
}
.footer-title {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid rgba(255,255,255,0.22);
  display: inline-block;
}
.footer-menu li {
  margin-bottom: 0.4rem;
}
.footer-menu a {
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-menu a:hover {
  color: rgba(255,255,255,1);
  transform: translateX(2px);
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.95;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.30);
  color: #fff;
}
.footer-texto,
.site-footer .footer-texto,
.site-footer .footer-texto.text-white-50 {
  font-size: 0.85rem;
  line-height: 1.6;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  color: #fff !important;
}
.site-footer .footer-contato,
.site-footer .footer-contato a,
.site-footer .footer-contato i,
.site-footer .footer-contato .text-success,
.site-footer .footer-contato .text-white-50 {
  color: #fff !important;
}
.site-footer .footer-bottom,
.site-footer .footer-bottom p,
.site-footer .footer-bottom a,
.site-footer .footer-bottom .text-white-50 {
  color: #fff !important;
}
.site-footer .footer-social a,
.site-footer .footer-social a i {
  color: #fff !important;
}
.footer-contato a:hover {
  color: rgba(255,255,255,1) !important;
}
.footer-bottom a:hover {
  color: rgba(255,255,255,1) !important;
}
.footer-col-logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}
.footer-logo {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
}
.footer-bottom p,
.footer-bottom a {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

/* Footer - contador de visitas e ouvintes online */
.footer-stats {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
}
.footer-stats-row {
  gap: 1rem;
}
.footer-stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.footer-stat-icon {
  color: var(--accent);
  font-size: 1.1rem;
}
.footer-stat-num {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.footer-stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-stat-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* Footer Estatísticas – card premium */
.footer-stats-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.footer-stats-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 70%, #000) 100%);
  border-radius: 10px;
  color: #fff;
  font-size: 1.1rem;
}
.footer-stats-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.footer-stats-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
}
.footer-stats-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* Formulários no tema escuro */
.form-control.bg-dark,
.form-select.bg-dark {
  background: rgba(0,0,0,0.5) !important;
  color: var(--text);
  border-color: var(--border);
}
.form-control.bg-dark:focus {
  background: rgba(0,0,0,0.6) !important;
  border-color: var(--accent);
  color: var(--text);
}
.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* Páginas internas */
.page-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

/* Título de página - banner vermelho (todas as páginas) */
.page-title-banner-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
.page-title-banner {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 1.75rem 1.5rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
main.site-main:has(.page-title-banner-wrap) {
  padding-top: 0;
}
.banners-topo-noticias {
  margin-top: 0;
}
.banners-topo-noticias .banner-topo-noticias {
  overflow: hidden;
  border-radius: 4px;
}
.noticia-card-pagina {
  background: rgba(0,0,0,0.4);
  border-radius: 6px;
  overflow: hidden;
  transition: background 0.2s;
}
.noticia-card-pagina:hover {
  background: rgba(40,40,40,0.6);
}
.noticia-card-pagina-link {
  display: block;
  padding-bottom: 1rem;
  text-decoration: none;
  color: inherit;
}
.noticia-card-pagina-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.noticia-card-pagina-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.noticia-card-pagina-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.08);
  font-size: 2rem;
  color: rgba(255,255,255,0.4);
}
.noticia-card-pagina-cat {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  padding: 0.5rem 1rem 0;
}
.noticia-card-pagina-titulo {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  padding: 0.35rem 1rem 0;
  margin: 0;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.noticia-card-pagina-date {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.25rem 1rem 0;
}
.sidebar-block-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}
.sidebar-categorias .sidebar-cat-item {
  display: block;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.sidebar-categorias .sidebar-cat-item:hover,
.sidebar-categorias .sidebar-cat-item.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.sidebar-segue-la {
  text-decoration: none;
  transition: opacity 0.2s;
}
.sidebar-segue-la:hover {
  opacity: 0.9;
}
.sidebar-segue-la-icon {
  font-size: 2rem;
  color: var(--accent);
}

/* Formulário de comentários - notícia */
/* Alinhamento do editor Quill - notícia, post, páginas */
.ql-align-center { text-align: center; }
.ql-align-right { text-align: right; }
.ql-align-justify { text-align: justify; }

/* Fontes do editor (Quill) na matéria — mesmas famílias carregadas no header */
.content.noticia-importada .ql-font-poppins { font-family: 'Poppins', system-ui, sans-serif; }
.content.noticia-importada .ql-font-inter { font-family: 'Inter', system-ui, sans-serif; }
.content.noticia-importada .ql-font-merriweather { font-family: 'Merriweather', Georgia, serif; }
.content.noticia-importada .ql-font-source-serif { font-family: 'Source Serif 4', Georgia, serif; }
.content.noticia-importada .ql-font-roboto-mono { font-family: 'Roboto Mono', ui-monospace, monospace; }
.content.noticia-importada pre.ql-syntax,
.content.noticia-importada .ql-code-block-container {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  overflow-x: auto;
  margin: 1rem 0;
  font-size: 0.92rem;
  line-height: 1.5;
}
body.portal-white .content.noticia-importada pre.ql-syntax,
body.portal-white .content.noticia-importada .ql-code-block-container {
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Notícias importadas (RSS) - texto formatado e justificado */
.content.noticia-importada p {
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.content.noticia-importada p:last-child { margin-bottom: 0; }
.content.noticia-importada p.noticia-fonte {
  text-align: left;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.content.noticia-importada p.noticia-fonte a {
  color: var(--accent);
  font-weight: 600;
}

.noticia-comentarios {
  border-top: 1px solid var(--border);
}
.noticia-comentarios-titulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}
.noticia-comentarios-titulo .comentarios-count {
  color: var(--accent);
  font-weight: 400;
  margin-left: 0.25rem;
}
.form-comentario {
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}
.form-comentario-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.form-comentario-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 575px) {
  .form-comentario-row { grid-template-columns: 1fr; }
}
.form-comentario-input {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #fff;
  transition: border-color 0.2s;
}
.form-comentario-input:focus {
  outline: none;
  border-color: var(--accent);
}
.form-comentario-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.form-comentario-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #fff;
  resize: vertical;
  min-height: 100px;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.form-comentario-textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-comentario-textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.form-comentario-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-comentario-btn:hover {
  background: var(--accent-hover);
}
.form-comentario-result {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}
.lista-comentarios {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.comentario-item {
  background: rgba(0,0,0,0.35);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
}
.comentario-item-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.comentario-item-nome {
  color: var(--accent);
  font-size: 0.95rem;
}
.comentario-item-data {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.comentario-item-texto {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin: 0;
}

/* Admin */
.admin-sidebar {
  background: var(--bg-darker);
  min-height: calc(100vh - 56px);
  border-right: 1px solid var(--border);
}
.admin-sidebar .nav-link {
  color: var(--text-muted);
  padding: 0.6rem 1rem;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  color: var(--accent);
  background: rgba(196, 30, 58, 0.1);
}
.table-dark {
  --bs-table-bg: rgba(0,0,0,0.3);
  --bs-table-border-color: var(--border);
}

/* ===== Botão WhatsApp flutuante ===== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, background 0.2s;
  font-size: 1.75rem;
  text-decoration: none;
}
.whatsapp-float-btn:hover {
  background: #20ba5a;
  color: #fff;
  transform: scale(1.05);
}

/* ===== Player flutuante + painel ===== */
.radio-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent) 50%, transparent);
  transition: transform 0.2s, background 0.2s;
}
.radio-float-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

/* Equalizador animado - 4 barras */
.radio-eq {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 24px;
}
.radio-eq-bar {
  width: 5px;
  background: #fff;
  border-radius: 2px;
  animation: radio-eq-pulse 0.6s ease-in-out infinite alternate;
}
.radio-eq-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.radio-eq-bar:nth-child(2) { height: 18px; animation-delay: 0.1s; }
.radio-eq-bar:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.radio-eq-bar:nth-child(4) { height: 14px; animation-delay: 0.3s; }
@keyframes radio-eq-pulse {
  from { transform: scaleY(0.4); }
  to { transform: scaleY(1); }
}

/* Painel deslizante - overlay não bloqueia cliques para permitir navegar */
.radio-player-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.radio-player-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.radio-player-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background: var(--bg-darker);
  border-left: 1px solid var(--border);
  z-index: 10000;
  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.5);
}
.radio-player-panel.visible {
  transform: translateX(0);
}
.radio-player-panel .radio-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.radio-panel-close {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--accent);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.radio-panel-close:hover {
  background: var(--accent-hover);
}
.radio-panel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  letter-spacing: 0.05em;
}
.radio-player-panel .radio-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.25rem;
}
/* Disco (atrás) + capa (na frente) - estilo toca-disco */
.radio-disco-wrap {
  position: relative;
  width: 260px;
  height: 285px;
  margin: 0 auto;
}
.radio-disco {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.radio-disco-wrap.playing .radio-disco {
  animation: radio-disk-spin 3s linear infinite;
}
.radio-disco-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes radio-disk-spin {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}
.radio-capa {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  z-index: 2;
}
.radio-capa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.radio-capa-placeholder {
  color: var(--text-muted);
  font-size: 2.5rem;
}

.radio-panel-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}
.radio-logo-placeholder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
}
.radio-logo-placeholder i {
  font-size: 2rem;
  color: var(--accent);
}
.radio-play-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.radio-btn-play {
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.radio-btn-play i {
  pointer-events: none;
}
.radio-btn-play:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}
.radio-btn-play.playing {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 40%, transparent);
}
.radio-recent-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.75rem;
  text-align: center;
}
.radio-recent-desc {
  margin-bottom: 1rem;
}
.radio-recent-list {
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.radio-recent-list::-webkit-scrollbar {
  display: none;
}
.radio-recent-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  align-items: flex-start;
}
.radio-recent-item.radio-recent-empty {
  background: transparent;
  padding: 0.5rem 0;
}
.radio-recent-capa {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
}
.radio-recent-capa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.radio-recent-capa span {
  color: var(--text-muted);
  font-size: 1.5rem;
}
.radio-recent-info {
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.radio-recent-titulo {
  color: #fff;
  display: block;
  font-weight: 600;
}
.radio-recent-artista {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}
.radio-volume {
  padding: 0 0.25rem;
  width: 100%;
}
.radio-volume .d-flex {
  width: 100%;
}
.radio-volume-icon {
  color: var(--accent);
  font-size: 1.1rem;
}
.radio-volume-slider {
  flex: 1;
  width: 100%;
  min-width: 0;
  height: 6px;
  --bs-form-range-thumb-bg: var(--accent);
  --bs-form-range-thumb-border: 0;
  --bs-form-range-track-bg: rgba(255,255,255,0.2);
  accent-color: var(--accent);
}
.radio-volume-slider::-webkit-slider-thumb {
  background: var(--accent) !important;
}
.radio-volume-slider::-moz-range-thumb {
  background: var(--accent) !important;
}
.radio-app-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.radio-app-icon:hover {
  background: var(--accent);
  color: #fff;
}

/* Toggle menu mobile - sem borda, ícone branco (3 traços visíveis em fundo escuro) */
.menu-toggle-mobile.navbar-toggler,
.navbar-toggler.border-0 {
  border: none !important;
  box-shadow: none !important;
  outline: none;
  padding: 0.5rem;
}
.menu-toggle-mobile.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none;
}
.menu-toggle-mobile .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Refinamentos Mobile ===== */
@media (max-width: 991px) {
  .header-top-inner {
    padding: 0.85rem 0;
    min-height: auto;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .logo-pick { width: 40px; height: 40px; font-size: 1.05rem; }
  .logo-name { font-size: 1.1rem; }
  .logo-freq-tag { font-size: 0.75rem; padding: 2px 6px; }
  .logo-by { font-size: 0.58rem; }
  .site-logo-img { max-height: 56px; }
  .social-links a { font-size: 1rem; }
  .social-links { gap: 0.75rem; }
  .main-nav .container { padding-left: 12px; padding-right: 12px; }
  .main-nav:not(:has(.navbar-collapse.show)) {
    min-height: 0;
    padding: 0;
  }
  .main-nav:not(:has(.navbar-collapse.show)) .container {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 0;
  }
  .main-nav .nav-link { padding: 0.5rem 0.6rem; font-size: 1.1rem; }
  .main-nav .navbar-collapse {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0;
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 1rem));
  }
  .main-nav .navbar-nav { flex-direction: column; }
  .main-nav .navbar-nav .nav-item { width: 100%; }
  .main-nav .navbar-nav .nav-link { border-top: none; border-left: 3px solid transparent; padding: 0.65rem 1rem; }
  .main-nav .navbar-nav .nav-link:hover,
  .main-nav .navbar-nav .nav-item.dropdown.show .nav-link { border-left-color: var(--accent); }
  .main-nav .dropdown-menu { position: static !important; }
  /* Oculta botão \"Abrir Player\" apenas no mobile */
  .btn-player-block {
    display: none !important;
  }
  .btn-player-text strong { font-size: 0.7rem; }
  .btn-player-sub { font-size: 0.55rem; }
  .btn-player-inner i { font-size: 1rem; }
  .news-section { padding: 35px 0; }
  .news-section-title { font-size: 2rem; }
  .section-title-galeria { font-size: 2rem; }
  .hero-slide,
  .hero-slide-img,
  .hero-slide-link { min-height: 220px; }
  .hero-slide-img {
    background-size: contain;
    background-position: top center;
    background-color: #0d0d0d;
  }
  .radio-player-panel { max-width: 100%; }
  .radio-disco-wrap { width: 200px; height: 230px; }
  .radio-disco { width: 160px; height: 160px; bottom: -20px; }
  .radio-capa { width: 170px; height: 170px; }
  .footer-section-wrap { padding-left: 15px; padding-right: 15px; }
  .footer-col-logo { max-height: 50px; }
  .footer-title { font-size: 1.25rem; }
}

@media (max-width: 767px) {
  .galeria-mosaico-pagina { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .site-wrap .container { padding-left: 15px; padding-right: 15px; }
  .header-top-inner { padding: 0.6rem 0; }
  .logo-block { flex-wrap: wrap; }
  .logo-pick { width: 36px; height: 36px; font-size: 0.95rem; }
  .logo-name { font-size: 1.05rem; }
  .logo-freq-tag { font-size: 0.7rem; padding: 2px 5px; }
  .logo-by { font-size: 0.52rem; }
  .site-logo-img { max-height: 50px; }
  .social-links { gap: 0.5rem; }
  .social-links a { font-size: 0.95rem; }
  .news-section { padding-top: 12px; }
  .news-section .news-grid,
  .news-section .news-slider,
  .news-section .news-slide .news-slider {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .news-slider-track { flex-direction: column; }
  .news-slide { flex: 0 0 100%; }
  .home-three-cols .home-block-title { font-size: 1.15rem; }
  .home-block-video .video-destaque-wrap { min-height: 200px; }
  .galeria-mosaico { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .section-title-galeria { font-size: 1.75rem; margin-bottom: 1rem; }
  .top10-block .top10-item { flex-direction: row; }
  .top10-capa { width: 44px; height: 44px; flex-shrink: 0; }
  .top10-info { font-size: 0.85rem; }
  .footer-cols-row .col-6 { flex: 0 0 100%; max-width: 100%; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .radio-float-btn {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    right: max(16px, env(safe-area-inset-right, 16px));
    width: 52px;
    height: 52px;
  }
  .whatsapp-float-btn {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    left: max(16px, env(safe-area-inset-left, 16px));
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
  .radio-eq-bar { width: 4px; }
  .radio-player-panel .radio-panel-body { padding: 1rem 1rem; }
  .radio-disco-wrap { width: 160px; height: 200px; }
  .radio-disco { width: 140px; height: 140px; bottom: -15px; }
  .radio-capa { width: 140px; height: 140px; }
  .radio-btn-play { width: 50px; height: 50px; font-size: 1.4rem; }
  .radio-recent-capa { width: 36px; height: 36px; }
  .radio-recent-capa span { font-size: 1rem; }
  .radio-recent-item { padding: 0.5rem 0.6rem; gap: 0.5rem; }
  .radio-recent-titulo { font-size: 0.8rem; }
  .radio-recent-artista { font-size: 0.75rem; }
  .page-title { font-size: 1.5rem; }
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next { width: 50px; }
  .hero-slider .hero-arrow .bi-chevron-left,
  .hero-slider .hero-arrow .bi-chevron-right { font-size: 2.5rem; }
  .btn-player-block { padding: 0.45rem 0.75rem; }
  .btn-player-text strong { font-size: 0.65rem; }
  .btn-player-inner i { font-size: 0.95rem; }
}

@media (max-width: 575px) {
  .galeria-mosaico-pagina { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .header-top .container { padding-left: 12px; padding-right: 12px; }
  .logo-pick { width: 32px; height: 32px; font-size: 0.9rem; }
  .logo-name { font-size: 0.95rem; }
  .logo-fm { font-size: 0.85rem; }
  .logo-freq-tag { font-size: 0.65rem; padding: 2px 4px; }
  .logo-by { font-size: 0.5rem; }
  .site-logo-img { max-height: 44px; }
  .social-links a { font-size: 0.9rem; }
  .social-links { gap: 0.45rem; }
  .btn-player-block { min-height: 36px; padding: 0.4rem 0.65rem; }
  .btn-player-inner { gap: 0.4rem; }
  .btn-player-text strong { font-size: 0.65rem; }
  .btn-player-sub { display: none; }
  .btn-player-inner i { font-size: 0.9rem; }
  .news-section { padding: 28px 0; }
  .news-section-title { font-size: 1.75rem; }
  .news-card-v-body { padding: 0.85rem; }
  .news-card-v-title { font-size: 1rem; -webkit-line-clamp: 2; }
  .galeria-mosaico { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .galeria-ver-todas { font-size: 0.9rem; }
  .radio-disco-wrap { width: 140px; height: 180px; }
  .radio-disco { width: 120px; height: 120px; }
  .radio-capa { width: 120px; height: 120px; }
  .radio-capa-placeholder { font-size: 1.8rem; }
  .radio-float-btn { bottom: 12px; right: 12px; width: 48px; height: 48px; }
  .whatsapp-float-btn {
    bottom: max(12px, env(safe-area-inset-bottom, 12px));
    left: max(12px, env(safe-area-inset-left, 12px));
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .radio-recent-list { max-height: 160px; }
  .radio-app-icon { width: 34px; height: 34px; font-size: 1rem; }
  .radio-float-btn {
    bottom: max(12px, env(safe-area-inset-bottom, 12px));
    right: max(12px, env(safe-area-inset-right, 12px));
  }
}

/* ===== Home Portal de Notícias (modelo) ===== */
.portal-random-two-cols .portal-rnd-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.portal-random-two-cols .portal-rnd-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
}
.portal-random-two-cols .portal-rnd-title {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: #111;
}

@media (max-width: 767px) {
  .portal-random-two-cols .portal-rnd-title {
    font-size: 1.55rem;
  }
  .portal-random-two-cols .portal-rnd-img {
    height: 195px;
  }
  .portal-random-two-cols .portal-rnd-h {
    font-size: 1.12rem;
  }
  .portal-random-two-cols .portal-rnd-preview {
    font-size: 0.92rem;
  }
}
.portal-random-two-cols .portal-rnd-all {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: var(--accent);
}

.portal-random-two-cols .portal-rnd-divider {
  height: 7px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
  overflow: hidden;
  width: clamp(150px, 55%, 260px);
  margin: 0 0 0.85rem 0;
}
.portal-random-two-cols .portal-rnd-divider > span {
  display: block;
  height: 100%;
  width: 60%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.0) 45%, rgba(255,255,255,0.15)),
              var(--accent);
  transform: translateX(-110%);
  animation: portalRndBarIn 1.2s cubic-bezier(.2,.9,.2,1) 0.12s forwards;
}
@keyframes portalRndBarIn {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(140%); }
}
.portal-random-two-cols .portal-rnd-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.portal-random-two-cols .portal-rnd-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}
.portal-random-two-cols .portal-rnd-img {
  position: relative;
  width: 100%;
  height: 215px;
  background: rgba(0,0,0,0.04);
}
.portal-random-two-cols .portal-rnd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portal-random-two-cols .portal-rnd-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.35);
  font-size: 1.8rem;
}
.portal-random-two-cols .portal-rnd-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--cat-color, var(--accent));
  color: #fff;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  padding: 5px 10px;
  border-radius: 999px;
}
.portal-random-two-cols .portal-rnd-body {
  padding: 1.0rem 1.0rem 1.05rem 1.0rem;
}
.portal-random-two-cols .portal-rnd-h {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.25;
  color: rgba(0,0,0,0.86);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portal-random-two-cols .portal-rnd-preview {
  margin: 0.55rem 0 0 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  color: rgba(0,0,0,0.66);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.portal-random-two-cols .portal-rnd-side {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 1rem;
}
.portal-random-two-cols .portal-rnd-side-title {
  margin: 0 0 0.9rem 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: rgba(0,0,0,0.82);
  padding-bottom: 0.55rem;
  border-bottom: 2px solid rgba(0,0,0,0.08);
}
.portal-random-two-cols .portal-rnd-ads {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.portal-random-two-cols .portal-ml-wrap {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.portal-random-two-cols .portal-ml-title {
  margin: 0 0 0.75rem 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: rgba(0,0,0,0.82);
}
.portal-random-two-cols .portal-ml-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.portal-random-two-cols .portal-ml-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
}
.portal-random-two-cols .portal-ml-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portal-random-two-cols .portal-ml-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portal-random-two-cols .portal-ml-ph {
  color: rgba(0,0,0,0.35);
  font-size: 1.1rem;
}
.portal-random-two-cols .portal-ml-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.portal-random-two-cols .portal-ml-h {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.22;
  color: rgba(0,0,0,0.86);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.portal-random-two-cols .portal-ml-sub {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(0,0,0,0.58);
}
.portal-random-two-cols .portal-ml-item:hover .portal-ml-h {
  color: var(--accent);
}
.portal-random-two-cols .portal-rnd-ad {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}
.portal-random-two-cols .portal-rnd-ad img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  background: #d0d0d0;
  display: block;
}

/* 3ª coluna (lista de títulos) */
body.portal-white .portal-col3-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 1rem;
}
body.portal-white .portal-col3-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
body.portal-white .portal-col3-title {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: rgba(0,0,0,0.86);
  padding-bottom: 0.55rem;
  border-bottom: 2px solid rgba(0,0,0,0.08);
  width: 100%;
}
body.portal-white .portal-col3-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body.portal-white .portal-col3-item {
  text-decoration: none;
  display: block;
}
body.portal-white .portal-col3-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cat-color, var(--accent));
  color: #fff;
  margin-bottom: 0.5rem;
}
body.portal-white .portal-col3-h {
  display: block;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.32rem;
  line-height: 1.12;
  color: rgba(0,0,0,0.88);
}
body.portal-white .portal-col3-preview {
  display: block;
  margin-top: 0.45rem;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  color: rgba(0,0,0,0.62);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.portal-white .portal-col3-item:hover .portal-col3-h {
  color: var(--accent);
}
body.portal-white .portal-col3-empty {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
}

@media (max-width: 767px) {
  .portal-home-videos {
    padding-top: 2.7rem !important;
    padding-bottom: 2.95rem !important;
  }
  .portal-home-videos .portal-home-videos-head {
    margin-bottom: 1.1rem;
  }
  .portal-home-videos .portal-home-video-frame {
    height: auto !important;
    min-height: 0 !important;
  }
  .portal-home-videos .portal-home-video-caption {
    min-height: 3.0em;
    padding: 0.6rem 0.85rem 1.35rem;
    line-height: 1.18;
  }
}

/* Sessão de vídeos (home portal) */
.portal-home-videos {
  background: var(--videos-bg, #000);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: block;
  margin-top: 0;
  margin-bottom: 0 !important;
  padding-top: 3.35rem !important;
  padding-bottom: 3.65rem !important;
}

/* Página de vídeos: não usar full-bleed */
.portal-videos-page .portal-home-videos.portal-videos-list {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: var(--videos-bg, #fff) !important;
}
.portal-home-videos .portal-home-videos-head {
  margin-bottom: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.portal-home-videos .portal-home-videos-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 0;
}
.portal-home-videos .portal-home-videos-title {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  color: #fff;
}
.portal-home-videos .portal-videos-divider {
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  overflow: hidden;
  width: clamp(140px, 55%, 250px);
}
.portal-home-videos .portal-videos-divider > span {
  display: block;
  height: 100%;
  width: 60%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.0) 45%, rgba(255,255,255,0.18)),
              var(--accent);
  transform: translateX(-110%);
  animation: portalRndBarIn 1.2s cubic-bezier(.2,.9,.2,1) 0.12s forwards;
}

.portal-home-videos .portal-home-videos-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.portal-home-videos .portal-home-videos-follow:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}
.portal-home-videos .portal-home-videos-follow i {
  color: #fff;
}

.portal-home-videos .portal-home-videos-all-wrap {
  display: flex;
  justify-content: center;
}
.portal-home-videos .portal-home-videos-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  transition: transform .15s ease, filter .15s ease;
}
.portal-home-videos .portal-home-videos-all:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  color: #fff;
}
.portal-home-videos .portal-home-video-item {
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.portal-home-videos .portal-home-video-item:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 65%, #000 0%);
  box-shadow: 0 16px 28px rgba(0,0,0,0.18);
}
.portal-home-videos .portal-home-video-frame {
  position: relative;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #ffffff;
  overflow: hidden;
}
.portal-home-videos .portal-home-video-frame img,
.portal-home-videos .portal-home-video-frame iframe,
.portal-home-videos .portal-home-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.portal-home-videos .portal-home-video-frame img {
  object-fit: cover;
  object-position: center;
}
.portal-home-videos .portal-home-video-frame img {
  transition: transform .45s ease;
  transform-origin: center center;
}
.portal-home-videos .portal-home-video-item:hover .portal-home-video-frame img {
  transform: scale(1.01);
}
.portal-home-videos .portal-home-video-ph {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 2.2rem;
}
.portal-home-videos .portal-home-video-play {
  position: absolute;
  inset: auto auto 10px 10px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 12px 22px rgba(0,0,0,0.35);
}
.portal-home-videos .portal-home-video-caption {
  padding: 0.7rem 0.95rem 1.55rem;
  margin-top: 0.05rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: transparent;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(0,0,0,0.86);
  line-height: 1.22;
  min-height: 3.25em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Sessão Instagram (home portal) */
.portal-home-instagram {
  background: #fff;
}
.portal-home-instagram .portal-home-instagram-head {
  margin-bottom: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.portal-home-instagram .portal-home-instagram-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 0;
}
.portal-home-instagram .portal-home-instagram-title {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  color: rgba(0,0,0,0.88);
}
.portal-home-instagram .portal-instagram-divider {
  height: 7px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
  overflow: hidden;
  width: clamp(140px, 55%, 250px);
}
.portal-home-instagram .portal-instagram-divider > span {
  display: block;
  height: 100%;
  width: 60%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.0) 45%, rgba(255,255,255,0.18)), var(--accent);
  transform: translateX(-110%);
  animation: portalRndBarIn 1.2s cubic-bezier(.2,.9,.2,1) 0.12s forwards;
}
.portal-home-instagram .portal-home-instagram-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.85);
  text-decoration: none;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.portal-home-instagram .portal-home-instagram-follow:hover {
  transform: translateY(-1px);
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.92);
}
.portal-home-instagram-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.65rem;
}
.portal-home-instagram-item {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: #f3f3f3;
  aspect-ratio: 1 / 1;
  min-height: 0;
}
.portal-home-instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .2s ease;
}
.portal-home-instagram-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.48) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity .18s ease;
}
.portal-home-instagram-item:hover img {
  transform: scale(1.05);
}
.portal-home-instagram-item:hover .portal-home-instagram-overlay {
  opacity: 1;
}
.portal-home-instagram-profile-card {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  background: rgba(0,0,0,0.02);
  border: 1px dashed rgba(0,0,0,0.12);
  transition: background 0.2s, border-color 0.2s;
}
.portal-home-instagram-profile-card:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.2);
}
.portal-home-instagram-profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--accent, #c4242a);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.portal-home-instagram-profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portal-home-instagram-profile-text {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  color: var(--accent, #c4242a);
  font-size: 1rem;
}
.portal-home-instagram-profile-card:hover .portal-home-instagram-profile-text {
  text-decoration: underline;
}
.portal-home-instagram-loading,
.portal-home-instagram-empty {
  grid-column: 1 / -1;
  border: 1px dashed rgba(0,0,0,0.2);
  border-radius: 12px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.65);
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  background: rgba(0,0,0,0.02);
  text-align: center;
  padding: 0.9rem;
}

@media (max-width: 991px) {
  .portal-home-instagram-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .portal-home-instagram .portal-home-instagram-head {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .portal-home-instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Player custom (modal) */
body.portal-video-open {
  overflow: hidden;
}
.portal-video-modal {
  position: fixed;
  inset: 0;
  z-index: 12000; /* acima do Smart Player (10050) e do menu lateral (~10991) */
  display: none;
}
.portal-video-modal.is-open {
  display: block;
}
.portal-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
.portal-video-modal-dialog {
  position: relative;
  width: min(1100px, calc(100vw - 36px));
  margin: 4vh auto 0;
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 26px 52px rgba(0,0,0,0.45);
}
.portal-video-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  z-index: 2;
}
.portal-video-modal-frame {
  aspect-ratio: 16 / 9;
}
.portal-video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.portal-random-two-cols .portal-rnd-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.portal-random-two-cols .portal-rnd-pagebtn {
  text-decoration: none;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.05);
  color: rgba(0,0,0,0.75);
}
.portal-random-two-cols .portal-rnd-pagebtn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.portal-random-two-cols .portal-rnd-pagestat {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.55);
}

/* Filtro de categoria (página de notícias por categoria) */
.portal-news-cat-page .home-filter-cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}
.portal-news-cat-page .portal-cat-filter-btn {
  margin: 0 !important; /* evita desalinhamento por mb-*/ 
  border-radius: 100px !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.portal-cat-filter-btn {
  border-color: var(--cat-color, var(--accent)) !important;
  color: var(--cat-color, var(--accent)) !important;
  background: transparent !important;
  font-weight: 800;
}
.portal-cat-filter-btn:hover {
  background: var(--cat-color, var(--accent)) !important;
  color: #fff !important;
}
.portal-cat-filter-btn.is-active {
  background: var(--cat-color, var(--accent)) !important;
  color: #fff !important;
}

/* Leitura de notícia: título, prévia, compartilhar, lateral */
.noticia-leitura-page .noticia-btn-voltar {
  border-radius: 100px;
}
.noticia-leitura-page .noticia-leitura-titulo {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: #111;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  border-bottom: none;
  padding-bottom: 0;
}
.noticia-leitura-page .noticia-leitura-resumo {
  color: rgba(0, 0, 0, 0.65);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.noticia-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 1.25rem;
}
.noticia-leitura-page .noticia-share-row .noticia-share {
  margin-bottom: 0;
}
.noticia-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #f2f2f2;
  color: #444;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}
.noticia-share-btn:hover {
  background: #e8e8e8;
  color: #222;
  transform: translateY(-1px);
}
.noticia-share-fb {
  color: #1877f2;
}
.noticia-share-wa {
  color: #25d366;
}
.noticia-leitura-page .noticia-share-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 1.25rem;
}
.noticia-audio-leitura {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem 0.6rem;
  flex: 0 1 auto;
}
.noticia-audio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 1.1rem;
  height: 44px;
  min-height: 44px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  background: #fff;
  color: rgba(0, 0, 0, 0.82);
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.noticia-audio-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.noticia-audio-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
.noticia-audio-btn .bi-play-fill {
  font-size: 1.15rem;
  color: var(--accent);
}
.noticia-audio-btn .bi-pause-fill {
  font-size: 1.15rem;
  color: var(--accent);
}
.noticia-audio-btn-stop {
  padding: 0;
  min-width: 44px;
  width: 44px;
  color: rgba(0, 0, 0, 0.55);
}
.noticia-audio-btn-stop:hover {
  color: var(--accent);
}
.noticia-audio-status {
  flex: 0 1 auto;
  margin-left: 0;
  line-height: 1.2;
  max-width: min(200px, 38vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .noticia-leitura-page .noticia-share-row {
    row-gap: 0.75rem;
  }
  .noticia-leitura-page .noticia-share-row .noticia-audio-leitura {
    width: 100%;
    flex-wrap: wrap;
  }
  .noticia-audio-status {
    max-width: 100%;
    white-space: normal;
    order: 3;
    flex-basis: 100%;
  }
}
.noticia-leitura-page .noticia-leitura-hero-img {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.noticia-leitura-page .noticia-leitura-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.noticia-leitura-page .noticia-fotos-extra .noticia-fotos-extra-link {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  background: rgba(0, 0, 0, 0.03);
}
.noticia-leitura-page .noticia-fotos-extra-img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.noticia-leitura-page .noticia-fotos-extra-link:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.noticia-leitura-page .content.noticia-importada {
  color: #222;
}
.noticia-leitura-page .content.noticia-importada p.noticia-fonte a {
  color: var(--accent);
}
/* Comentários — visual alinhado ao portal (leitura de notícia) */
.noticia-leitura-page .noticia-comentarios--portal {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.75rem !important;
  margin-top: 2.5rem !important;
}
.noticia-leitura-page .noticia-comentarios-head {
  margin-bottom: 1.25rem;
}
.noticia-leitura-page .noticia-comentarios--portal .noticia-comentarios-titulo {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.88);
  margin: 0 0 0.35rem 0;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.noticia-leitura-page .noticia-comentarios--portal .comentarios-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.65rem;
  height: 1.65rem;
  padding: 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 100px;
  margin-left: 0;
}
.noticia-leitura-page .noticia-comentarios-sub {
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.52);
  margin: 0;
  line-height: 1.4;
}
.noticia-leitura-page .noticia-comentarios-empty {
  font-size: 0.92rem;
  padding: 1rem 1.1rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  margin-bottom: 1.25rem;
}
.noticia-leitura-page .noticia-comentarios--portal .lista-comentarios {
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.noticia-leitura-page .noticia-comentarios--portal .comentario-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  border-left: 3px solid var(--accent);
}
.noticia-leitura-page .noticia-comentarios--portal .comentario-item-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0.04));
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
}
.noticia-leitura-page .noticia-comentarios--portal .comentario-item-body {
  min-width: 0;
  flex: 1;
}
.noticia-leitura-page .noticia-comentarios--portal .comentario-item-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.45rem;
}
.noticia-leitura-page .noticia-comentarios--portal .comentario-item-nome {
  color: rgba(0, 0, 0, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}
.noticia-leitura-page .noticia-comentarios--portal .comentario-item-data {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 500;
  white-space: nowrap;
}
.noticia-leitura-page .noticia-comentarios--portal .comentario-item-texto {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.72);
  margin: 0;
}
/* Formulário — card claro */
.noticia-leitura-page .form-comentario--portal {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.35rem 1.35rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.noticia-leitura-page .form-comentario--portal .form-comentario-label {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.82);
  margin: 0 0 1rem 0;
}
.noticia-leitura-page .form-comentario--portal .form-comentario-row {
  gap: 0.85rem;
}
.noticia-leitura-page .form-comentario--portal .form-comentario-input {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #111;
  border-radius: 10px;
  padding: 0.65rem 0.95rem;
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.noticia-leitura-page .form-comentario--portal .form-comentario-input::placeholder {
  color: rgba(0, 0, 0, 0.38);
}
.noticia-leitura-page .form-comentario--portal .form-comentario-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.noticia-leitura-page .form-comentario--portal .form-comentario-textarea {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #111;
  border-radius: 10px;
  padding: 0.75rem 0.95rem;
  min-height: 110px;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.noticia-leitura-page .form-comentario--portal .form-comentario-textarea::placeholder {
  color: rgba(0, 0, 0, 0.38);
}
.noticia-leitura-page .form-comentario--portal .form-comentario-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.noticia-leitura-page .form-comentario--portal .form-comentario-btn {
  width: 100%;
  border-radius: 100px;
  padding: 0.7rem 1.25rem;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .noticia-leitura-page .form-comentario--portal .form-comentario-btn {
    width: auto;
    min-width: 200px;
  }
}
.noticia-leitura-page .form-comentario--portal .form-comentario-result {
  margin-top: 0.85rem;
  font-size: 0.88rem;
}

/* Enquete na barra lateral */
.portal-enquete-side .form-check-input {
  accent-color: var(--accent, var(--accent-hover));
}
.portal-enquete-side .btn {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
}
.portal-enquete-side .btn {
  border-radius: 100px !important;
}

/* ===== Player smart (Topo/Rodapé) ===== */
.radio-smart-bar {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10050;
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 50px;
  overflow: hidden;
}

/* Ondas de rádio atrás do botão */
.radio-smart-bar::before {
  content: '';
  position: absolute;
  inset: -30px;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-radial-gradient(
      circle at 50% 50%,
      color-mix(in srgb, var(--accent) 52%, transparent) 0 1px,
      rgba(255,255,255,0) 1px 15px
    );
  opacity: 0.72;
  filter: none;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.58) 36%, rgba(0,0,0,0.20) 72%, rgba(0,0,0,0.03) 100%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.58) 36%, rgba(0,0,0,0.20) 72%, rgba(0,0,0,0.03) 100%);
  animation: radioWavesSoftPulse 7.5s cubic-bezier(.4,0,.2,1) infinite;
  will-change: opacity, transform, background-position;
}

/* Camada de brilho dinâmico para acabamento premium */
.radio-smart-bar::after {
  content: '';
  position: absolute;
  inset: -32px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 50%,
      color-mix(in srgb, var(--accent) 22%, transparent) 0%,
      color-mix(in srgb, var(--accent) 8%, transparent) 28%,
      rgba(255,255,255,0) 58%);
  mix-blend-mode: multiply;
  opacity: 0.42;
  animation: radioGlowDrift 9.5s ease-in-out infinite;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

@keyframes radioWavesSoftPulse {
  0% {
    opacity: 0.62;
    transform: scale(1);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.024);
  }
  100% {
    opacity: 0.62;
    transform: scale(1);
  }
}

@keyframes radioGlowDrift {
  0% {
    transform: translateX(-1.2%) scale(1);
    opacity: 0.32;
  }
  50% {
    transform: translateX(1.2%) scale(1.02);
    opacity: 0.48;
  }
  100% {
    transform: translateX(-1.2%) scale(1);
    opacity: 0.32;
  }
}

.radio-smart-left,
.radio-smart-text,
.radio-smart-center,
.radio-smart-right {
  position: relative;
  z-index: 1;
}

@media (max-width: 1400px) {
  .radio-smart-bar {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.radio-smart-top {
  top: 0;
}
.radio-smart-rodape {
  bottom: 0;
  border-bottom: none;
  border-top: 1px solid rgba(0,0,0,0.08);
}
body.radio-smart-top {
  padding-top: 0;
}
/* Espaçador de segurança para impedir sobreposição do header no modo topo */
.radio-smart-top-spacer {
  height: 72px;
}
body.radio-smart-bottom {
  padding-bottom: 72px;
}

.radio-smart-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

.radio-smart-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
}

.radio-smart-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}
.radio-smart-cover {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(0,0,0,0.06);
}
.radio-smart-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}
.radio-smart-now {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.78);
  font-weight: 800;
  line-height: 1;
}
.radio-smart-program {
  font-size: 0.83rem;
  color: var(--accent, #c4242a);
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
  max-width: 56vw;
}
.radio-smart-eq {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  flex: 0 0 auto;
}

.radio-smart-vol,
.radio-smart-play-main {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.radio-smart-play-main {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  position: relative;
  z-index: 2;
  background: var(--accent);
  border: none;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}
.radio-smart-play-main i {
  pointer-events: none;
}

.radio-smart-vol:hover {
  background: rgba(0,0,0,0.06);
}

.radio-smart-play-main:hover {
  background: var(--accent-hover);
}


.radio-smart-vol-popover {
  position: static;
  display: block;
  opacity: 0;
  padding: 0.22rem 0;
  border-radius: 100px;
  border: 0;
  background: transparent;
  box-shadow: none;
  width: 0;
  max-width: 0;
  overflow: hidden;
  transform: none;
  transition: max-width 220ms ease, opacity 220ms ease, padding 220ms ease;
  pointer-events: none;
}
.radio-smart-vol-popover.is-open {
  opacity: 1;
  width: 170px;
  max-width: 170px;
  padding: 0.22rem 0.15rem;
  pointer-events: auto;
}

.radio-smart-vol-range {
  width: 100%;
  transform: none;
  height: 22px;
}

.radio-smart-bar .radio-eq-bar {
  background: var(--accent);
}

.radio-smart-bar .radio-smart-vol i,
.radio-smart-bar .radio-smart-pause i {
  font-size: 1.1rem;
}
.radio-smart-bar .radio-smart-play-main i {
  font-size: 1.35rem;
}
.radio-smart-spinner,
.radio-btn-play .radio-smart-spinner {
  animation: radio-spin 0.8s linear infinite;
}
@keyframes radio-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radio-smart-vol-popover input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.radio-smart-vol-range::-webkit-slider-runnable-track {
  height: 6px;
  background: rgba(0,0,0,0.10);
  border-radius: 999px;
}
.radio-smart-vol-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  margin-top: -4px;
}
.home-top-ad .home-top-ad-link {
  position: relative;
}
.home-top-ad .row {
  margin-left: 0;
  margin-right: 0;
}
.home-top-ad .col-12 {
  padding-left: 0;
  padding-right: 0;
}
.home-top-ad .banner-box,
.home-top-ad .home-top-ad-link {
  width: 100%;
}
.home-top-ad-img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  background: #d0d0d0;
}

.home-top-ad .home-top-ad-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130px;
  overflow: hidden;
}

.home-top-ad .banner-box.script-banner {
  width: 100%;
  height: 130px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-portal-grid {
  background: transparent;
}

/* Espaçamento entre os cards da coluna esquerda */
.home-portal-grid .col-lg-3.d-flex.flex-column {
  gap: 18px;
}

@media (max-width: 991px) {
  .home-portal-grid .col-lg-3.d-flex.flex-column {
    gap: 14px;
  }
}

.home-side-news-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(40,40,40,0.85);
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, transform 0.2s;
}
.home-side-news-card:hover {
  background: rgba(55,55,55,0.95);
  transform: translateY(-2px);
}
.home-side-news-img {
  width: 100%;
  height: 140px;
  background: rgba(0,0,0,0.25);
  overflow: hidden;
  position: relative;
}
.home-side-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-side-news-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--text-muted);
  background: rgba(0,0,0,0.35);
}
.home-side-news-body {
  padding: 0.85rem 0.95rem 1rem 0.95rem;
}
.home-side-news-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.home-side-news-title {
  margin: 0.35rem 0 0.4rem 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-side-news-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.home-featured-news-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 420px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: #fff;
}
.home-featured-news-img {
  width: 100%;
  height: 100%;
}
.home-featured-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}
.home-featured-news-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: rgba(0,0,0,0.4);
  color: var(--text-muted);
}
.home-featured-news-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.25rem 1.1rem 1.25rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0.9) 100%);
}
.home-featured-news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}
.home-featured-news-cat {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffefef;
  background: rgba(196, 36, 42, 0.85);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.home-featured-news-date {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.home-featured-news-title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  line-height: 1.05;
  text-transform: uppercase;
}
.home-featured-news-resumo {
  margin: 0.6rem 0 0 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-right-news-list .home-right-news-items {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.home-right-news-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  transition: background 0.2s;
}
.home-right-news-item:hover {
  background: rgba(255,255,255,0.08);
}
.home-right-news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.home-right-news-title {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 991px) {
  .home-featured-news-card { height: 360px; }
  .home-side-news-img { height: 120px; }
}

@media (max-width: 767px) {
  .home-portal-grid .col-lg-3 { order: 2; }
  .home-featured-news-card { height: 320px; }
  .home-featured-news-title { font-size: 1.8rem; }
}

/* ===== Header Portal de Notícias (igual ao modelo) ===== */
.portal-header-bar {
  width: 100%;
  background: var(--accent) !important;
  color: #fff;
}
.portal-header-inner {
  padding: 1.35rem 0;
}
.portal-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.15rem;
  position: relative;
}
.portal-menu-left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: none;
  cursor: pointer;
  appearance: none;
}
.portal-menu-left:hover {
}

/* ===== Menu lateral portal ===== */
body.portal-sidebar-open {
  /* Mantemos a rolagem do site normal para evitar "bug visual" de scrollbar. */
  overflow-y: auto;
  overflow-x: hidden;
}

.portal-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 10990;
}
.portal-sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.portal-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 340px;
  max-width: 85vw;
  background: #faf9f9;
  color: #111;
  transform: translateX(-105%);
  transition: transform 0.25s ease;
  z-index: 10991;
  box-shadow: 6px 0 30px rgba(0,0,0,0.18);
  padding: 1.1rem 1rem 1rem 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.portal-sidebar.open {
  transform: translateX(0);
}

.portal-sidebar-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #111;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
.portal-sidebar-close:hover {
  background: rgba(0,0,0,0.06);
}

.portal-sidebar-title {
  margin: 0 0 0.9rem 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.portal-sidebar-social {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 0.25rem;
  margin: 1rem 0 0 0;
  margin-top: auto;
  background: transparent;
  border-radius: 0;
  border: none;
  padding: 0.3rem 0.2rem 0.65rem 0.2rem;
}
.portal-sidebar-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  color: rgba(0,0,0,0.65);
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}
.portal-sidebar-social-icon {
  font-size: 1.4rem;
  color: var(--accent);
}
.portal-sidebar-social-label {
  display: inline-block;
  color: rgba(0,0,0,0.65);
}
.portal-sidebar-social-link:hover .portal-sidebar-social-label {
  color: rgba(0,0,0,0.9);
}

.portal-sidebar-social-link-disabled {
  opacity: 0.45;
  cursor: default;
}
.portal-sidebar-social-link-disabled:hover {
  background: transparent;
}

.portal-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.portal-sidebar-link {
  display: block;
  padding: 0.75rem 0.9rem;
  text-decoration: none;
  color: rgba(0,0,0,0.65);
  border-radius: 10px;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.portal-sidebar-link:hover {
  background: transparent;
  color: var(--cat-color, rgba(0,0,0,0.85));
}
.portal-sidebar-link-active {
  color: var(--cat-color, var(--accent));
  background: transparent;
}
.portal-menu-icon {
  font-size: 1.85rem;
  color: #fff;
}
.portal-menu-label {
  font-size: 1.0rem;
  font-weight: 600;
  color: #fff;
}

.portal-menu-left:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.portal-logo-center {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 0.25rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.portal-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}
.portal-logo-fallback {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
.portal-cats-row {
  margin-top: 0;
  background: #faf9f9;
  padding: 0.85rem 0;
  margin-left: -15px;
  margin-right: -15px;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.portal-cats-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.0rem;
  min-width: 0;
  flex-wrap: wrap;
}
.portal-cat-link {
  color: rgba(0,0,0,0.55);
  text-decoration: none;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 1rem;
  font-weight: 600;
  opacity: 1;
  white-space: nowrap;
}
.portal-cat-link:hover {
  color: var(--cat-color, var(--accent));
}
.portal-cat-link-active {
  color: var(--cat-color, var(--accent));
  background: rgba(0,0,0,0.0);
  padding: 0;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}
.portal-search-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
  max-width: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.portal-search-form {
  margin: 0;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.25s ease, opacity 0.2s ease;
}
.portal-search-wrap.is-open .portal-search-form {
  max-width: min(240px, 72vw);
  opacity: 1;
}
.portal-search-input {
  display: block;
  width: min(240px, 72vw);
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.4rem 1rem;
  font-size: 0.95rem;
  border-radius: 100px;
  outline: none;
}
.portal-search-input::placeholder {
  color: rgba(255,255,255,0.55);
}
.portal-search-input:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.18);
}
.portal-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.portal-search-btn {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .portal-cats-nav { gap: 0.75rem; }
  .portal-cat-link { font-size: 0.95rem; }
}

@media (max-width: 767px) {
  .portal-header-inner { padding: 0.65rem 0; }
  .portal-logo-img { height: 44px; }
  .portal-logo-fallback { font-size: 1rem; }
  .portal-menu-icon { font-size: 1.35rem; }
  .portal-menu-label { font-size: 0.8rem; }
  .portal-cat-link { font-size: 0.85rem; }
  .portal-cats-nav { justify-content: flex-start; overflow-x: auto; padding-bottom: 6px; gap: 1.3rem; }
  .portal-cats-nav::-webkit-scrollbar { height: 6px; }
  .portal-cats-nav::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 999px; }
  /* No mobile, some apenas a barra abaixo (categorias). */
  .portal-cats-row { display: none !important; }
}

