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

    /* Menu principal */
ul.navbar-nav>li.nav-item>a.nav-link {
    color: white;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    padding: 20px;
    margin-right: 10px;
}

ul.navbar-nav>li.nav-item>a.nav-link:hover {
    color: var(--azul_secundario);
    transition: all 0.3s ease-in-out;
}



/* Notícias home */

.noticia_capa_home { 
    display: table;
    height: auto;
    width: auto;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    margin-bottom: 10px;
  }
  
  .noticia_capa_home:hover { 
    opacity: 0.9;
    transition: all 0.2s ease-in-out;
  }
  
  .foto_capa_home { 
    overflow: hidden;
    display: block;
    width: 100%;
    height: 200px;
  }
  
  .foto_capa_home img {
  max-height: 100%;
  min-height: 200px;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
  overflow: hidden;
  }
  
  .noticia_capa_home img:hover {
  transform: scale(1.1);
  }
  
  
  .bloco_legenda_noticia_capa_home {
    display: table;
    width: 100%;
    height: auto;
    background-color:white;
    overflow: hidden;
  }
  
  .legenda_noticia_capa_home { 
    display: table;
    height: auto;
    color: var(--azul_principal);
    font-size: 18px;
    line-height: 22px;
    padding: 5px 10px;
    font-weight: 800;
  }
  
  .data_noticia_capa_home { 
    display: table;
    height: 23px;
    color: var(--azul_secundario);
    font-size: 15px;
    font-weight: bold;
    padding: 5px 10px;
  
  }
  
  .margem_noticias_capa { 
    margin-bottom: 10px;
  }

}