@charset "UTF-8";
html, body {
    overflow-x: hidden;
   
   
  }
  
  
  
  /* Para desktop (largura mínima de 992px) */
  @media (min-width: 992px) {
      body {
        padding-top: 120px; /* ajuste esse valor conforme a altura do header desktop */
        padding-bottom: 0px!important;
      }
  }
    
  /* Para mobile (até 991.98px) */
  @media (max-width: 991.98px) {
      body {
        padding-top: 105px; /* ajuste esse valor conforme a altura do header mobile */
        padding-bottom: 0px!important;
      }
  }
  
  
  
  /* Sumário
  //Typografia
  //Padrões de Cor e Typografia
  //Barra de Rolagem
  //Grid
  //Header
  //Nav
  //Menu Default (SuperMenu)
  //Botões
  //Botões Houver
  //Rodapé
  //Ads
  //Social - Acesso aos Perfis 
  */
  
  /*Typografia*/
  @import url("https://use.typekit.net/yhx8rkv.css");
  
  /*Padrões de Cor e Typografia*/
  :root {
      --bs-primary: #1a345c;  /* Cor principal personalizada */
      --bs-dark: #15213a;
      --bs-secondary: #a9c2e6;
      --bs-body-color: #ffffff;
      --bs-box: #e9f0fa;
      --bs-blue: #1c355d;
      --bs-blue-light: #1059a6;
      --bs-yellow: #d69a28;
      --bs-green: #046852;
      --bs-purple: #8c1558;
      --bs-orange: #ff5c35;
      --bs-nav-text-color: #ffffff;
      --bs-background-hotcontent: #E3E3E399;
      
  
      --bs-body-font-family: "lft-etica",sans-serif!important;
      --bs-secondary-font-family: "lft-etica-sheriff",serif!important;
  }
  
        @media (max-width: 991.98px) {
        .desktop-hamburger {
          display: none !important;
        }
      }

  body a {
    color:  #15213A;
    
  }
  
  h1 {
      color: rgb(0, 73, 52)!important;
      font-size: 3rem;
      line-height: 1;
      font-weight: 600;
  }
  
  /*Barra de Rolagem*/
  
  ::-webkit-scrollbar {
      width: 15px;
      height: 8px;
  }
  
  ::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
      background: var(--bs-primary);
      border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
      background: var(--bs-primary);
  }
  
  /* Grid */ 
  
  .grid {
      max-width: 1101px;
  }
  
  .grid-pages {
    max-width: 800px;
}
  /*Header*/
  header {
      border-bottom: solid 1px #e5e7eb;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1030; /* Garante que fique acima de outros elementos */
      background-color: white;
  }
  
  /*Nav*/
  
  .navbar {
      background-color: var(--bs-dark)!important;
  }
  
  .desktop-hamburger {  
      padding: 0;
      margin: 0;
      font-size: 1.3rem!important;
      background-color: #ffffff00;
      border: 0px;
  }
  
  .navbar-toggler {
  
  border: 0!important;
  color: white;
  opacity: 1;
  
}
  
  .navbar-toggler-icon {
      filter: invert(100%); 
      opacity: 1;
      
  }
  
  .navbar-toggler:focus {
  	box-shadow: none!important;
  }

  .submenu {
    display: none; /* Esconde os submenus inicialmente */
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

.nav-item .submenu li {
    padding: 5px 0;
}

.dropdown-toggle::after {
    content: " ▼"; /* Adiciona a seta */
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    border: 0!important;
}

.dropdown-toggle.active::after {
    transform: rotate(180deg); /* Rotaciona a seta para cima quando aberto */
}
  
  .busca-nav a {
      color: white!important;
      font-family: var(--bs-body-font-family);
      text-transform: uppercase;
      font-weight: 600;
  }
  
  .logotipo-offcanvas {
      height: 60px;
  }
  
  .logotipo-mobile {
      height: 40px;
  }
  
  .offcanvas-search {
      width: 100% !important;
      padding-top: 5px;
      padding-bottom: 5px;
      background-color: #ffffff00;
      border: 0px;
      color: white;
  }
  
  .offcanvas-search:focus {
      outline: none !important;
      box-shadow: none !important;
      border-color: transparent !important; /* Opcional, remove a borda */
  }
  
  .offcanvas-search::placeholder {
      color: white!important;
      opacity: 1;
  }
  
  /*Menu Lateral - Hamburguer */
  
  .offcanvas {
      background-color: var(--bs-dark);
  }
  
  hr {
      opacity: 1;
      margin: 0;
  }
  
  .offcanvas-search-input {
      margin-bottom: 1rem;
  }
  
  .btn-close {
      filter: invert(100%);
      opacity: 1;
  }
  
  .nav-item {
      font-weight: 700;
  }
  
  /*Menu Default*/
  
  .logotipo-menu {
      height: 55px;
  }
  
  .superMenu {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
      display: inline-block;
  }
  
  .superMenu .item a {
      font-size: .875rem!important;
      font-weight: 600;
      color: #005cb9;
      text-decoration: none;
      margin-left: 6px;
      margin-right: 6px;
  }
  
  /*Botões*/
  
  .btn {
      margin-left: .3 rem;
      margin-right: .3rem;
      border-radius: 30rem;
      padding-left: 1.3rem;
      padding-right: 1.3rem;
      font-family: var(--bs-body-font-family);
      font-weight: 600;
      font-size: 0.8rem;    
  }
  
  .btn-default {
      background-color: var(--bs-secondary);
      text-transform: uppercase;
      color: var(--bs-primary);
  }
  
  .btn-yellow {
      background-color: var(--bs-yellow);
      text-transform: uppercase;
      color: var(--bs-primary);
  }
  
  .btn-blue {
      background-color: var(--bs-primary);
      text-transform: uppercase;
  }
  
  .btn-purple {
      background-color: var(--bs-purple);
      text-transform: uppercase;
  }
  
  .btn-green {
      background-color: var(--bs-green);
      text-transform: uppercase;
  }
  
  .btn-orange {
      background-color: var(--bs-orange);
      text-transform: uppercase;
      color: var(--bs-primary);
  }
  
  /* Botões - Hover */
  
  .btn-default:hover {
      background-color: var(--bs-secondary);
      text-transform: uppercase;
      color: var(--bs-primary);
  }
  
  .btn-yellow:hover {
      background-color: var(--bs-yellow);
      text-transform: uppercase;
      color: var(--bs-primary);
  }
  
  .btn-blue:hover {
      background-color: var(--bs-primary);
      text-transform: uppercase;
  }
  
  .btn-purple:hover {
      background-color: var(--bs-purple);
      text-transform: uppercase;
  }
  
  .btn-green:hover {
      background-color: var(--bs-green);
      text-transform: uppercase;
  }
  
  .btn-orange:hover {
      background-color: var(--bs-orange);
      text-transform: uppercase;
      color: var(--bs-primary);
  }
  
  .offcanvas-actions {
      margin-top: 1rem;
  }
  
  /* Captcha */
  .grecaptcha-badge {
    display: none !important;
}
  
  /*Rodapé */
  
  footer {
      background-color: var(--bs-dark);
      padding-top: 3rem;
  }
  
  .compliance {
      font-size: 0.8rem;
  }
  
  .compliance .links {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
  }
  
  .compliance .links a {
      color: white;
      text-decoration: none;
  }
  
  .footer-actions {
      margin-top: 2.5rem;
  }
  
  .logotipo-footer {
      height: 45px;
  }
  
  footer .navbar-nav .nav a {
      font-size: 0.8rem;
      line-height: 2.5rem;
      font-weight: 700;
      text-decoration: none;
      color: white;
      text-transform: uppercase;
  }
  
  @media (min-width: 992px) {
      .navbar-nav li.nav a {
        display: block;
        width: 100%;
        text-align: right;
      }
  }
  
  @media (max-width: 991.98px) {
      footer .row > [class*="col-"] {
        margin-bottom: 15px;
      }
  }
  
  /* ADS */
  
  .ads {
      
      background-color: #fafafa;
      color: black;
      font-size: .6rem;
  }
  
    /* Para desktop (largura mínima de 992px) */
  @media (min-width: 992px) {
        .ads {
      min-height: 280px;     
      background-color: fafafa
      opacity: 0.2;
      color: black;
      font-size: .6rem;
  }
  }
    
  /* Para mobile (até 991.98px) */
  @media (max-width: 991.98px) {
      .ads {
      min-height: 360px;     
      background-color: fafafa
      opacity: 0.2;
      color: black;
      font-size: .6rem;
  }
  }
  
  
  .ad_container {

  background-color: #fafafa;
  border-radius:10px;
      margin-bottom: 15px;
  
  }
  
  .ad_container:before {
    content: var(--advertisement-label, "CONTINUA APÓS A PUBLICIDADE...")!important;
    color: var(--advertisement-label-color, #555);
    font-size: var(--advertisement-label-size, 10px);
    letter-spacing: .5px;
    font-weight: 400;
    margin: .1rem 0;
}
  /* Social - Acesso aos Perfis */
  
  .icon-circle {
      background-color: #d0d6e0; /* cor de fundo do círculo */
      width: 2.5rem;
      height: 2.5rem;
      font-size: 1.2rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      text-decoration: none;
      color: #4d4d4d; /* cor do ícone */
      transition: background-color 0.2s ease;
  }
  
  .icon-circle:hover {
      background-color: #c0c6d0; /* cor de fundo ao passar o mouse */
  }
  
  /* Newsletter */
  
  .newsletter {
      background-image: url(https://dev.diariodocomercio.net.br/wp-content/themes/diariodocomerciov2/assets/img/newsletter/background.svg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
;
      padding-top: 50px;
      padding-bottom: 50px;
      color: white!important;
  }
  

  .news-form-container {
      max-width: 500px;
      margin: 0 auto;
  }

  .news-form-container input {
    background-color: var(--bs-secondary);
    padding: 5px 15px 5px 15px;
    width: 100%;
    border: none;
    border-radius: 30px;
    color: #000;
    font-size: 1.2rem;
  }
  
    .news-form-container input:placeholder {
    color: black;
  }
  
  .news-form-container button {
    background-color: var(--bs-green);
    border: none;
    border-radius: 30px;
    color: #FFF;
    padding: 5px!important;
    margin-top: 5px;
  }

  .news-content h2{
    font-size: 1.3rem;
    font-weight: 700;
  }

  .news-content p{
    margin-top: 20px;
    font-size: 0.7rem;
    font-weight: 400;
  }
  
  .wpcf7-not-valid-tip{
  text-align: center;
  }
  
  #newsletter .wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0.2em 1em;
    background-color: var(--bs-blue-light);
    text-align: center;
    color: white;
    font-weight: 600;
}

#newsletter p {
margin-bottom: 0;
}

#newsletter span.wpcf7-spinner {
    text-align: center;

}
  
  input.wpcf7-form-control.wpcf7-submit.has-spinner.news-form-container {
background-color: var(--bs-green);
    padding: 5px;
    font-weight: 600;
    border: none;
    color: white;
    border-radius: 30px;
    width: 100%;
    margin-top: 10px;
    }
    
  /* Blocks */
  
  .superDestaque hr {
      color: black;
      margin: 1rem!important;
      opacity: 0.1;
  }
  
  .rounded-custom {
      border-radius: 0.5rem;
  }
  

  .style1 {
      margin-top: 1rem;
      margin-bottom: 1rem;
  }
  
  .style1 h2{
    line-height: 2.8rem;
}
  .style1 .content-title a {
      font-weight: 600;
      font-size: 3rem;
      text-decoration: none;
  }

  .style1 .content-title i {
    font-size: 1.5rem;
    color: var(--bs-blue-light);
}


  .style1 .category a {
      font-weight: 400;
      font-size: 1rem;
      line-height: 1;
      text-decoration: none;
  }
  
  .style2 {
      margin-top: 3rem;
      margin-bottom: 3rem;
  }
  

  .style2 h2{
    line-height: 3rem;
}

  .style2 .content-title a {
      font-weight: 600;
      font-size: 3rem;
      text-decoration: none;
  }
  .style2 .content-title i {
    font-size: 1.5rem;
    color: var(--bs-blue-light);
}
  


  .style2 .category a {
      font-weight: 400;
      font-size: 1rem;
      line-height: 1;
      text-decoration: none;
  }
  
  .style3 {
      margin-bottom: 1rem;
  }
  

  .style3 h2{
   line-height: 2.2rem;
}

  .style3 .content-title a {
      font-weight: 600;
      font-size: 1.875rem;
      text-decoration: none;
  }

  .style3 .content-title i {
    font-size: 1.2rem;
    color: var(--bs-blue-light);
}

  
  .style3 .content-title-secondary a {
      font-weight: 600;
      font-size: 1.875rem;
      line-height: 2.25rem;
      text-decoration: none;
  }
  
  .style3 .category a {
      font-weight: 400;
      font-size: 0.875rem;
      line-height: 1;
      text-decoration: none;
  }
  
  .style3 .hour {
      font-weight: 400;
      font-size: 12px;
      line-height: 1;
      text-decoration: none;
  }
  
  .style4 {
      margin-bottom: 1rem;
  }

  
  .style4 h2{
    line-height: 2.2rem;
 }
  .style4 .content-title a {
      font-weight: 600;
      font-size: 1.875rem;
      text-decoration: none;
  }

  .style4 .content-title i {
    font-size: 1.2rem;
    color: var(--bs-blue-light);
}

 
  .style4 .category a {
      font-weight: 400;
      font-size: 0.875rem;
      line-height: 1;
      text-decoration: none;
  }
  
  .style4 .hour {
      font-weight: 400;
      font-size: 12px;
      line-height: 1;
      text-decoration: none;
  }
  
  .style5 h2 {
  line-height: 1.6rem;
  }
  
  .style5-item {
      position: relative;
      height: 350px; /* Altura fixa para todos os slides */
      background-size: cover;
      background-position: center;
      border-radius: 8px;
      overflow: hidden;
  }
  
  .style5-item-overlay {
      position: absolute;
      inset: 0; /* top, right, bottom, left = 0 */
      background: linear-gradient(to top, rgba(28, 53, 93, 0.7) 30%, rgba(28, 53, 93, 0) 60%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end; /* texto na parte inferior */
      padding: 1rem;
      color: #fff;
  }
  
  .style5-item-category {
      color: #eee;
      font-size: 0.875rem;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
  }
  
  .style5-item-title a{
      color: #fff;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-decoration: none;
  }

  .style5 .item-title i {
    font-size: 1.5rem;
    color: var(--bs-blue-light);
}
  
  .style6-slide-content {
      display: flex;
      align-items: start; /* Alinha imagem e texto pelo topo */
      gap: 2rem;
      margin-top: 1.8rem;
  }

  /* Imagem */
  .style6-slide-content img {
      width: 150px!important;
      object-fit: cover;
      border-radius: 8px;
  }
  
  /* Categoria */
  .style6-category {
      font-size: 0.875rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
  }
  
  .style6-category a{
    text-decoration: none;
    margin-bottom: 5px;
}
  /* Título */
  .style6-title {
      font-size: 1.875rem;
      line-height: 2.2rem;
      font-weight: 600;
      
 
  }

  .style6 .title i {
    font-size: 1.5rem;
    color: var(--bs-blue-light);
}

 

  .style6-title a {
    text-decoration: none;
  }
  
  /* Data */
  .style6-date {
      font-size: 0.875rem;
  }
  
  /* Personalização dos Dots */
  .owl-dots {
      text-align: center;
      border: 0 !important;
      background-color: transparent !important;
  }
  
  .owl-dot span {
      width: 12px;
      height: 12px;
      background: #ccc;
      display: inline-block;
      border-radius: 50%;
      margin: 0 3px;
      cursor: pointer;
  }
  
  .owl-dot.active span {
      background: #333;
  }
  
  button.owl-dot {
      border: 0!important;
      background-color: #00000000;
  }
  

  
  .style7 li {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 15px;
    list-style-type: square;
  }

  .style7 li a{
    text-decoration: none;
  }

  .style7 i {
    font-size: 1rem;
    color: var(--bs-blue-light);
}

 
  .style8-section {
    padding: 40px 0;
  }
 
  /* Cada slide do style8 */
  .style8-slide {
    padding: 20px;
    min-height: 120px;

  }
  /* Imagem circular do colunista */
  .style8-colunista-img {
    width: 80px!important;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
  }
  /* Nome do colunista */
  .style8-colunista-nome a{
    font-weight: 400;
    margin-bottom: 4px;
    font-size: 14px;
    color:#000;
    text-decoration: none;
  }
  /* Texto/resumo da coluna */
  .style8-colunista-texto a{
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 22px;
    margin: 0;
    text-decoration: none;
  }
  /* Dots customizados para Style8 */
  .style8-dots {
    text-align: center;
    margin-top: 15px;
  }
  .style8-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 3px;
    transition: background 0.3s;
  }
  .style8-dot.active span {
    background: #2d5482;
  }

  button.style8-dot{
    border: 0!important;
    background-color: #00000000;
  }
  /* Elements */


  
  .style9-section {
    padding: 40px 0;
  }
 
  /* Cada slide do style8 */
  .style9-slide {
    padding: 20px;
    min-height: 120px;

  }
  /* Imagem circular do colunista */
  .style9-artigos-img {
    width: 80px!important;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
  }

  /* Texto/resumo da coluna */
  .style9-artigos-texto a{
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 22px;
    margin: 0;
    text-decoration: none;
  }
  /* Dots customizados para Style8 */
  .style9-dots {
    text-align: center;
    margin-top: 15px;
  }
  .style9-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 3px;
    transition: background 0.3s;
  }
  .style9-dot.active span {
    background: #2d5482;
  }

  button.style9-dot{
    border: 0!important;
    background-color: #00000000;
  }



.style11 li {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 5px;
    list-style-type: square;
  }

  .style11 li a{
    text-decoration: none;
  }

  .style11 i {
    font-size: 1rem;
    color: var(--bs-blue-light);
}
 
.style11 ul {
    margin-bottom: 0.3rem !important;
}
  
.noticiasRelacionadas hr {
  margin-bottom: 1rem!important;
  color: black;
  opacity: .25;
}

.noticiasRelacionadas .title hr {
  margin-bottom: 1rem!important;

}

.noticiasRelacionadas .title p{
  color: var(--bs-dark);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom:0!important;

}
   
 .style10 {
    margin-bottom: 1rem;
}


.style10 h2{
  line-height: 1rem;
}
.style10 .content-title a {
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    
}

.style10 .content-title i {
  font-size: 1.2rem;
  color: var(--bs-blue-light);
}


.style10 .category a {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1;
    text-decoration: none;
}

.style10 .hour {
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
}



  @media (max-width: 600px) {

    .style1 .content-title i{
      font-size: 1rem;
    }

    .style2 .content-title i{
      font-size: 1rem;
    }

    .style3 .content-title i{
      font-size: 1rem;
    }

    .style4 .content-title i{
      font-size: 1rem;
    }



    .style3 {
      margin-top: 1rem;
    }
 
    .style5 {
      margin-top: 1rem;
    }

    .style6 {
      margin-top: 1rem;
    }

    .style1 .content-title a {
      font-size: 1.5rem!important;
    }

    .style2 .content-title a {
      font-size: 1.5rem!important;

  }

  .style3 .content-title a {
    font-size: 1.2rem;
    line-height: 0.7;
 
}

.style4 .content-title a {
  font-size: 1.2rem;
  line-height: 0.7;

}

.style5-item-title {
  font-size: 1.2rem;

}

.style6-title {
  font-size: 1.2rem;
  line-height: 1.2;
}



.style1 h2{
  line-height: 1.6rem;
}
.style2 h2{
  line-height: 1.8rem;
}

.style3 h2{
 line-height: 1.4rem;
}

.style4 h2{
  line-height: 1.6rem;
}

  }



  /* Eventos */
  /* CSS */
.eventos {
  background-color: #faf6f9;
  border-radius: 10px;
  padding: 1.5rem; /* Equivalente à classe p-4 */
}

.eventos-header-title {
  color: #5D0F3C;
  font-size: 24px;
  font-weight: 600;
}

.eventos-button {
  background-color: #881457;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-left: 20px;
  text-decoration: none;
}

.eventos-button:hover {
  background-color: #881457;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-left: 20px;
  text-decoration: none;
}

.eventos-date {
  height: 55px;
  line-height: 1;
  color: #5D0F3C;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #D4A9C2;
  border-radius: 10px;
  padding: 0.5rem;
}

.eventos-description-label {
  font-size: 12px;
  color: #5D0F3C;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.eventos-description-title {
  font-weight: 600;
  font-size: 16px;
  color: #5D0F3C;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Página Eventos */
  .events h1 {
    color: var(--bs-purple) !important;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 25px;
  }
  
    .categoryTitle {
    color: var(--bs-purple) !important;
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 15px;
    font-weight: 800;

  }
  
      .events p {
    color: var(--bs-purple) !important;
    font-size: 0.8rem;

  }
    .calendar-container {
      width: 100%;
      margin: 0 auto;
      background-color: #f4e9ef;
    color: #5D0F3C;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 15px;
    }
    .calendar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }
    .calendar-header button {
      border: none;
      background-color: transparent;
      font-size: 1.2rem;
      cursor: pointer;
      color: #5d0f3c;
    }
    .weekdays, .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
    }
    .weekdays div {
      text-align: center;
      font-weight: bold;
      padding: 0.5rem;
    }
    .calendar-day {
      position: relative;
      /* O grid define a largura, e o aspect-ratio mantém o quadrado */
      width: 100%;
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .calendar-day a {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: inherit;
    }
    .calendar-day a:hover {
      background-color: #f0f0f0;
    }
    .today a {
      background-color: #5d0f3c!important;
      font-weight: bold;
      color: white!important;
      border-radius: 10px;
    }
    .monthYear{
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
}
    
     .event-card {
      margin: auto;
    }
    .event-date {
      font-size: 14px;
      line-height: 1;
      color: #5D0F3C;
      font-weight: bold;
      text-transform: lowercase;
      margin-bottom: 0.25rem;
    }
    .event-type {
      font-size: 12px;
      line-height: 1;
      color: #5D0F3C;
      text-transform: lowercase;
    }
    .event-img {
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
  
     
   
      display: block;
    }
    @media (min-width: 768px) {
      .event-img {
       
      }
    }
    .event-caption {
      background-color: #5D0F3C;
      color: #fff;
      font-weight: 600;
      padding: 0.5rem;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
    }
    .event-card a{
    text-decoration: none!important;
    }
    
    
    .eventsPage h1 {
    color: var(--bs-purple) !important;
    font-size: 1.5rem;
    margin-top: 0px;
    margin-bottom: 25px;
    text-transform: none;
  }
  .bigode-evento a{
    color: var(--bs-purple) !important;
    text-decoration: none;
  }
  
    .eventsPage  {
    color: var(--bs-purple) !important;
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 25px;
    text-transform: none;
  }
  
  .eventsPage .event-caption {
    font-size: 0.7rem;
    font-style: italic;
  }
  
  .eventsPage .eventos-button {
  margin: 0;  
  text-transform: uppercase;
  }
  
    .eventsPage  p{
    color: var(--bs-purple) !important;
    font-size: 1rem;
    text-transform: none;
  }
  
      .eventsPage  a{
    color: var(--bs-purple) !important;
    font-size: 1rem;

  }
    

/* Mais Lidas */
.maisLidas {
  width: 100%;
}

.maisLidas-heading {
  font-weight: bold;
  font-size: 0.875rem; /* Equivalente à classe small */
  text-transform: uppercase;
  border-bottom: 3px solid #000;
  margin-bottom: 1rem;
}

.maisLidas-item {
  border-bottom: 1px solid #DADDE5;
}

.maisLidas-item-image {
  border-radius: 10px;
 
  /* Caso necessário, defina dimensões fixas ou responsivas aqui */
}

.maisLidas-item-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.maisLidas-item-date {
  font-size: 12px;
  color: #000;
  margin-top: 2px;
}


/* Modal */

.modal-title {
  color: var(--bs-dark);
  font-weight: 800;
}

.modal-body {
  padding: 0!important;
}

.modal-bottom-right {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0;
  max-width: 500px; /* ajuste conforme necessário */
  /* Remover eventuais margens ou padding do modal padrão se necessário */
}


article .card-gradient {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  width: 100%!important;
  max-width: 1000px;
  height: 330px;           /* Define a altura aqui */
  border-radius: 8px;
  overflow: hidden;
  
}

article .card-content h1 {
  color: white!important;
  font-family: var(--bs-secondary-font-family);
  font-size: 1.5rem!important;
  line-height: 1.2;
}
/* Overlay gradiente */
article .card-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(21, 33, 58, 0) 40%,
    rgba(21, 33, 58, 100) 100%
  );
  z-index: 1;
}


article .wp-block-image img {
border-radius: 10px;
}


article .emAtualizacao {
font-weight: 600;
font-size: 0.8rem;
color: #000;
}


.btn-resume {
    width: 100%;
    font-size: 1rem;
    color: white !important;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
 }
 
 div#resume {
    margin-bottom: 15px;
}

.reportContent{
    border-radius: 30px;
    border: 2px solid;
    border-color: var(--bs-dark);
    color: var(--bs-dark);
    margin: 5px 0 15px 0;
}

.reportContent:hover{

background-color: var(--bs-dark);
color: white;

}

  .card-gradient {
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 250px;           /* Define a altura aqui */
    border-radius: 8px;
    overflow: hidden;
    
  }

  /* Overlay gradiente */
  .card-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 1;
  }

  /* Conteúdo textual (Flexbox) */
  .card-content {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Empurra o texto para o fim (parte de baixo) */
    padding: 20px;
    height: 100%; /* Para ocupar toda a altura do .card-gradient */
  }

  /* Editorias e título */
  .card-editoria {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .card-title {
    font-size: 1.1rem;
    margin: 0;
    font-family: "lft-etica-sheriff", serif!important;
    font-weight: 800;
  }

  /* Elements */

.archive {
    margin-top: 15px;
}
  .archive hr {
    color: black;
      opacity: 0.1;
      margin-bottom: 2rem;
  }

.archive h1{
    font-size: 1.875rem!important;
    line-height: 2.25rem!important;
}




.archive .style3 {
  margin-bottom: 1rem;
}

.archive .style3 .content-title a {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.4rem;
  text-decoration: none;
}

.archive .style3 .content-title-secondary a {
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-decoration: none;
}

.archive .style3 .category a {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
}

.archive .style3 .hour {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}








  .channel-whatsapp {
    background-color: var(--bs-green);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 10px;
    border: 0px solid;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    margin-bottom: 15px;
    
  }

  .channel-whatsapp i {
    font-size: 1.5rem;
    margin-left: 5px;
    margin-right: 15px;
    
  }


  .channel-telegram {
    background-color: var(--bs-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 10px;
    border: 0px solid;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    margin-bottom: 15px;
    
  }

  .channel-telegram i {
    font-size: 1.5rem;
    margin-left: 5px;
    margin-right: 15px;
    
  }

  .itatiaia {
    background-color: #EB0028;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    margin: 2px;
  }

  .itatiaia i {
    color: white;
    font-size: 3rem;
  }

  .articles {
    background-color: var(--bs-box);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
   
  }

  .articles h2 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: var(--bs-blue-light);
  }

  .columnists {
    background-color: var(--bs-box);
    padding: 15px;
    border-radius: 10px;
    margin-top: 40px;   
  }

  .columnists h2 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: var(--bs-blue-light);
  }

  .icon-play {
    color: #870743; /* Ajuste para a cor desejada */
  }

  .audiovisual {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .audiovisual h2{
    font-size: 18px;
    font-weight: 700;
    color: #000;
  }
  .audiovisual p{
    margin-top: 10px;
    color: #000;
    font-size: 0.9rem;
    line-height: 1rem;
  }


  .patrocinado {
    margin-bottom: 30px;
    background-color: #fff6e5;
    padding: 15px;
    border-radius: 6px;
  }
  .patrocinado h2{
    font-size: 18px;
    font-weight: 700;
    color: #000;
  }
  .patrocinado p{
    margin-top: 5px;
    color: #000;
    font-size: 1.100rem;
    line-height: 1.1rem;
    font-weight: 600!important;
    text-align: center;
  }


  iframe {
    display: block;      /* Remove espaços indesejados */
    width: 100%;         /* Ocupa 100% da largura do elemento pai */
    aspect-ratio: 16 / 9; /* Mantém a proporção 16:9 */
    border: none;        /* Remove a borda padrão */
    border-radius: 7px;
    margin-bottom: 10px;
  }

  .instagram-media {
    display: block;
    margin: 0 auto !important;
    margin-bottom: 10px!important;
  }
  
  iframe[src*="facebook.com/plugins/post.php"*] {
    display: block;
    margin: 0 auto;
  }
  

  .colunistas .col {
    margin-bottom: 30px;
  
  }
  
      /* Editorias e título */
      .colunistas .editoria a{
        font-weight: 400;  /* Negrito para a editoria */
        text-decoration: none;
      }
      
     p.editoria {
      margin: 0;
      }
      
      /* Imagens circulares */
      .colunistas .img-colunista {
        width: 60px;         /* Ajuste conforme desejar */
        height: 60px;        /* Ajuste conforme desejar */
        object-fit: cover;   /* Mantém proporção dentro do container */
        border-radius: 50%;  /* Deixa a imagem circular */
      }

      .colunistas .titulo a{
        font-weight: 700;  /* Negrito para a editoria */
        margin-bottom: 4px;
        font-weight: 1rem;
       	text-decoration: none;
      }


      .publicidadeLegal input {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 30px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top:10px;
        padding-bottom:10px;
        border: none;
        background-color: var(--bs-secondary);
      }
      
      .publicidadeLegal input::placeholder {
        color: #000;
      }

      .publicidadeLegal button {
        width: 100%;
        border-radius: 30px;
        border: none;
        padding-left: 10px;
        padding-right: 10px;
        padding-top:10px;
        padding-bottom:10px;
        background-color: var(--bs-dark);
        color: white;
      }

      .publicidadeLegalTable {
        margin-top: 20px;
        margin-bottom: 20px;
      }
  
      button.page-link {
        border-radius: 30px;
        margin-left: 5px !important;

    }

    button.page-link.first {
        border-radius: 30px !important;
        font-weight: 700;

     
    }

    .disabled>.page-link, .page-link.disabled {
        background-color: var(--bs-secondary)!important;
        color: var(--bs-dark)!important;
        text-transform: uppercase!important;
    }
    
    .previous {
        font-weight: 700;
        background-color: var(--bs-dark);
        color: white!important;
        text-transform: uppercase;
    }

    .page-link:hover {
        font-weight: 700;
        background-color: var(--bs-dark)!important;
        color: white!important;
        text-transform: uppercase;
    }
    
    .page-item:first-child .page-link {
        background-color: var(--bs-dark);
        text-transform: uppercase!important;
        color: white;
        font-size: 0.8rem!important;
    }

    button.page-link.last {
        border-radius: 30px !important;
    }   
    
    button.page-link.next {
        background-color: var(--bs-dark);
        text-transform: uppercase;
        color: white;
        font-weight: 700;
        font-size: 0.8rem!important;
        
    }

    button.page-link.last {
        background-color: var(--bs-dark);
        text-transform: uppercase;
        color: white;
        font-weight: 700;
        font-size: 0.8rem!important;
    }

    .page-link {
        font-weight: 700;
        color: var(--bs-dark);
        font-size: 0.8rem!important;
    }
      
      

  /* Paginação */
  .archive .pagination{
    border-color: var(--bs-blue);
  }

  .archive .pagination a{
    color: var(--bs-blue);
  }

  .archive .pagination  .active a{
    color: white;
  }

  .active>.page-link, .page-link.active {
    background-color: var(--bs-blue);
    border-color: var(--bs-blue);
  }

  
  .headerDetails {
    background: linear-gradient(
    to bottom,          /* Direção do gradiente: de cima para baixo */
    #D8E3F5 0%,         /* Cor inicial (vermelho) em 0% */
    white 7%        /* Cor final (azul) em 100% */
  );
  }

  .pages {
    padding-top: 40px;
    background: linear-gradient(
    to bottom,          /* Direção do gradiente: de cima para baixo */
    #D8E3F5 0%,         /* Cor inicial (vermelho) em 0% */
    white 30%        /* Cor final (azul) em 100% */
  );
  }

  .pages h1{
    font-size:20px;
    line-height: 22px;
    font-weight: 700;
    color: var(--bs-dark)!important;
    text-transform:uppercase;
  }

  .pages p{
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #000;

  }


 
  table.dataTable,
  table.dataTable th,
  table.dataTable td {
    font-family: var(--bs-body-font-family);
    color: var(--bs-dark);
    border: none !important;

  }

  table.dataTable tbody td {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    /* Se quiser mais altura, aumente o padding ou defina line-height */
  }
  

  /* Header transparente */
  table.dataTable thead th {
    background-color: transparent !important;
    /* Caso queira remover borda inferior do header, adicione:
    border-bottom: none !important; */
    color: var(--bs-dark);
    font-weight: bold;
  }

  /* Zebra personalizada (linhas ímpares e pares) */
  table.dataTable tbody tr:nth-child(odd) {
    background-color: #d8e3f57d; /* cor de fundo para linhas ímpares */
  }
  table.dataTable tbody tr:nth-child(even) {
    background-color: #ffffff; /* cor de fundo para linhas pares */
  }



  /* Exemplo de botão PDF simples (opcional) */
  .btn-pdf {
    text-decoration: none;
    background-color: var(--bs-secondary);
    border-radius: 30px;
    color: var(--bs-primary);
    font-weight: 500;
    border: 1px solid #ccc;
    padding: 5px 10px 5px 10px;
    font-weight: 700;
  }
  .btn-pdf:hover {
    background-color: #c6cbd0;
    color: var(--bs-primary);
  }





  /* Estiliza apenas o texto de informações do DataTables */
  div#publicidadeLegal_info {
    color: var(--bs-dark)!important;
    font-weight: 700;
  }
  
  


  .hotcontent {
    padding-top: 40px;
    background-color: var(--bs-background-hotcontent);
  }
  .hotcontent .img-responsive {
    width: 180px;
    height: 120px;
    min-width: 180px;
  }

  .hotcontent h2 {
    color: #000;
  }

  .stock-exchange {
    margin-top: 15px;
  }

  .stock-exchange-head{
    background-color: var(--bs-green);
    border-radius: 10px 10px 0px 0px;
    color: white;
    padding: 10px;

  }

  .stock-exchange-body{

    background-color: #d9e7e3;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 0px 0px 10px 10px;
    margin-bottom: 10px;

  }

  .list-stock {
    margin: 0;
    padding: 0;
    padding-top: 15px;
    color: var(--bs-dark);
  }
  
  .list-stock p {
    margin-bottom: 0!important;
  }


  .autor {
    margin-top: 1rem;
   }

   /* PLAYER */
   #audiome-container {
    margin: 0!important;
   }

 

  /* AUTOR */
  .autor-avatar {
    height: 60px;
    width: 60px;
    border: 1px solid #fff;
  }
  
  .autor-img {
    color: transparent;
  }
  
  /* Tipografia do autor */
  .autor-name {
    font-size: 15px;
    line-height: 18px;
    margin:0!important;
  }

  .autor a{
   color: #000;
   text-decoration: none!important;
  }
  
  .autor-description {
    font-size: 12px;
    line-height: 13px;
    margin: 0!important;
  }
  
  /* Ícones das redes sociais */
  .autor-social-icon {
    width: 1rem;
    height: 1rem;
    padding: 1rem;
    border: 1px solid;
  }
  


  /* Social Share */
  a.rounded-circle.d-flex.align-items-center.justify-content-center.text-secondary.bg-light.autor-social-icon .bi-facebook {
    color: #3b5998!important;
  }

  a.rounded-circle.d-flex.align-items-center.justify-content-center.text-secondary.bg-light.autor-social-icon .bi-twitter-x {
    color: #000!important;
  }

  a.rounded-circle.d-flex.align-items-center.justify-content-center.text-secondary.bg-light.autor-social-icon .bi-threads {
    color: #000!important;
  }

  a.rounded-circle.d-flex.align-items-center.justify-content-center.text-secondary.bg-light.autor-social-icon .bi-linkedin {
    color: #0077b5!important;
  }

  a.rounded-circle.d-flex.align-items-center.justify-content-center.text-secondary.bg-light.autor-social-icon .bi-whatsapp {
    color: #25d366!important;
  }

  

  /* Article */

  article {
    color: #000;
  }

  article hr {
    color: black;
      opacity: 0.1;
      margin-bottom: 2rem;
  }

  .img-default-content {
    border-radius: 10px;
    margin-bottom: 5px;
  }

  .captions {
    color: #000;
    font-size: 0.8rem;
    font-style: italic;
  }

  .wp-element-caption {
    color: #000;
    font-size: 0.8rem;
    font-style: italic;
  }

  article p {
    color: #000;
    font-family: var(--bs-body-font-family);
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.9rem;
  }
  
  
  p.alert-message {
    font-size: 0.9rem;
    font-style: italic;
    color: #000;
}

  article .category {
    font-size: 15px;
    color: #000;
    margin-bottom: 10px;
  }

  article .published {
    font-size: 0.8rem;
    color: #000;
  }

  article .bigode {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  article .btn-light {
    background-color: #ffffff00;
    font-weight: 400;
    font-size: 14px!important;
    color: #005cb9;
  }

  article .btn-light:hover {
    background-color: var(--bs-secondary);
    font-weight: 400;
    font-size: 14px!important;
  }

  article h1 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
  }
  article h2 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    padding-top: 15px;
  }
  article h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
  }
  article h4 {
    font-size: 18px;
    line-height: 22px;
  }
  article h5 {
    font-size: 14px;
    line-height: 18px;
  }
  article h6 {
    font-size: 12px;
    line-height: 18px;
  }
  
  article ul {
    font-size: 1.2rem;
    line-height: 1.9rem;
  
}

 article ol {
    font-size: 1.2rem;
    line-height: 1.9rem;
  
}


article li {
	padding-bottom: 0.8rem;
}

article a.wp-block-button__link.wp-element-button {
    background-color: var(--bs-green);
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 30px;
}

/* Estilize o elemento mantendo a cor final, mas sobrepondo um background-image */
.has-inline-color.has-primary-color {

  color: #000;
  font-family: var(--bs-body-font-family);
  font-weight: 400;
  position: relative;
  /* Garante a cor final (#cd2653) definida inline */
  background-color: var(--bs-box) !important;
  /* Cria um gradiente com 50% branco (cor do fundo do site) e 50% #cd2653 */
  background-image: linear-gradient(to right, white 50%, var(--bs-box) 50%);
  /* O background-image terá o dobro da largura do elemento */
  background-size: 200% 100%;
  /* Inicialmente, posiciona o gradiente de modo que apareça a parte branca */
  background-position: 100 0;
  transition: background-position 0.8s ease;
}

/* Ao adicionar a classe active, o background muda para mostrar a cor #cd2653 */
.has-inline-color.has-primary-color.active {
  background-position: 100% 0;
}

  .columnistsArticle h1 {
    font-family: "lft-etica-sheriff", serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 42px;
    letter-spacing: 0%;
    color: var(--bs-primary)!important;    
  }

  .columnistsArticle .category {
    color: var(--bs-primary)!important;    
  }

  .columnistsArticle .bigode {
    color: var(--bs-primary)!important;    
  }


  .patrocinio {
margin-right: 10px;
  }
  

  .signature i {
    color: white;
    font-size: 0.8rem;
    margin-left: 5px;
    margin-right: 10px;
  }
  


div#wpcf7-f463054-o1 {
padding: 20px 20px 0 20px!important;
}
    
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.reporterror{
  color: var(--bs-dark);
  background-color: var(--bs-secondary);
  border-radius: 30px;
  border: none;
  width: 100%;
  padding: 10px 20px 10px 20px;
  margin-bottom: 15px;
  }
  
  input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.reporterror:placeholder{
  color: white;
  
  }

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.reporterror {
  color: var(--bs-dark);
  background-color: var(--bs-secondary);
  border-radius: 10px;
  border: none;
  width: 100%;
  padding: 10px 20px 10px 20px;
  height: 150px !important;
  margin-bottom: 15px;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.reporterror:placeholder {
color: white;
}

  
  input.wpcf7-form-control.wpcf7-submit.has-spinner.reporterror{
    background-color: var(--bs-green);
    border: none;
    border-radius: 30px;
    color: #FFF;
    padding: 5px!important;
    width: 100%;
  }


input.wpcf7-form-control.wpcf7-submit.has-spinner.contatocomercial {
    background-color: var(--bs-green);
    padding: 10px 30px 10px 30px;
    border: none;
    color: white;
    border-radius: 30px;
    width: 100%;
}

 .wpcf7-response-output {
color: var(--bs-dark);
}

input.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email.midiakit {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    border-radius: 20px;
    border: 0;
    background-color: #FAEFDEFF;
    color: var(--bs-yellow);
    margin: 5px;
}
input.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email.midiakit::placeholder {

    color: var(--bs-yellow);
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    color: white;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.midiakit {
    background-color: var(--bs-yellow);
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    color: white;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.contatocomercial {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    border-radius: 20px;
    border: 0;
    background-color: #D8E3F5FF;
    color: var(--bs-dark);
    margin: 5px;

}

textarea.wpcf7-form-control.wpcf7-textarea.contatocomercial {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    border-radius: 20px;
    border: 0;
    background-color: #D8E3F5FF;
    color: var(--bs-dark);
    margin: 5px;
}

/* Menus Âncoras */

#eventos {
scroll-margin-top:160px;
}

#newsletter {
scroll-margin-top:160px;
}

#maislidas {
scroll-margin-top:160px;
}

#moeda {
scroll-margin-top:160px;
}


/* Taboola */

span.static-text.tbl-fixed-label.tbl-small-label.bottom-left {
    border-radius: 30px;
    margin: 10px;   
}
span.branding {
    color: var(--bs-dark) !important;
}
a.trc_desktop_disclosure_link.trc_attribution_position_after_branding {
    color: red !important;
    font-weight: 800;
    font-family: var(--bs-body-font-family);
}

a.trc_mobile_disclosure_link.trc_attribution_position_after_branding {
    color: red !important;
    font-weight: 800;
    font-family: var(--bs-body-font-family);
}

.tbl-read-more-box a {
    font-weight: 700!important;
    color: white!important;
    border: none!important;
    padding: 15px 30px 15px 30px!important;
    text-decoration: none!important;
    font-size: 1.3rem !important;
    
}

span.thumbnail-overlay {
    max-width: 25px !important;
}

span.trc_rbox_header_span {
    font-size: 1.2rem;
}

span.video-label.video-title.video-label-flex-cta-item.trc_ellipsis {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 700 !important;
    text-decoration: none;
}
.taboolaInArticle {
    padding: 10px;
    background-color: #fafafa;
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Truvid */
.trv-player-container {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.links-button {
    border-radius: 30px !important;
    margin-right: 10px !important;
    font-family: var(--bs-body-font-family);
}

.publicidade-legal {
 background-color: var(--bs-green);
 padding: 10px;
 color: white!important;
 text-align: center;
}

.publicidade-legal a{
 color: white!important;
 text-decoration: none;
}

.importantAccess h2 {
    color: var(--bs-primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 15px;
}

.importantAccess-btn {
    color: var(--bs-primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 10px;
    border: 3px solid;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    margin-bottom: 15px;

}