@font-face {
  font-family: 'Tipo Brasil Rounded';
  src: url('/++plone++ebc.inst2024/TipoBrasilRounded-400Regular.otf');
  font-weight: 400;
}

@font-face {
  font-family: 'Tipo Brasil Rounded';
  src: url('/++plone++ebc.inst2024/TipoBrasilRounded-600Medium.otf');
  font-weight: 600;
}


@font-face {
  font-family: 'Tipo Brasil Rounded';
  src: url('/++plone++ebc.inst2024/TipoBrasilRounded-700SemiBold.otf');
  font-weight: 700;
}

@font-face {
  font-family: 'Tipo Brasil Rounded';
  src: url('/++plone++ebc.inst2024/TipoBrasilRounded-850Bold.otf');
  font-weight: 850;
}

:root {
  --prim-color: #1E3394;
  --prim-color-dark: #1F2B66;
  --prim-color-light: #4960CC;
  --sec-color: #D7EB2F;
  --sec-color-dark: #7E8F00;
  --sec-color-light: #F1F5Ce;
  --ter-color: #0C1A3D;
  --ter-color-dark: #30447A;
  --ter-color-light: #6E83B8;
  --amarelo: #F0BE0A;
  --amarelo-dark: #706A55;
  --amarelo-light: #FFE58F;
  --laranja: #F07D18;
  --laranja-dark: #CC6A15;
  --laranja-light: #FFBE84;
  --salmon: #C95F42;
  --salmon-dark: #855044;
  --salmon-light: #F58B58;
  --vermelho: #CE311A;
  --vermelho-dark: #662525;
  --vermelho-light: #E66565;
  --rosa: #A32189;
  --rosa-dark: #660A53;
  --rosa-light: #CC6AB9;
  --roxo: #532399;
  --roxo-dark: #321E52;
  --roxo-light: #7555A3;
  --petroleo: #0A3D54;
  --petroleo-dark: #022633;
  --petroleo-light: #217BA3;
  --ciano: #1C9C6D;
  --ciano-dark: #106159;
  --ciano-light: #62CC95;
  --lemon: #5ECC6E;
  --lemon-dark: #125C1E;
  --lemon-light: #C4F5CB;
  --cinza: #617A8F;
  --cinza-dark: #314352;
  --cinza-light: #AFCDE6;
  --azul: #2F6AC2;
  --azul-dark: #0F3A7A;
  --azul-light: #58AFED;
  --silver: #85858F;
  --silver-dark: #39393D;
  --silver-light: #E4E4F5;
  --vermelho-gov: #CF321A;
  --azul-gov: #0D448C;
  --amarelo-gov: #E18F02;
  --verde-gov: #077835;
  --preto-gov: #030405;
  --cor-fundo: #f9f9f9;
  --slide-transform: 0;
  --transition: transform 1s;
}

* {
  font-family: 'Tipo Brasil Rounded';
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:hover {
  -webkit-transition:all 300ms ease-out;
	-moz-transition:all 300ms ease-out;
	-o-transition:all 300ms ease-out;
	transition:all 300ms ease-out;
}

body {
  background-color: var(--cor-fundo) !important;
}

main{
  min-height: 800px;
}

a {
  text-decoration: none !important;
  cursor: pointer;
}

a:hover {
  text-decoration: none !important;
}

button {
  outline: none !important;
  cursor: pointer;
}

.content-center {
  max-width: 1170px !important;
  margin: auto !important;
}

.full-width {
  width: 100% !important;
}

.rowflex {
  display: flex;
  align-items: center;
}

.rowflex-full {
  justify-content: space-between;
}

.rowflex-center {
  justify-content: center;
}

.abs-position {
  position: absolute;
}

.rel-position {
  position: relative
}

/*----------------CABEÇALHO--------------*/
header.full-width {
  backdrop-filter: blur(5px);
  background: rgba(12, 26, 61, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 100;
  flex-direction: column;
  height: auto;
  transition: all 1s ease;
}

#header-site-ebc.hidden {
  top: -180px;
}

header .container-header-ebc {
  border-bottom: 1px solid var(--sec-color);
  z-index: 10;
}

header .content-center {
  padding-top: 4px;
  padding-bottom: 4px;
}

header a {
  color: white;
  font-size: 13px;
  line-height: 1.5;
}

header a span {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.veiculo-name span b {
  font-weight: 850;
}

header a:hover,
header a:hover span,
header a:hover b {
  color: var(--sec-color);
	transition:all 0.3s ease;
}

header a:focus {
  color: white;
  outline: none;
}

header .veiculo-name:not(:last-child) {
  margin-right: 20px;
}

header .paginas-internas {
  gap: 20px;
}

header .separador {
  color: white;
  font-weight: 400;
}

.veiculos-container {
  position: relative;
}

.dropdown-mais-veiculos {
  position: absolute;
  background-color: var(--sec-color);
  width: 174px;
  right: 20px;
  top: 100%;
  margin-top: 15px;
  display: none;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.dropdown-mais-veiculos.open {
  display: block;
}

.dropdown-mais-veiculos ul {
  width: 100%;
  margin-bottom: 0;
}

.dropdown-mais-veiculos a {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #121214;
  transition: all 0.3s ease;
}

.dropdown-mais-veiculos a:hover {
  background-color: rgba(18,18,20,0.1);
}

.dropdown-mais-veiculos a:hover {
  color: #121214;
}

.dropdown-mais-veiculos li:not(:last-child) {
  border-bottom: 1px solid rgba(18,18,20,0.1);
}

button.mais-veiculos {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  color: white;
  background: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-right: 20px;
  line-height: 1.5;
}

button.mais-veiculos:hover {
  color: var(--sec-color) !important;
}

button.mais-veiculos:active,
button.mais-veiculos:focus {
  color: white;
}

button.mais-veiculos:hover path {
  fill: var(--sec-color)
}

button.mais-veiculos:active path {
  fill: white;
}

header button {
  background-color: transparent;
  border: none;
  color: var(--sec-color);
  font-weight: 850;
  padding: 8px;
  border-radius: 100px;
}

header button:hover {
  background-color: rgba(0, 0 ,0 , 0.3);
}

header button:active {
  background-color: rgba(0, 0 ,0 , 0.6);;
}

header button:active path {
  stroke: var(--sec-color-dark);
}

header .pesquisa-row {
  background-color: var(--sec-color);
  height: 0;
  top: 49px;
  position: fixed;
  left: 0;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0 ,0 , 0.3);
  opacity: 0;
  z-index: 100;
  transition: all 2s ease;
  color: var(--ter-color);
}

#pesquisa-btn:hover,
#close-search:hover {
  -webkit-transform:scale(1.05);
  -moz-transform:scale(1.05);
  -o-transform:scale(1.05);
  transform:scale(1.05);
}

#pesquisa-btn:active,
#close-search:active {
  -webkit-transform:scale(0.9);
  -moz-transform:scale(0.9);
  -o-transform:scale(0.9);
  transform:scale(0.9);
}

#close-search {
  display: none;
}

#close-search:hover path {
  fill: #E66565;
  stroke: #E66565;
}

#close-search:active path {
  fill: #662525;
  stroke: #662525;
}

.pesquisa-row .texto-exemplo {
  margin-top: 2px;
}

header .input-search  {
  border-radius: 5px;
  padding-left: 16px;
  font-size: 16px;
  font-weight: 600;
  margin-right: 8px;
}

header .input-search:focus {
  color: var(--prim-color);
}

header .pesquisa-row button {
  color: var(--sec-color);
  background-color: var(--ter-color);
  padding: 4px 16px;
}

header .pesquisa-row button:hover {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
}

header .pesquisa-row button:active,
header .pesquisa-row button:active span,
header .pesquisa-row button:active path {
  box-shadow: none;
  color: var(--sec-color-dark);
  -webkit-transition:all 100ms ease-in !important;
	-moz-transition:all 100ms ease-in !important;
	-o-transition:all 100ms ease-in !important;
	transition:all 100ms ease-in !important;
}

header .pesquisa-row button:active,
.carousel-control:active .glyphicon{
  -webkit-transform:scale(0.9);
  -moz-transform:scale(0.9);
  -o-transform:scale(0.9);
  transform:scale(0.9);
}

header .pesquisa-row .content-center {
  height: auto;
}

.menu-toggle {
  width: 30px;
  height: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease-in-out;
  display: none;
}

.bar {
  width: 30px;
  height: 4px;
  background-color: var(--sec-color);
  transition: transform 0.4s ease-in-out;
  border-radius: 100px;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  transform: scaleX(0);
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.bar-div {
  content: "";
  width: 1px;
  height: 32px;
  background-color: var(--sec-color);
  margin: 0 16px 0 8px;
  display: none;
}

.menu-mobile-ebc {
  background-color: var(--prim-color);
  height: calc(100vh - 95px);
  min-height: calc(100svh - 95px);
  border-bottom: 1px solid var(--sec-color);
  flex-direction: column;
  display: none;
  opacity: 0;
  transition: all 1s ease;
}

.menu-mobile-ebc .content-center {
  flex-direction: column;
  height: 100%;
  padding: 16px ;
}

.menu-mobile-ebc .paginas-internas {
  flex-direction: column;
}

.menu-mobile-ebc .paginas-internas >*:not(:last-child) {
  margin-right: 0;
}

.menu-mobile-ebc .paginas-internas >* {
  margin-top: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.menu-mobile-ebc .veiculos-ebc {
  border-bottom: 1px solid var(--prim-color-dark);
  padding-bottom: 8px;
  font-size: 12px;
  flex-wrap: wrap;
}

.menu-mobile-ebc .veiculos-ebc >*:not(:last-child){
  margin-right: 2px;
}

.menu-mobile-ebc .redes-sociais-ebc {
  border-top: 1px solid var(--prim-color-dark);
  padding-top: 8px;
}

.menu-mobile-ebc .redes-sociais-ebc,
.menu-mobile-ebc .redes-sociais-ebc a {
  color: var(--ter-color);
  font-size: 32px;
}

.barra-ao-vivo {
  background: linear-gradient(90deg, #662525 0%, rgba(176, 46, 46, 1) 52.08%, #662525 100%);
  z-index: 10;
  bottom: 0;
  height: 30px;
  color: white;
  display: block; /*none desabilita a barra ao vivo*/
  font-size: 12px;
  display: none; /*enquanto não há notícia ao vivo */
}

.barra-ao-vivo .content-center {
  height: 30px;
}

.signal-life {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background-color: white;
  margin-right: 8px;
  animation: mudarCor 3s linear infinite;
  display: flex;
}

@keyframes mudarCor {
  0% {
    background-color: var(--vermelho-light);
  }
  50% {
    background-color: white;
  }
  100% {
    background-color: var(--vermelho-light);
  }
}

.scroll {
  white-space: nowrap;
  margin: 0 2em;
}

.scroll div {
  gap: 2em;
}

.scroll {
  font-size: 1em;
  color: white;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 0;
  line-height: 10px;
}

.scroll a:hover,
.scroll a:hover b {
  color: white;
}

.RightToLeft {
  animation: RightToLeft 40s infinite linear;
}

.second-line {
  margin-left: 2em
}

@keyframes  RightToLeft {
  from {
    transform: translateX(130%);
  }
  to {
    transform: translateX(-100%);
  }
}


input {
  border: none;
  height: 32px;
  outline: none;
}

.pesquisa-row .texto-exemplo {
  margin-top: 4px;
}

/*----------------CONTEUDO---------------*/

/*----- MANCHETES DA CAPA -----*/

.content {
  height: calc(100vh);
  min-height: calc(100svh);
  width: calc(100vw);
  max-width: 100vw;
  position: relative;
  top:0;
  left: 0;
  overflow: hidden;
}

.slide {
  height: calc(100vh);
  min-height: calc(100svh);
  transition:  0.6s;
  width: calc(100vw);;
}

.slide img {
  width: calc(100vw);
  height: calc(100vh - 8px);
  min-height: calc(100svh - 8px);
  object-fit: cover;
  aspect-ratio: 16 / 9 !important;
}

.slides .agenciaBrasil {
  background-color: #D7EB2F;
}

.slides .radioMec {
  background-color: #C95F42;
}

.slides .radioNacional {
  background-color: #1C9C6D;
}

.slides .tvBrasil {
  background-color: #F0BE0A;
}

.slides {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  width: max-content;
  transition: 1s;
}

#slide1:checked ~ .s1 {
  margin-left: 0;
}

#slide2:checked ~ .s1 {
  margin-left: -25%;
}

#slide3:checked ~ .s1 {
  margin-left: -50%;
}

#slide4:checked ~ .s1 {
  margin-left: -75%;
}

#prev-button,
#next-button {
  position: absolute;
  height: 100%;
  width: 300px;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 11;
}

#prev-button path,
#next-button path {
  opacity: 0.5;
  transition: all 0.6s;
}

#prev-button:hover path,
#next-button:hover path {
  opacity: 1;
}

#prev-button:active path,
#next-button:active path {
  -webkit-transform:scale(0.9);
  -moz-transform:scale(0.9);
  -o-transform:scale(0.9);
  transform:scale(0.9);
  fill: #e2e2e2;
  stroke: #e2e2e2;
}

#prev-button {
  left: 0;
  background: transparent;
}

#prev-button:hover {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.0) 0.22%, rgba(0, 0, 0, 0.50) 99.78%);
}

#next-button {
  right: 0;
  background: transparent;
}

#next-button:hover {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.50) 0.22%, rgba(0, 0, 0, 0.00) 99.78%);
}

.dots {
  position: absolute;
  bottom: 20px;
  color: white;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.dots li {
  list-style: none;
  width: 5px;
  height: 5px;
  background-color: white;
  margin: 8px;
  border-radius: 20px;
  opacity: 0.5;
  transition: 1s;
  cursor: pointer;
}

.dots li.active {
  width: 30px;
  opacity: 1;
  background-color: #D7EB2F;
}

.manchetes {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: #f1f1f1;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.manchetes a {
  color: #f1f1f1;
  margin: 16px;
}

.manchetes li {
  list-style: none;
  width: 100%;
  max-width: 304px;
  min-height: 216px;
  opacity: 0.5;
  transition: 1s;
}

.manchetes li.active,
.manchetes li:hover {
  opacity: 1;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.3) 0%, rgba(27, 27, 27, 0.1) 100%);
}

.manchetes li.active:not(:last-child)::after {
  height: 100%;
}

.manchetes .tvBrasil.active::after {
  content: '';
  height: 100%;
  width: 1px;
  opacity: 1;
  background-color: #f1f1f1;
  transition: 1s;
}

.manchetes li.active img {
  display: none;
}

.manchetes li.active .container-btn,
.manchetes li:hover .container-btn {
  display: flex;
}

.manchetes li.active .manchete-veiculo{
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 28px;
  margin-top: 32px;
}

.manchetes .agenciaBrasil.active a,
.manchetes .agenciaBrasil:hover a,
.manchetes .radioMEC.active a,
.manchetes .radioMEC:hover a,
.manchetes .radioNacional.active a,
.manchetes .radioNacional:hover a,
.manchetes .tvBrasil.active a,
.manchetes .tvBrasil:hover a {
  color: white ;
}

.manchetes li img {
  max-height: 24px;
  object-fit: contain;
}

.manchete-veiculo {
  margin-top: 16px;
}

li.active .manchete-veiculo::before {
  content: "";
  position: absolute;
  top: 24px;
  color: #f1f1f1;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.container-btn {
  display: none;
  justify-content: right;
}

.manchetes li::after {
  content: "";
  width: 1px;
  height: 50%;
  background-color: #f1f1f1;
  transition: 1s;
}

.manchetes .canalGov::after {
  opacity: 0;
}

.buttons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.shade {
  background: linear-gradient(180deg, rgba(8, 8, 9, 0.50) 0%, rgba(8, 8, 9, 0.00) 31.25%, rgba(8, 8, 9, 0.00) 54.69%, rgba(8, 8, 9, 0.85) 100%);
  width: 100%;
  height: calc(100vh - 8px);
  min-height: calc(100svh - 8px);
  position: absolute;
  top: 0;
  left: 0;
}

.container-titulo-veiculo {
  top: 100px;
  z-index: 10;
}

.titulo-veiculo {
  display: flex;
  flex-direction: column;
  color: #f1f1f1;

}

.titulo-veiculo span {
  font-size: 32px;
  font-weight: 850;
  line-height: 38px;
  margin: 8px 0;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.50);
  letter-spacing: 1px;
}

.agenciaBrasil .titulo-veiculo img,
.radioNacional .titulo-veiculo img,
.radioMec .titulo-veiculo img,
.tvBrasil .titulo-veiculo img {
  width: 100%;
  max-width: 370px;
  object-fit: contain;
  height: 64px !important;
  min-height: 40px;
}

.canalGov-capa .titulo-veiculo img {
  max-width: 275px;
}

.radioMec .titulo-veiculo img {
  max-width: 270px;
}

.tvBrasil .titulo-veiculo img {
  max-width: 232px;
}

/*---- redes sociais e frase institucional----*/
.bg-container-redes-sociais {
  background-color: var(--sec-color-dark);
}

.bg-container-redes-sociais .content-center {
  height: 65px;
}

.bg-container-redes-sociais .chamada-mkt {
  color: var(--sec-color-light);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
}

.redes-sociais-ebc a{
  height: 16px;
  margin-right: 8px;
}

.bg-container-redes-sociais .user-name {
  color: var(--sec-color-light);

  font-weight: 600;
}

.bg-container-redes-sociais .user-name b {
  font-weight: 850;
}

.redes-sociais-ebc a path,
.bg-container-redes-sociais .user-name {
  opacity: 80%;
}

.redes-sociais-ebc a:hover path,
.redes-sociais-ebc a:hover ~ .user-name {
  opacity: 100%;
  fill: var(--ter-color);
  color: var(--ter-color);
}

.redes-sociais-ebc a:active path,
.redes-sociais-ebc a:active ~ .user-name {
  fill: var(--ter-color);
  color: var(--ter-color);
  opacity: 40%;
}

/* --------------Página IMPRENSA -----------*/
.conteudo-interno {
  padding-top: 100px;
  color: var(--ter-color)
}

.imprensa {
  align-items: start;
  flex-shrink: 0;
  justify-content: space-between;
}

ul.noticias-imprensa {
  margin-top: 30px;
}

ul.noticias-imprensa li {
  display: flex;
  list-style: none;
  align-items: start;
}

ul.noticias-imprensa li:hover img {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
  filter: brightness(1) saturate(1);
}

ul.noticias-imprensa li:hover .container-texto {
  color: var(--prim-color);
}

ul.noticias-imprensa li:active img {
  box-shadow: none;
}

ul.noticias-imprensa li:active .container-texto {
  color: var(--ter-color);
}

ul.noticias-imprensa li h1.titulo-noticia {
  font-size: 24px;
}

ul.noticias-imprensa li.noticia-destaque h1.titulo-noticia {
  font-size: 32px;
}

ul.noticias-imprensa li a {
  justify-content: left;
  margin: 0;
  padding: 0;
  padding-bottom: 16px;
  align-items: start;
  color: var(--ter-color);
}

ul.noticias-imprensa li:not(:first-child) a {
  padding-top: 16px;
}

ul.noticias-imprensa li.noticia-destaque {
  flex-direction: column;
  align-items: start;

}

.container-texto {
  height: 100%;
  max-height: 200px;
  display: block;
}

ul.noticias-imprensa li.noticia-destaque img {
  width: 50%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-right: 30px;
  filter: brightness(1) saturate(1);
  flex-shrink: 0;
}

ul.noticias-imprensa li img {
  /* width: 25%; */
  width: 225px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-right: 16px;
  border-radius: 5px;
  border-bottom: 8px solid var(--sec-color);
  transition: all 350ms ease;
  filter: brightness(0.9) saturate(0.8);
  flex-shrink: 0;
}

ul.noticias-imprensa li:not(:last-child):after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--silver);
  bottom:0;
  opacity: 0.3;
  position: absolute;
}

.conteudo-interno .container-btn {
  display: flex;
  justify-content: center;
  margin: 30px 0
}

.ver-mais-btn {
  color: var(--prim-color);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--prim-color)
}

.ver-mais-btn b {
  transition: 0s;
}

.ver-mais-btn:hover {
  color: white;
  background-color: var(--prim-color);
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
}

.ver-mais-btn:active {
  color: #f1f1f1;
  background-color: var(--prim-color-dark);
  box-shadow: none;
}

.bloco-noticias {
  margin-right: 30px;
  flex-direction: column;
}

.titulo-pagina {
  height: 56px;
  background-color: var(--sec-color-dark);
  padding: 0 16px;
  color: #f1f1f1;
  border-radius: 5px;
  letter-spacing: 1px;
  font-size: 16px;
}

.titulo-pagina span:first-child::after {
  content: "";
  width: 1px;
  height: 32px;
  background-color: var(--sec-color-light);
  margin: 0 16px;
}

.bloco-banners {
  width: 100%;
  max-width: 280px;
  flex-direction: column;
}

.banner {
  cursor: pointer;
}

.banner img:hover {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
}

.banner img:active {
  box-shadow: none;
}

.bloco-banners .banner {
  margin-bottom: 30px;
}

.banner img {
  width: 100%;
  max-width: 280px;
  border-radius: 5px;
}

/* ------------------ RODAPÉ ------------------*/
.transparencia-bar {
  background-color: var(--sec-color);
}

.transparencia-links {
  margin: 8px 0;
}

.transparencia-bar a:hover {
  color: var(--ter-color);
}

.transparencia-bar .redes-sociais-ebc a path,
.transparencia-bar .bg-container-redes-sociais .user-name {
  opacity: 1;
  color: var(--ter-color);
}

.transparencia-bar a,
.transparencia-bar a:focus {
  color: var(--ter-color);
  text-decoration: none;
}

.paginas-internas ul {
  list-style: none;
}

.transparencia-ebc {
  font-size: 16px;
  font-weight: 700;
}

.transparencia-ebc svg {
  margin-right: 4px;
}

.transparencia-bar .line-divisor {
  height: 32px;
  width: 1px;
  background-color: var(--ter-color);
  margin: 0 16px
}

footer.full-width,
.content-footer,
.rights-ebc {
  background-color: var(--ter-color);
}

.redes-sociais-footer span:first-child {
  margin-right: 16px;
}

.redes-sociais-footer .redes-sociais-ebc a:hover path,
.redes-sociais-footer .redes-sociais-ebc a:hover ~ .user-name {
  opacity: 100%;
  fill: var(--preto-gov);
  color: var(--preto-gov);
}

.line-footer {
  height: 1px;
  background-color: var(--ter-color-dark);
  opacity: 0.3;
}

.content-footer .paginas-internas {
  margin: 30px 0;
  justify-content: center;

}

.content-footer .paginas-internas a {
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.content-footer .paginas-internas a:focus,
.rights-ebc a:focus {
  text-decoration: none;
}

.rights-ebc a:focus {
  color: white;
}

.content-footer .paginas-internas a:not(:last-child) {
  margin-right: 30px;
}

.rights-ebc {
  padding: 30px 0;
  color: white;
  font-size: 12px;
}

.rights-ebc a {
  color: white;
}

.rights-ebc a:hover,
.content-footer .paginas-internas a:hover {
  color: var(--sec-color)
}

.enderecos-ebc {
  color: white;
  margin: 30px 0;
  max-width: 316px;
  width: 100%;
  letter-spacing: 1px;
}

.enderecos-ebc header {
  font-size: 24px;

  font-weight: 850;
  margin-bottom: 30px;
}

.enderecos-ebc ul {
  list-style: none;
}

.enderecos-ebc ul li:not(:last-child) {
  margin-bottom: 30px;
}

.enderecos-ebc ul li .cidade {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.enderecos-ebc ul li .localizacao {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

.content-footer .linha-divisoria {
  margin: 30px;
  width: 1px;
  height: 650px;
  background-color: #f1f1f1;
}

.acesso-info {
  font-size: 12px;
}

.enderecos-ebc header a:hover path{
  fill: var(--sec-color);
}

ul.localizacao-ebc a {
  color: #f1f1f1;
}

ul.localizacao-ebc a:hover {
  color: var(--sec-color);
}

.cep {
  font-size: 12px;
  margin-top: 6px;
}

footer .paginas-internas {
  justify-content: left;
  align-items: start;
}

footer .paginas-internas nav {
  display: flex;
  flex-direction: column;
  margin: 30px;
}

footer .paginas-internas .titulo {
  font-size: 16px;
  font-weight: 850;
  color: white;
  margin-bottom: 8px;
}

footer .paginas-internas nav a {
  font-size: 12px;
  font-weight: 400 !important;
  letter-spacing: 1px;
}

footer .paginas-internas nav a:not(:last-child) {
  margin-bottom: 8px;
}

footer .acesso-info .options{
  column-count: 3;
  column-gap: 53px;
  list-style: none;
}

footer .acesso-info li {
  break-inside: avoid-column;
  max-width: 150px;
}

footer .paginas-internas nav:not(:nth-child(2)) {
  max-width: 150px;
}

footer .acesso-info li:not(:last-child) {
  margin-bottom: 8px;
}



footer .acesso-info a:nth-child(7n + 1) {
  page-break-before: always;
  break-before: column;
}

footer .acesso-info .titulo {
  margin-bottom: 16px;
}

/* ---------- SOBRE A EBC ----------- */
.sobre {
  flex-direction: column;
}

.sobre p {
  margin-top: 30px;
  color: var(--ter-color);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 24px;
}

.sobre a {
  font-weight: 700;
  color: var(--prim-color);
}

.sobre a:hover {
  text-decoration: none;
  color: var(--prim-color-light);
}

.sobre a:active {
  color: var(--prim-color-dark);
}

.sobre nav {
  margin: 30px 0;
}

.sobre nav button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

.sobre nav button img {
  max-width: 280px;
  width: 100%;
  border-radius: 5px;
}

.sobre nav button img:hover {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
}

.sobre nav button img:active {
  box-shadow: none;
}

.sobre .banner img {
  max-width: 100%;
}

.ebc-service {
  background-color: var(--prim-color);
  color: #f1f1f1;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.ebc-service:hover {
  background-color: var(--prim-color-light);
}

.ebc-service:active {
  background-color: var(--prim-color-dark);
}

.ebc-service:after {
  content: '\003E'; /* Unicode character for "plus" sign (+) */
  font-size: 24px;
  color: #f1f1f1;
  float: right;
  margin-left: 16px;
}

/* ------- players -------*/
.container-player {
  color: white;
  font-size: 12px;
  border-radius: 5px;
  overflow: hidden;
}

.container-player button {
  background-color: transparent;
  border: none;
  outline: none;
}

.container-player a {
  color: white;
}

.logo-radio img {
  height: 24px;
}

.player-img img {
  width: 100%;
  max-width: 104px;
  border-radius: 5px;
}

.nome-programa-row {
  margin-top: 8px;
}

.player-screen {
  margin-right: 8px;
}

.content-player-box {
  padding: 16px;
}

.radioMEC-player {
  background-color: var(--salmon);
}

.header-player {
  padding: 8px;
}

.header-player-radios {
  padding: 16px;
  gap: 16px;
  border-bottom: 1px dashed rgba(8, 8, 8, 0.20);
}

.radioMEC-player .header-player::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--salmon-light);
}

.radioNacional-player .header-player::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--ciano-light);
}

.audio-player {
  margin-top: 16px;
}

.timeline-audio {
  content: "";
  height: 10px;
  margin: 0 8px
}

.radioMEC-player .timeline-audio {
  background-color: var(--salmon-dark);
}

.radioNacional-player .timeline-audio {
  background-color: var(--ciano-dark);
}

#play-button, #pause-button, #play-button-nac, #pause-button-nac {
  margin-right: 8px;
}

#pause-button,
#pause-button-nac {
  display: none;
}

.line-volume {
  content: "";
  width: 100%;
  flex-shrink: 0;
  height: 4px;
  margin-left: 2px;
}

.radioMEC-player .line-volume {
  background-color: var(--salmon-dark);
}

.radioNacional-player .line-volume {
  background-color: var(--ciano-dark);
}

#campo-nome-radio,
#campo-nome-radio-nac {
  font-size: 16px;
}

#estacao-radio {
  font-size: 12px;
}

/* Estilo para o menu dropdown (inicialmente oculto) */
.dropdown-content {
  display: none;
  background-color: var(--salmon-dark);
  padding: 10px;
  color: var(--salmon-light);
}

.radioNacional-player .dropdown-content {
  background-color: var(--ciano-dark);
  color: var(--ciano);
}

.radioMEC-player .selecao-radio:hover svg path {
  fill: var(--salmon-light);
}

.radioNacional-player .selecao-radio:hover svg path {
  fill: var(--ciano-light);
}

.selecao-radio:active svg path {
  fill: var(--salmon-dark);
}

.radioNacional-player .selecao-radio:active svg path {
  fill: var(--ciano-dark);
}

.dropdown-content div:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: var(--silver-dark);
  opacity: 0.5;
  left: 0;
  display: flex;
}

.dropdown-content div:hover {
  color: white;
}

.dropdown-content div:active {
  color: var(--salmon);
  transition: 0s;
}

.radioNacional-player .dropdown-content div:active {
  color: var(--ciano);
  transition: 0s;
}

.dropdown-content path {
  fill: var(--salmon-light);
}

.radioNacional-player .dropdown-content path {
  fill: var(--ciano-light);
}

.dropdown-content div:hover path {
  fill: white;
}

.dropdown-content div:active path {
  fill: var(--salmon);
  transition: 0s;
}

.radioNacional-player .dropdown-content div:active path {
  fill: var(--ciano);
}

/* Estilo para os itens do menu */
.dropdown-item {
  padding: 5px;
  cursor: pointer;
}

#progress, #progress-nac {
  width: 0;
  height: 100%;
  transition: 1s;
}

#progress {
  background-color: var(--salmon-light);
}

#progress-nac {
  background-color: var(--ciano-light);
}

input#volume-slider,
input#volume-slider-nac {
  -webkit-appearance: none;
  outline: none;
  border-radius: 9px;
}

.radioMEC-player input#volume-slider {
  background: var(--salmon-dark);
}

.radioNacional-player input#volume-slider-nac {
  background: var(--ciano-dark);
}

#volume-slider::-webkit-slider-thumb,
#volume-slider-nac::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
}

#volume-slider::-moz-range-thumb,
#volume-slider-nac::-moz-range-thumb {
  width: 0;
  height: 0;
  border-radius: 50%;
  cursor: pointer;
}

.radioMEC-player #volume-slider::-webkit-slider-thumb {
  background: var(--salmon-light);
}

.radioMEC-player #volume-slider::-moz-range-thumb {
  background: var(--salmon-light);
}

.radioNacional-player #volume-slider-nac::-webkit-slider-thumb {
  background: var(--ciano-light);
}

.radioNacional-player #volume-slider-nac::-moz-range-thumb {
  background: var(--ciano-light);
}

#unmute-btn, #unmute-btn-nac {
  display: none;
}

.radioNacional-player,
.radioNacional-player .container-dropdown {
  background-color: var(--ciano);
}

.phones path {
  animation: mudarCor 5s linear infinite;
}

@keyframes mudarCor {
  0% {
    fill: rgb(238, 238, 238);
  }
  50% {
    fill: rgba(238, 238, 238, 0.3);
  }
  100% {
    fill: rgb(238, 238, 238);
  }
}

/*-------player canal gov ------*/
.canal-gov-player {
  background-color: var(--ter-color);
  color: white;
  border-radius: 5px;
}

.canal-gov-player header {
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
}

.canal-gov-player .container-video {
  padding: 16px;
}

.canal-gov-player header a::after {
  content: "";
  background-color: white;
  width: 1px;
  height: 40px;
  margin: 0 16px;
}

.canal-gov-player header::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--ter-color-dark);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.5;
}

.canal-gov-player iframe {
  border-radius: 5px;
}

.canal-gov-player .container-content {
  padding: 16px;
}

.cta-canal-gov {
  font-weight: 700;
  text-transform: uppercase;
}

.cta-canal-gov span {
  color: var(--sec-color);
}

/*-------player tv brasil ------*/
.tv-brasil-player {
  background-color: var(--azul);
  color: white;
  border-radius: 5px;
}

.tv-brasil-player header {
  width: 100%;
  justify-content: center;
  padding: 8px 0;
}

.tv-brasil-player iframe {
  margin: 0;
  padding: 0;
}

.programa-agora {
  font-size: 12px;
  letter-spacing: 1px;
  background-color: var(--azul-dark);
  border-bottom: 1px solid var(--azul-dark);
  gap: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.programa-agora .container-titulo {
  padding: 2px 8px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  background-color: var(--vermelho);
  border-radius: 3px;
  line-height: 1.5;
  font-size: 10px;
}

.programa-a-seguir {
  font-size: 10px;
  letter-spacing: 1px;
  padding: 8px 16px;
}

/* destaques do portal - seção principal*/
.colunas {
  margin-bottom: 30px !important;
  align-items: start;
  gap: 30px;
}

.coluna-um {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-right: 1px solid rgba(217, 217, 217, 0.50);
  padding-right: 30px;
}

.texto-noticia {
  flex-direction: column;
  align-items: start;
  flex: 1;
}

.noticia-principal {
  align-items: start;
  width: 100%;
  justify-content: space-between;
  gap: 30px;
}

.img-noticia-principal {
  flex: 1 1 550px;
  max-width: 550px;
}

.noticia-principal:hover img {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
}

.noticia-principal:active img {
  box-shadow: none;
}

.noticia-principal:hover h1,
.noticia-principal:hover p,
.noticia-relacionada:hover {
  color: var(--prim-color) !important;
}

.noticia-principal:active h1,
.noticia-principal:active p,
.noticia-relacionada:active {
  color: var(--prim-color-dark) !important;
}


.texto-noticia h1,
.texto-noticia p {
  margin: 0;
  padding: 0;
}

.texto-noticia h1 {
  font-size: clamp(16px, 2vw, 30px);
  line-height: 1.5;
  font-weight: 700;
}

.texto-noticia-principal p {
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  margin-bottom: 8px;
}

.texto-noticia a {
  color: #121214 !important;
}

.texto-noticia p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #515151;
  margin-top: 8px;
}

.noticia-relacionada {
  font-size: 12px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.noticia-relacionada::before {
  content: "\003E";
  font-weight: 850;
  margin-right: 8px;
}

/*tag*/
.tag {
  border-left: 4px solid var(--sec-color);
  line-height: 1.5;
  font-size: 12px;
  padding-left: 4px;
  font-weight: 600;
  color: #515151;
}

.noticia-principal img {
  aspect-ratio: 15 / 10;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.noticia-ebc img,
.ebc img {
  border-bottom: 8px solid var(--sec-color);

}

.mec img {
  border-bottom: 8px solid var(--salmon);
}

ul.noticias-gerais {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-bottom: 0;
}

ul.noticias-gerais li {
  width: 100%;
  padding-bottom: 16px;
}

ul.noticias-gerais > li:nth-child(3) {
  margin-right: 0;
}

ul.noticias-gerais > li:nth-last-child(-n+3) {
  margin-bottom: 0;
}

ul.noticias-gerais li:hover a {
  color: var(--prim-color);
}

ul.noticias-gerais li:active a {
  color: var(--prim-color-dark);
}

ul.noticias-gerais li:hover img {
  filter: brightness(1) saturate(1);
}

ul.noticias-gerais li img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  border-radius: 5px;
  filter: brightness(0.9) saturate(0.9);
}

ul.noticias-gerais li .texto-box .texto {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid #d9d9d9;
}

ul.noticias-gerais li a {
  color: #121214;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coluna-dois {
  width: 100%;
  max-width: 270px;
  position: sticky;
  top: 30px;
}

.coluna-dois > *:not(:last-child) {
  margin-bottom: 23px !important;
}

button.programacao-tvbrasil {
  background: #f9f9f9 !important;
  color: #6a6a6a !important;
  border: 1px solid #6a6a6a !important;
  font-size: 20px !important;
  padding: 11px 16px;
  width: 100%;
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-shadow: none;
}

button.programacao-tvbrasil:hover {
  background: var(--prim-color) !important;
  border-color: var(--prim-color)  !important;
  color: white !important;
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
}

button.programacao-tvbrasil:active,
button.programacao-tvbrasil:focus {
  background: var(--prim-color-dark);
  color: #f1f1f1 !important;
  box-shadow: none;
}

.banner-full {
  border-radius: 5px;
  max-width: 100%;
}

.banner-full:hover {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
}

.banner-full:active {
  box-shadow: none;
}

/* ------- Página INSTITUCIONAL -------*/
.noticias-destaques-ebc {
  flex-direction: column;
  list-style: none;
  width: 100%;
  max-width: 50%;
  margin-right: 30px;
  flex-shrink: 0;
}

.noticias-destaques-ebc li {
  flex-direction: column;
  width: 100%;
}

.noticias-destaques-ebc li:not(:last-child):after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin: 16px 0;
}

.noticias-destaques-ebc li a {
  align-items: start;
  color: var(--ter-color);
  width: 100%;
}

.noticias-destaques-ebc li img {
  max-width: 50%;
  height: 136px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-right: 16px;
  border-bottom: 8px solid var(--sec-color);
  border-radius: 5px;
  transition: 350ms ease;
  filter: brightness(0.9) saturate(0.8);
  flex-shrink: 0;
}

.noticias-destaques-ebc .titulo-noticia {
  font-weight: 700;
  font-size: 20px;
}

.noticias-destaques-ebc .resumo-noticia {
  font-size: 12px;
  margin-top: 8px;
}

.noticias-destaques-ebc li:hover img {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
  filter: brightness(1) saturate(1);
}

.noticias-destaques-ebc li:hover a {
  color: var(--prim-color);
}

.noticias-destaques-ebc li:active img {
  box-shadow: none;
}

.noticias-destaques-ebc li:active a {
  color: var(--ter-color);
}

.servico {
  background-color: var(--prim-color);
  color: #f1f1f1;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
  width: 100%;
  border-bottom: 1px solid var(--prim-color-dark);
  height: 63px;
}

.servicos-ebc {
  max-width: 50%;
  width: 100%;
}

.servico svg {
  margin-right: 8px;
}

.servico:hover {
  background-color: var(--prim-color-light);
}

.servicos-ebc a:not(:last-child):hover {
  border-color: var(--prim-color);
}

.servicos-ebc a:not(:last-child) {
  border-bottom: 1px solid var(--prim-color-dark);
}

.servico:active {
  background-color: var(--prim-color-dark);
}

.servico:after {
  content: '\232A'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #f1f1f1;
  float: right;
  margin-left: 5px;
  position: absolute;
  right: 16px;
}

/*----- TV BRASIL SECTION------*/
.tv-brasil-section {
  padding-bottom: 30px;
  flex-direction: column;
}

.tv-brasil-section .container-noticias {
  gap:30px;
  align-items: flex-start;
}

.tv-brasil-section .titulo-pagina {
  background-color: var(--cor-fundo);
  padding: 0;
  color: #121214;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 30px;
  font-weight: 700;
  border-radius: 0;
  height: auto;
  padding-bottom: 8px;
}

.tv-brasil-section .logo-veiculo-btn a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid #121214;
  color: #121214 !important;
}

.tv-brasil-section .logo-veiculo-btn span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #121214;
}

.tv-brasil-section .coluna-esquerda {
  width: 50%;
}

.coluna-direita {
  width: 50%;
  gap: 30px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #e9e9e9;
  padding-left: 30px;
}

ul {
  list-style: none;
}

.coluna-esquerda a img {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 5px;
  border-bottom: 8px solid var(--amarelo);
  object-fit: cover;
}

.coluna-direita a img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  max-width: calc(50% - 30px);
  border-radius: 5px;
  border-bottom: 8px solid var(--amarelo);
  filter: saturate(0.9) brightness(0.9);
}

.coluna-esquerda .caixa-texto {
  margin-top: 16px;
}

.coluna-esquerda:hover .titulo-noticia {
  color: var(--prim-color);
}

.coluna-esquerda:active .titulo-noticia {
  color: var(--prim-color-dark);
}

.coluna-direita a {
  align-items: start;
  color: #121214;
  font-weight: 700;
  font-size: 16px;
  gap: 16px;
}

.coluna-direita a:hover {
  color: var(--prim-color);
}

.coluna-direita a:active {
  color: var(--prim-color-dark);
}

.coluna-direita a:hover img {
  filter: brightness(1) saturate(1);
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
  transition: 350ms ease;
}

.coluna-direita a:active img {
  box-shadow: none;
}

.coluna-direita .caixa-texto {
  width: 100%;
  font-size: 16px;
}

.coluna-direita .titulo-noticia {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.coluna-esquerda .titulo-noticia {
  font-size: 24px;
  color: #121214;
  font-weight: 700;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
  border-radius: 0;
  padding-right: 0;
  padding-left: 0;
}

.coluna-esquerda,
.coluna-direita {
  margin-bottom: 30px;
  border-radius: 5px;
}

/*Section Agência Brasil*/
.noticias-agencia-brasil {
  background: linear-gradient(90deg, #030917 0%, #0C1A3D 19.54%, #0C1A3D 80.68%, #030917 100%);
  margin-bottom: 30px;
}

.noticias-agencia-brasil .tag,
.radios-ebc .tag {
  color: white
}

.noticias-agencia-brasil .titulo-pagina {
  background-color: transparent;
  color: white;
  border-bottom: 1px solid white;
  padding-bottom: 8px;
  padding-top: 30px;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.noticias-agencia-brasil .titulo-pagina a.rowflex,
.radios-ebc .titulo-pagina a.rowflex {
  color: white !important;
  font-weight: 700;
  font-size: 16px;
  border-right: 1px solid white;
  padding-right: 16px;
  margin-right: 16px;
}

.noticias-agencia-brasil .titulo-pagina span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.noticias-agencia-brasil .noticia-destaque {
  color: white;
  height: 100%;
  max-height: 341px;
  width: 100%;
  max-width: 592px;
  margin: 30px 0;
  border-bottom: 8px solid var(--sec-color);
  border-radius: 5px;
}

.noticias-agencia-brasil .noticia-destaque:hover {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
  color: var(--sec-color);
}

.noticias-agencia-brasil .noticia-destaque:active {
  box-shadow: none;
  color: var(--sec-color-dark);
}

.noticias-agencia-brasil .noticia-destaque  img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  border-radius: 5px;
}

.noticias-agencia-brasil .noticia-destaque .box-titulo {
  bottom: 0px;
  height: 100%;
  width: 100%;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}

.noticias-agencia-brasil .noticia-destaque  .bg-box {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  bottom: 0px;
  background: linear-gradient(180deg, rgba(8, 8, 9, 0.00) 47.92%, rgba(8, 8, 9, 0.80) 88.02%);
}

.noticias-agencia-brasil .noticia-destaque .container-titulo {
  position: absolute;
  bottom: 0;
}

.noticias-agencia-brasil .noticia-destaque .titulo-noticia,
.noticias-agencia-brasil .noticia-destaque .tag {
  margin-left: 16px;
}

.noticias-agencia-brasil .noticia-destaque .tag {
  margin-top: 8px;
}

.demais-noticias {
  margin-left: 30px;
}

.demais-noticias img {
  max-width: 176px;
  width: 100%;
  border-bottom: none;
  border-radius: 5px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.radios-ebc .demais-noticias img {
  max-width: 100%;
  border-bottom: none;
}

.demais-noticias a {
  color: white;
  display: flex;
  gap: 16px
}

.demais-noticias a:focus {
  color: white;
}

.radios-ebc .demais-noticias a {
  flex-direction: column;
  gap: 16px;
}

.demais-noticias a:hover {
  color: var(--sec-color);
}

.demais-noticias a:active {
  color: var(--sec-color-dark);
}

.demais-noticias a:hover img {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
}

.demais-noticias a:active img {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
}

.demais-noticias li:not(:last-child) {
  margin-bottom: 22px
}

.demais-noticias li {
  width: 100%;
}

.demais-noticias .tag {
  margin-top: 8px;
}

.noticias-agencia-brasil a {
  transition: 50ms ease;
  gap: 16px
}

/*Section Rádios EBC*/
section.radios-ebc {
  margin-bottom: 30px;
}

.radios-ebc .btns-download {
  display: flex;
  position: absolute;
  bottom: 16px;
  margin-left: 52px;
}

.radios-ebc button {
  outline: none;
  border: none;
  height: fit-content;
  display: flex;
  align-items: center;
  border-radius: 5px;
}

.radios-ebc .btns-download a{
  margin-left: 30px;
}

.radios-ebc .btns-download a:hover {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
}

.radios-ebc .btns-download a:active {
  box-shadow: none;
}

.banner-radios-app {
  background-image: url("/++plone++ebc.inst2024/banner-Radios-desktop.png");
  width: 100%;
  height: 151px;
}

.radios-ebc li ul {
  gap: 16px;
}

.radios-ebc li .titulo {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
}

.radios-container {
  display: flex;
  justify-content: space-between;
}

.radioMECnews, .radioNACnews {
  margin-top: 30px;
  background-color: var(--petroleo-dark);
  border-radius: 5px;
  width: 49%;
}

.radioMECnews .titulo-pagina, .radioNACnews .titulo-pagina {
  background-color: transparent;
}

.radioMECnews .titulo-pagina,
.radioNACnews .titulo-pagina {
  color: white;
  border-bottom: none;
  border-radius: 0;
}

.radioMECnews .titulo-pagina span,
.radioNACnews .titulo-pagina span {
  font-size: 12px;
  font-weight: 400;
}

.radios-container .noticia-destaque {
  width: 100%;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
}

.radios-container .noticia-destaque img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.radioMECnews .noticia-destaque img {
  border-bottom: 8px solid var(--salmon);
}

.radioNACnews .noticia-destaque img {
  border-bottom: 8px solid var(--ciano);
}

.radios-container .noticia-destaque .box-titulo {
  position: inherit;
  padding: 16px;
  width: 100%;
}

.radios-container .noticia-destaque .tag {
  margin-top: 8px
}

.radios-container .container-titulo {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.radios-container li .container-titulo {
  border-bottom: none;
}

.radios-container .container-titulo .titulo-noticia {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.radioMECnews .noticia-destaque:hover {
  color: var(--salmon-light);
}

.radioMECnews .noticia-destaque:active {
  color: var(--salmon);
}

.radioNACnews .noticia-destaque:hover {
  color: var(--ciano-light);
}

.radioNACnews .noticia-destaque:active {
  color: var(--ciano);
}

.radios-container .noticia-destaque:hover img {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
}

.radios-container .noticia-destaque:active img {
  box-shadow: none;
}

.radios-container .demais-noticias {
  margin-bottom: 8px;
  width: 100%;
  display: flex;
  gap: 16px;
  margin-left: 0;
  padding: 0 16px;
}

.radios-container .demais-noticias li {
  margin-bottom: 0;
}

.radioMECnews .demais-noticias img {
  border-color: var(--salmon);
}

.radioNACnews .demais-noticias img {
  border-color: var(--ciano);
}

.radioMECnews .demais-noticias li a:hover {
  color: var(--salmon-light);
  transition: 1ms ease;
}

.radioNACnews .demais-noticias li a:hover {
  color: var(--ciano-light);
  transition: 1ms ease;
}

.radioMECnews .demais-noticias li a:active {
  color: var(--salmon-dark);
  transition: 1ms ease;
}

.radioNACnews .demais-noticias li a:active {
  color: var(--ciano-dark);
  transition: 1ms ease;
}

.radios-container .demais-noticias li a:active img {
  box-shadow: none;
}

.rede-gov {
  margin: 30px 0;
}

.gov-container {
  display: flex;
  justify-content: space-between;
  margin-top: 30px
}

.canal-gov-player, .container-agencias {
  max-width: 50%;
  width: 100%;
}

.container-agencias {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 30px;
}

.agencia-gov-container {
  margin-bottom: 30px;
}

.agencia-gov-container header img {
  max-width: 150px;
}

.voz-do-brasil-banner img {
  width: 100%;
  object-fit: cover;
}

.rede-gov .titulo-pagina {
  background-color: var(--azul-gov);
}

.rede-gov .titulo-pagina  span {
  display: flex;
  align-items: center;
}

.rede-gov a {
  color: var(--ter-color);
  font-weight: 700;
  letter-spacing: 1px;
}

.rede-gov a:hover {
  color: var(--prim-color);
  transition: 1ms ease;
}

.rede-gov .titulo-pagina  span::before {
  content: "";
  width: 1px;
  height: 32px;
  background-color: white;
  margin: 0 16px;
  display: flex;
}

.agencia-gov-container .demais-noticias {
  margin-left: 0;
}

.agencia-gov-container header {
  flex-direction: column;
  width: 100%;
}

.agencia-gov-container header .content-header {
  justify-content: left;
  width: 100%;
  color: var(--azul-gov);
}

.agencia-gov-container header::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--azul-gov);
  margin: 16px 0;
}

.agencia-gov-container header a::after {
  content: "";
  width: 1px;
  height: 32px;
  background-color: var(--azul-gov);
  margin: 0 16px
}

.agencia-gov-container .demais-noticias li  img {
  max-width: 50%;
}

.demais-noticias li img {
  filter: saturate(0.9) brightness(0.9);
  transition: 350ms ease;
}

.demais-noticias li:hover img {
  filter: saturate(1) brightness(1);
}

.agencia-gov-container img {
  border-color: var(--azul-gov)
}

/*TV BRASIL PLAY*/
section.tvbrasilplay {
  background: linear-gradient(to right, var(--ter-color) 50%, var(--azul) 50%);
}

.container-carrossel-tv-brasiil-play {
  position: relative;
}

.canto-bottom, .canto-top {
  position: absolute;
}

.canto-bottom {
  bottom: 0;
  left: -49px;
}

.canto-top {
  top: 0;
  right: -26px;
}

.tvbrasilplay .content-center {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.tvbrasilplay .info-app {
  width: 100%;
  max-width: 40%;
  margin-right: 16px;
}

a.logo-tvbp {
  margin-bottom: 30px;
  display: flex;
}

.container-chamada-texto {
  color: white;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-size: 24px;
}

.container-chamada-texto a {
  color: white;
  font-weight: 850;
}

.container-chamada-texto a:hover {
  color: var(--amarelo);
  transition: all 100ms ease
}

.tvbrasilplay .cta-app {
  margin-bottom: 30px;
}

.tvbrasilplay .container-buttons-cta {
  display: flex;
}

.tvbrasilplay .container-buttons-cta a {
  border-radius: 5px;
  display: flex;
  overflow: hidden;
}
.tvbrasilplay .container-buttons-cta a:first-child {
  margin-right: 16px;
}

.tvbrasilplay .container-buttons-cta button {
  background-color: transparent;
  outline: none;
  border:none;
  border-radius: 5px;
  height: 48px;
  display: flex;
}

.tvbrasilplay .container-buttons-cta a:hover {
  box-shadow: 0 4px 6px rgba(0, 0 ,0 , 0.3);
}

.tvbrasilplay .container-buttons-cta a:active {
  box-shadow: none;
}

.tvbrasilplay .container-buttons-cta img {
  height: 100%;
  object-fit: cover;
}

.carrossel-tvbplay {
  width: 100%;
  position: relative;
  max-width: 700px;
  flex-shrink: 0;
}

.slider-tvbp {
  display: flex;
  height: 100%;
  max-height: 400px;
  transform: translateX(var(--slide-transform));
  transition: var(--transition);
}
.slider_container {
  overflow: hidden;
}

.slider_element {
  min-width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.slider_element img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: flex;
}

.slider-buttons-tvbp  {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.slider-buttons-tvbp button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
}


.carrossel-tvbplay::before {
    content: "";
    width: 40px;
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, rgba(18, 18, 20, 0.45) 0%, rgba(18, 18, 20, 0.00) 100%);
    top: 0;
    left: -1px;
    z-index: 1;
}

.carrossel-tvbplay::after {
  content: "";
  width: 40px;
  height: 100%;
  position: absolute;
  background: linear-gradient(90deg, rgba(18, 18, 20, 0.45) 0%, rgba(18, 18, 20, 0.00) 100%);
  transform: scaleX(-1);
  top: 0;
  right: 1px;
  z-index: 1;
}

.slider-buttons-tvbp button svg {
  width: 30px;
  height: 30px;
}

.slider-buttons-tvbp  button:hover path {
  fill: var(--amarelo);
  transition: all 300ms ease;
}

.slider-buttons-tvbp button:active path {
  fill: #C99E00;
}

.slider-buttons-tvbp  button:active svg {
  -webkit-transform:scale(0.9);
  -moz-transform:scale(0.9);
  -o-transform:scale(0.9);
  transform:scale(0.9);
}

@media screen and (max-width: 1213px) and (min-width: 980px) {

  .content-center {
    padding: 0 16px;
  }

}

@media screen and (max-width: 1080px) {
  .noticia-principal {
    flex-direction: column;
  }

  .img-noticia-principal {
    max-width: 100%;
    flex: none;
  }
}

@media screen and (max-width: 980px) {

  section.tvbrasilplay .content-center{
    flex-direction: column;
  }

  .tvbrasilplay .info-app {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .carrossel-tvbplay {
    display: none;
  }

  .container-chamada-texto {
    text-align: center;
  }

  .agencia-gov-container {
    margin-left: 0;
  }

  .agencia-gov-container .demais-noticias,
  .agencia-gov-container .demais-noticias li  {
    display: flex;
    flex-direction: column;
  }

  .agencia-gov-container .demais-noticias li {
    margin-bottom: 0;
  }

  .demais-noticias li img {
    filter: saturate(1) brightness(1);
  }

  .agencia-gov-container .demais-noticias li:not(:last-child):after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--ter-color-dark);
    margin: 16px 0;
    opacity: 0.3;
  }

  .gov-container {
    flex-direction: column;
  }

  .canal-gov-player, .agencia-gov-container {
    max-width: 100%;
  }

  .agencia-gov-container {
    margin-top: 30px;
  }

  .rede-gov .titulo-pagina  span {
    display: none !important;
  }

  .radios-container {
    flex-direction: column;
  }

  .radioMECnews, .radioNACnews {
    width: 100%;
  }

  .banner-radios-app {
    background-image: url("/++plone++ebc.inst2024/banner-Radios-mobile.png");
    height: 329px;
    max-width: 327px ;
    margin: auto;
  }

  .radios-ebc .btns-download {
    margin-left: 0;
    bottom: 32px;
  }

  .radios-ebc button img {
    width: 100%;
    max-width: 132px;
  }

  .radios-ebc .btns-download a {
    margin-left: 16px;
  }

  .radios-ebc .btns-download {
    width: 100%;
    justify-content: center;
  }

  .noticias-agencia-brasil {
    margin-top: 30px
  }

  .noticias-agencia-brasil .container-noticias {
    flex-direction: column;
  }

  .noticias-agencia-brasil .noticia-destaque {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
  }

  .noticias-agencia-brasil .demais-noticias {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
  }

  .noticias-agencia-brasil .demais-noticias li {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }

  .noticias-agencia-brasil .demais-noticias li::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--ter-color-dark);
    margin: 16px 0;
    opacity: 0.5;
  }

  .noticias-agencia-brasil .noticia-destaque .bg-box {
    display: none;
  }

  .noticias-agencia-brasil .noticia-destaque {
    border-bottom: none;
    margin-bottom: 0;
  }

  .noticias-agencia-brasil .noticia-destaque .box-titulo,
  .noticias-agencia-brasil .noticia-destaque .container-titulo {
    position: relative;
    height: auto;
  }

  .titulo-pagina a::after {
    display: none;
  }

  .noticias-agencia-brasil .noticia-destaque .container-titulo {
    margin-top: 16px;
  }

  .noticias-agencia-brasil .noticia-destaque .titulo-noticia,
  .noticias-agencia-brasil .noticia-destaque .tag {
    margin-left: 0;
  }

  #menu-desktop {
    display: none;
  }

  .tv-brasil-section .container-noticias {
    flex-direction: column;
  }

  .tv-brasil-section .coluna-esquerda {
    background-color: var(--cor-fundo);
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .tv-brasil-section .coluna-esquerda img {
    border-radius: 5px;
  }

  .coluna-direita {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
  }

  .coluna-direita,
  .coluna-direita li {
    width: 100%;
  }

  .coluna-direita a {
    width: 100%;
  }

  .coluna-direita a img {
    filter: brightness(1) saturate(1);
    max-width: 50%;
  }

  .noticia-principal,
  .texto-noticia {
    height: auto;
  }

  .noticia-principal a {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .coluna-um {
    border-right: none;
    padding-right: none;
  }

  ul.noticias-gerais {
    flex-direction: column;
  }

  ul.noticias-gerais li .texto-box {
    padding: 0;
    letter-spacing: 1px;
  }

  ul.noticias-gerais li .texto-box span {
    font-size: 24px;
  }

  ul.noticias-gerais li {
    height: fit-content;
    width: 100%;
    max-width: 100%;
    background-color: var(--cor-fundo);
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }

  ul.noticias-gerais li img {
    border-radius: 5px;
    max-width: 50%;
  }

  ul.noticias-gerais li a{
    display: flex;
    flex-direction: row;
    height: fit-content;
  }

  footer .paginas-internas {
    flex-wrap: wrap;
  }

  .content-center {
   padding: 0 16px;
  }

  .bar-div {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .pesquisa-row .texto-exemplo {
    margin-top: 4px;
  }

  .social-icon {
    font-family: 'Tipo Brasil Rounded Icon';
    font-size: 24px !important;
    height: 24px !important;
    margin-top: 0;
  }

  .chamada-mkt {
    font-size: 16px !important;
    max-width: 80px;
  }

  .transparencia-bar {
    padding-bottom: 16px;
  }

  .transparencia-bar .content-center{
    flex-direction: column;
  }

  .transparencia-bar .redes-sociais-footer {
    flex-direction: column;
    justify-content: center;
  }

  .redes-sociais-footer span:first-child  {
    margin-right: 0;
  }

  .redes-sociais-footer nav {
    margin-top: 8px
  }

  .rights-ebc .content-center {
    flex-direction: column;
  }

  .rights-ebc .content-center >*:not(:last-child) {
    margin-bottom: 30px
  }

  .imprensa {
    flex-direction: column;
    align-items: center;
  }

  .conteudo-interno {
    padding-top: 120px;
  }

  .bloco-noticias {
    margin-right: 0;
  }

  ul.noticias-imprensa li h1.titulo-noticia{
    font-size: 16px;
  }

  .resumo-noticia {
    font-size: 12px;
  }

  ul.noticias-imprensa li.noticia-destaque img,
  ul.noticias-imprensa li img {
    margin-right: 8px;
    filter: brightness(1) saturate(1);
  }

  ul.noticias-imprensa li img {
    width: 50%;
  }

  .titulo-pagina span:first-child::after,
  .titulo-pagina span:last-child {
    display: none;
  }

  ul.noticias-imprensa li.noticia-destaque h1.titulo-noticia {
    font-size: 16px;
  }

  .sobre nav {
    justify-content: center;
  }

  .sobre nav a:not(:last-child) {
    margin-bottom: 16px;
  }

  .content-institucional {
    flex-direction: column;
  }

  .noticias-destaques-ebc {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .noticias-destaques-ebc h1.titulo-noticia {
    font-size: 16px;
  }

  .noticias-destaques-ebc li img{
    filter: brightness(1) saturate(1);
  }

  .servicos-ebc {
    max-width: 100%;
  }

  footer .content-center {
    flex-direction: column;
  }

 .content-footer .linha-divisoria {
    width: 100%;
    height: 1px;
  }

  footer .acesso-info .options {
    column-count: 1;
  }

  .content-footer .paginas-internas {
    margin: 0;
    justify-content: left;
  }

  footer .paginas-internas nav:not(:nth-child(2)),
  footer .acesso-info li {
    max-width: 100%;
  }

  .manchetes li {
    display: none;
  }

  .manchetes li.active {
    display: flex;
  }

  .manchetes li {
    max-width: 100%;
    justify-content: right;
  }

  .manchetes li::after {
    display: none;
  }

  #prev-button, #next-button {
    width: 64px;
  }

  #prev-button svg, #next-button svg {
    height: 20px;
  }

  .colunas {
    flex-direction: column;
    padding: 0 16px;
  }

  .coluna-um {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }

  .noticia-principal {
    flex-direction: column;
  }

  .noticia-principal img {
    max-width: 100%;
    margin-right: 0;
  }

  .texto-noticia {
    margin-left: 0;
    margin-top: 16px;
    max-width: 100%;
    width: 100%;
    align-items: baseline;
    flex-shrink: 0;
  }

  .texto-noticia h1 {
    font-size: clamp(16px, 6vw, 30px);
    margin-bottom: 8px;
  }

  .coluna-dois {
    max-width: 100%;
  }

  .tv-brasil-player {
    width: 100%;
  }

  .coluna-esquerda {
    margin-bottom: 0;
  }

  .coluna-esquerda .caixa-texto {
    padding: 16px 0
  }

  .coluna-direita {
    display: flex;
    flex-direction: column;
  }

  .coluna-direita li {
    display: flex;
    flex-direction: column;
  }

  .pgInternaDefault .content-center {
    flex-direction: column;
  }

  .header-main img {
    height: 20vh;
  }

  aside.sublinks-container {
    position: inherit;
  }

  aside.sublinks-container,
  .accordion-container {
    max-width: 100%;
  }

  .pgInternaDefault section {
    flex-direction: column;
  }

  .cards-images article {
    max-width: 100%;
  }

}

@media screen and (max-width: 480px) {

  ul.noticias-gerais li .texto-box span {
    font-size: 12px;
  }

  .coluna-direita a {
    font-size: 12px;
  }

  .content-center {
    padding: 0 16px;
  }

  .logo-ebc-full img {
    max-width: 270px;
    width: 100%;
  }

  .pesquisa-row button span {
    display: none;
  }

  header .pesquisa-row button {
    padding: 8px;
  }

  @keyframes  RightToLeft {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-450%);
    }
  }

  .veiculo-titulo {
    font-size: 24px;
    line-height: 24px;
  }

  .veiculo-titulo p {
    margin: 0;
    margin-bottom: 4px;
  }

  .veiculo-titulo svg {
    height: 8px;
    width: fit-content;
  }

  .conteudo-interno {
    padding-top: 100px;
  }

  .bloco-noticias {
    margin-right: 0;
  }

  ul.noticias-gerais li .texto-box .texto {
    padding-bottom: 8px;
    font-size: 12px;
  }

  .radios-container .demais-noticias {
    flex-direction: column;
  }

  .radios-ebc .demais-noticias a {
    flex-direction: row;
  }

  .radios-ebc .demais-noticias img {
    max-width: 50%;
  }

}

@media screen and (max-width:340px ) {
  .chamada-mkt {
    display: none;
  }

  .redes-sociais-ebc {
    margin: auto
  }
}

/*------ Novo player radios-------*/
.container-players-radios {
  border-radius: 5px;
  min-height: 330px;
  position: relative
}

.fundoRadioMec {
  background-color: var(--salmon);
}

.fundoRadioNac {
  background-color: var(--ciano);
}

.header-players-radios {
  transition: all 0s ease;
  padding: 16px;
  gap: 16px;
}

.fundoRadioMec .header-players-radios {
  border-bottom: 1px solid rgba(8, 8, 8, 0.10);
}

.fundoRadioNac .header-players-radios {
  border-bottom: 1px solid rgba(8, 8, 8, 0.10);
}

.btnRadioEBC {
  opacity: 0.5;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.btnRadioEBC .color-icon {
  fill: black;
}

.btnRadioEBC.ativo {
  opacity: 1;
}

.btnRadioEBC.ativo .color-icon {
  fill: white;
}

.content-player-box {
  padding: 16px
}

.visualizador-programa {
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(8,8,8,0,20);
}

.capa-radio {
  max-width: 53px;
  max-height: 53px;
  margin-right: 16px;
}

.capa-radio img {
  width: 100%;
  border-radius: 5px;
}

.info-nome-programa .nome-programa {
  font-size: 12px;
  color: white;
  display: none;
  margin-top: 4px;
}

.info-nome-programa .nome-programa.ativo {
  display: flex;
}

#myAudio {
  width: 100%;
  max-width: 280px;
  height: 40px;
  margin-top: 8px;
  overflow: hidden;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(2px);
  padding: 0 16px;
  border-radius: 0 0 5px 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0px -4px 10px 0px rgba(18, 18, 20, 0.25);
  overflow-x: hidden;
  height: 43px;
}

#myAudio::-webkit-scrollbar {
  display: none;
}

#myAudio::-webkit-scrollbar-horizontal,
#myAudio::-webkit-scrollbar-vertical {
  display: none;
}

.container-players-radios .linha-separadora {
  height: 1px;
  width: 100%;
  display: flex;
  transition: all 0s ease;
}

.fundoRadioMec .linha-separadora {
  background-color: var(--salmon-light);
}

.fundoRadioNac .linha-separadora {
  background-color: var(--ciano-light);
}

.titulo-escolha-radio {
  padding-top:8px;
  padding-bottom: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
  border-bottom: 1px dashed rgba(8, 8, 8, 0.20);
  border-top: 1px dashed rgba(8, 8, 8, 0.20);
}

.playerUm .titulo-escolha-radio {
  color: #602312;
}

.playerDois .titulo-escolha-radio {
  color: var(--silver-dark);
}

.container-players-radios .button-radio {
  margin-right: 16px;
  padding: 8px 0;
  cursor: pointer;
}

.container-players-radios .button-radio:last-child {
  margin-bottom:8px;
}

.container-players-radios .button-radio.ativo .name-radio {
  font-weight: 700;
  font-size: 16px;
}

.container-players-radios .name-radio {
  font-weight: 600;
  font-size: 12px;
}

.container-players-radios .estacao-radio {
  display: none;
  font-size: 12px;
  font-weight: 600;
}

.container-players-radios .estacao-radio.ativo {
  display: flex;
}

.playerUm .button-radio {
  color: #602312;
}

.playerUm .button-radio:hover {
  color: white;
  transition: all 150ms ease-in-out;
}

.playerDois .button-radio:active {
  color: #602312;
}

.playerDois .button-radio {
  color: var(--silver-dark);
}

.playerDois .button-radio:hover {
  color: white;
  transition: all 150ms ease-in-out;
}

.playerUm .button-radio:active {
  color: var(--silver-dark);
}

.playerUm .button-radio.ativo,
.playerDois .button-radio.ativo  {
  color: white;

}

.titulo-escolha-radio {
  font-size: 12px;
  font-weight: 400;
}

.lista-radios {
  display: none;
  height: 100px;
}

.lista-radios.ativo {
  display: block;
}

#nome-radio-tocando {
  font-size: 12px;
  color: white !important;
  font-weight: 600;
}

.row-nome-radio {
  opacity: 0.7;
}

.pagina-noticia p {
  max-width: 864px;
}
