/* NOVO CSS */
/* ==========================================================================
       1. RESET E CONFIGURAÇÕES GERAIS
       ========================================================================== */
@charset "UTF-8";

* {
  box-sizing: border-box;
  border: none;
}

body {
  margin: 0;
  padding: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #111;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.width-100 {
  width: 100%;
}

.width-50 {
  width: 50%;
}

.box-left {
  width: 50%;
}

.box-right {
  width: 50%;
}

/* HEADER */
/* ==========================================================================
   1. CONFIGURAÇÕES GERAIS E RESET
   ========================================================================== */
:root {
--primary-gradient: linear-gradient(to right, #15254b, #1e3569, #0f172a);
  --sidebar-bg: #15254b;
  --white: #ffffff;
  --white-alpha: rgba(255, 255, 255, 0.2);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



/* Cores de Texto por Categoria */

.before-artigo-ultimas:before {
    background-color: #005cef!important;
}
.before-artigo-geral:before {
    background-color: #d80000!important;
}
.before-artigo-regiao:before {
    background-color: #343334!important;
}
.before-artigo-cultura:before {
    background-color: #2b5e10!important;
}
.before-artigo-esporte:before {
    background-color: #e66d02!important;
}
.before-artigo-policia:before {
    background-color: #12b2ff!important;
}
.before-artigo-politica:before {
    background-color: #8f560f!important;
}
.before-artigo-cotidiano:before {
    background-color: #7b03a3!important;
}


.ultimas-t {
  color: #005cef!important;
}

.geral-t {
 color: #d80000!important;
}

.regiao-t {
    color: #343334!important;
}

.cultura-t {
  color: #2b5e10!important;
}

.esporte-t {
     color: #e66d02!important;
}

.policia-t {
     color: #12b2ff!important;
}
.politica-t {
  color: #8f560f!important;
}
.cotidiano-t {
  color: #7b03a3!important;
}

/* ==========================================================================
   2. HEADER PRINCIPAL
   ========================================================================== */
/* TEMPO */
.currentWeather {
width: 162px;
    background: #ffdede;
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.w-icon {
    display: flex;
    justify-content: space-evenly;
}
#weatherWidget .currentTemp {
    color: #434343;
    font-size: 16px;
    font-weight: 700;
}
/* TEMPO */

   header.header-site {
  background: var(--primary-gradient);
  border-bottom: 1px solid var(--white-alpha);
}

.header-bg {
  color: var(--white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.logo p {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 0px;
  margin: auto 0;
}

.box-header-bt-left,
.nav-icons {
  width: 145px;
  display: flex;
  align-items: center;
}

.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  position: relative;
  padding: 5px;
}

/* Linha divisória vertical ao lado do menu */
button#menuToggle:before {
  content: "";
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

button#openSearchModal {
  margin-left: 20px;
}

.logo a img {
  width: 115px;
  display: block;
}

.nav-icons {
  justify-content: flex-end;
}

.nav-icons a {
  margin-left: 8px;
  transition: opacity 0.2s;
}

.nav-icons a:hover {
  opacity: 0.8;
}

.nav-icons img {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   3. NAVEGAÇÃO HORIZONTAL (DESKTOP)
   ========================================================================== */
.nav-horizontal {
 /*  background: var(--primary-gradient); */
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-horizontal ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.nav-horizontal li {
  position: relative;
}

.nav-horizontal a,
.nav-horizontal .dropdown-trigger {
  text-decoration: none;
  font-weight: bold;
  padding: 15px 12px;
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
}

.nav-horizontal a:hover,
.nav-horizontal .dropdown-trigger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Faz o botão do dropdown se comportar visualmente como um link */
.nav-horizontal .dropdown-trigger,
.sidebar .dropdown-trigger {
  background: none !important;
  border: none !important;
  padding: 15px 12px;
  margin: 0;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  /*  gap: 8px; */
  /* Espaço entre o texto e a setinha */
  width: 100%;
}

/* Garante que o hover seja igual ao dos outros links */
.nav-horizontal .dropdown-trigger:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Ajuste específico para a setinha não quebrar linha */
.nav-horizontal .dropdown-trigger i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

/* No hover do desktop, a setinha pode girar levemente */
.nav-horizontal .dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

/* Dropdown Desktop */
.nav-horizontal .dropdown-content {
  display: none;
  position: absolute;
  background-color: #b71c1c;
  /* Tom mais escuro para o fundo */
  top: 100%;
  left: 0;
  min-width: 180px;
  z-index: 100;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.nav-horizontal .dropdown-content a {
  padding: 12px 15px;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-horizontal .dropdown:hover .dropdown-content {
  display: block;
}

.nav-horizontal .dropdown-content {
  display: none;
  position: absolute;
  background-color: #b71c1c;
  /* Cor sólida para o menu que desce */
  top: 100%;
  /* Cola exatamente abaixo do menu pai */
  left: 0;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 0;
  list-style: none;
  border-radius: 0 0 4px 4px;
}

.nav-horizontal .dropdown-content li a {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  font-weight: normal;
  /* Itens internos geralmente são menos "pesados" que o principal */
}

.nav-horizontal .dropdown-content li:last-child a {
  border-bottom: none;
}

/* Exemplo de foco elegante para os links do menu */
nav a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Estiliza automaticamente o link da página em que o usuário está */
nav a[aria-current="page"] {
  color: #000000;
  /* Cor de destaque */
  border-bottom: 3px solid #000000;
  pointer-events: none;
  /* Evita que o usuário clique novamente na mesma página */
}

/* ==========================================================================
   4. SIDEBAR (MOBILE)
   ========================================================================== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 999;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background-color: var(--sidebar-bg);
  color: var(--white);
  padding: 20px;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
}

.sidebar.active {
  left: 0;
}

.sidebar-overlay.active {
  display: block;
}

.sidebar .close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  float: right;
  cursor: pointer;
  margin-bottom: 30px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar a,
.sidebar button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
}

.sidebar .dropdown-content {
  display: none;
  padding-left: 20px;
  background-color: rgba(0, 0, 0, 0.049);
}

.sidebar .dropdown.open .dropdown-content {
  display: block;
}

/* ==========================================================================
   5. MODAL DE BUSCA
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: var(--white);
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #333;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.input-pesquisa {
  width: 100%;
  border: none;
  padding: 12px;
  border-bottom: 2px solid #ccc;
  margin: 20px 0;
  font-size: 1.1rem;
  outline: none;
  transition: border-color 0.3s;
}

.input-pesquisa:focus {
  border-color: #d62828;
}

#searchBtn {
  width: 100%;
  padding: 12px;
  background-color: #d62828;
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s;
}

#searchBtn:hover {
  background-color: #bb2020;
}

/* ==========================================================================
   6. AJUSTES RESPONSIVOS
   ========================================================================== */
@media (max-width: 768px) {


  .box-header-bt-left,
  .nav-icons {
    width: auto;
    /* Permite que os ícones se ajustem */
  }

  .logo a img {
    width: 100px;
  }
}

/* Responsivo */

@media screen and (max-width: 1111px) {
  nav ul li {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
}

@media(max-width: 450px) {

  .box-header-bt-left,
  .nav-icons {
    width: auto;
  }


}

@media(max-width: 380px) {
  .logo a img {
    width: 70px;
  }

  .nav-icons img {
    width: 22px;
  }

  .nav-icons a {
    margin-left: 2px;
  }
}

/* HEADER */


/* FOOTER */
footer {
   background: #15254b;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 5px;
}
p.p-footer-direitos {
    background: inherit;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 5px 0px 2px 0px;
}

/* ==========================================================================
       2. ESTRUTURA DE LAYOUT
       ========================================================================== */
.container {
  width: 98%;
  max-width: 1300px;
  margin: 0px auto;
  padding: 1%;
}
.container-100 {
margin: 0;
padding: 0;
}


/* ==========================================================================
       3. TIPOGRAFIA
       ========================================================================== */
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02rem;
  margin-bottom: 1rem;
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01rem;
  margin: 0;
  padding: 0;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  color: #1a1a1a;
  transition: color 0.2s ease;
  letter-spacing: -0.01rem;
  margin: 0;
  padding: 0;
}

h4 {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 5px;
    color: #0a0a0a;
    margin-bottom: 0;
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.grid-width-100 {
  grid-column: auto;
  /*  grid-column: 1 / -1; */
}

.box-left-topo {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
     padding-right: 3rem;
}

.box-right-topo {
  border-left: 1px solid #e9e9e9;
      padding-left: 3rem;
}


.box-artigo-topo {
  display: grid;
  grid-template-columns:5fr 5fr;
  align-items: stretch;
  padding: 0% 1%;
  padding-top: 30px;
}








/* REGRAS ARTIGO PRINCIPAL */

.grupo-2-col {
  column-count: 2;
  column-gap: 3rem;
}
.grupo-2-col article {
    margin-bottom: -5px;
}
.grupo-2-col .div-artigo-principal header {
  top: -8px;
}

.grupo-2-col .div-artigo-principal h3 {
  padding-top: 8px;
}



.div-artigo-principal {

  height: 100%;

}

article figure img {
  border-radius: 8px;
}

.div-artigo-principal header {
  background: #fff;
  border-top-right-radius: 8px;
  width: 90%;
  padding-right: 1%;
  position: relative;
  top: 0;
}



.div-artigo-principal figure {
  position: relative;
  width: 100%;
  height: 190px;
  flex-shrink: 0;
  margin: 0;
}

.gravata-artigo {
    position: relative;
    top: 26px;
    left: 0px;
    font-size: 1rem;
    background: #fff;
    color: #15254b;
    padding: 5px 8px;
/*     box-shadow: 1px -17px 5px #3b3b3b40; */
    border-bottom-right-radius: 5px;
}
span.gravata-artigo:before {
    content: "";
    width: 3px;
    height: 1.1rem;
    background-color: #15254b;
    display: inline-block;
    border-radius: 8px;
    top: 8px;
    position: absolute;
    left: 0;
}
span.gravata-topo:before {
    top: 6px;
}
.div-artigo-principal img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}


.div-artigo-principal h3 {
  font-size: 1.1rem;
  -webkit-line-clamp: 3;
  margin-top: 5px;
}

/* REGRAS ARTIGO PRINCIPAL */




/* ==========================================================================
       7. ARTIGO MANCHETE TEXTO
       ========================================================================== */
.artigo-manchete-texto {
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
  margin-top: 13px;
  border-bottom: 1px solid #e9e9e9;
}

.div-manchete-texto span {
  margin-left: 0;
}



.div-manchete-texto h2:before {
  content: "";
  width: 5px;
  height: 2rem;
  background-color: #15254b;
  display: inline-block;
  border-radius: 8px;
  top: 3px;
  position: relative;
}

/* ==========================================================================
       7. ARTIGO MANCHETE TEXTO
       ========================================================================== */




/* MANCHETE GRANDE FOTO */

.div-artigo-principal.div-manchete-foto {
  position: relative;
}

.article-manchete-foto {
  flex: 1;
}

.div-manchete-foto header h3 {
  font-size: 1.5rem;

}

.div-artigo-principal.div-manchete-foto header {
  position: absolute;
  border-bottom-right-radius: 12px;
  top: -38px;
  padding-bottom: 1%;
  box-shadow: 5px 4px 5px #3d3d3d24;
}

figure.figure-manchete-foto {
  height: 100%;
}

.div-manchete-foto header h3:before {
  content: "";
  width: 3px;
  height: 1.5rem;
  background-color: #15254b;
  display: inline-block;
  border-radius: 8px;
  top: 3px;
  position: relative;
}

/* MANCHETE GRANDE FOTO */





/* HORIZONAL SECUNDARIO */
aside.box-artigos-lista-secundarios {
padding-left: 20px;
    border-left: 1px solid #e9e9e9;
}




/* LISTA SECUNDARIO */
.div-grupo-conteudo.div-grupo-conteudo-secundario {
 gap: 3rem;
    display: grid;
    grid-template-columns: 17fr 6fr;
    align-items: stretch;

}
.div-artigo-principal.div-principal-lista.div-lista-grande figure {
    height: 170px;
}

p.titulo-section {
    font-weight: 600;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 10px;
    margin-top: 0px;
}
.box-artigo-col-duplo-lista-grande {
display: flex;
    gap: 3rem;
    border-bottom: 1px solid #efefef;
    margin-bottom: 35px;
}


/* ARTIGO GRUPO BLOCO */
.artigos-grupo-bloco {
  padding: 1%;

}


.div-grupo-conteudo {
  gap: 3rem;
  display: grid;
  grid-template-columns: 9fr 9fr 6fr;
  align-items: stretch;
}
.div-grupo-conteudo-4 {
  gap: 3rem;
  display: grid;
  grid-template-columns: 3fr 3fr 3fr 3fr;
  align-items: stretch;
}

.avoid-div {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.div-artigo-grupo figure {
  width: 100%;
  height: 445px;
  flex-shrink: 0;
  overflow: hidden;
  margin: 0px;
}

.div-artigo-grupo h3 {
  font-size: 1.3rem;
  -webkit-line-clamp: 3;
  margin-top: 5px;
}


/* ARTIGO DUPLO COLUNADO */
.box-artigo-col-duplo figure {
  height: 185px;
}

.box-artigo-col-duplo h3 {
  font-size: 1rem;
}
.article-principal-grupo{
    margin-bottom: -31px;
}
.box-artigo-col-duplo article:first-of-type {
    margin-bottom: 0px !important;
}

/* BLOCO LISTA */
.div-grupo-conteudo-lista {
  gap: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}
.div-artigo-principal.div-principal-lista {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.article-principal.article-principal-lista {
  margin-bottom: 25px;
}

.div-principal-lista figure {
  width: 35%;
  height: 90px;
}

.div-artigo-principal.div-artigo-grupo .gravata-artigo {
  position: absolute;
  top: -21px;
  border-top-right-radius: 8px;
}

.div-artigo-principal.div-artigo-grupo header {
    padding-top: 8px;
    top: -32px;
}

.div-principal-lista .gravata-artigo {
    position: relative;
    top: inherit;
}

.div-principal-lista header {
width: 100%;
    margin-top: 0px;
    padding-right: 0%;
    background: none;
}

/* GRUPO 1 ARTIGO + LISTA */
.box-quadrado-lista .article-principal-grupo figure {
    width: 100%;
    height: 250px;
    flex-shrink: 0;
    overflow: hidden;
    margin: 0px;
}


.lista-noticias {
  height: min-content;
    padding: 0px 0px 0px 25px;
    break-inside: avoid;
    border-left: 1px solid #e5e5e5;

}


.lista-noticias p {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: -0.02rem;
  margin: 0px 0px 15px 0px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-inline {
  margin: 15px 0px 0px 0px;
}

.card-inline a {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}


.card-inline header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.card-inline h3 {
  font-size: 0.9rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: underline;
}

.card-inline h3:before {
  content: "";
  width: 3px;
  height: 1rem;
  background-color: #15254b;
  display: inline-block;
  border-radius: 8px;
  top: 3px;
  position: relative;
  margin-right: 5px;
}


/* ==========================================================================
       9. CARD GRUPO WHATSAPP
       ========================================================================== */
.newslatter-whatsapp {
 background: #0f172a;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 40px;
}
.box-grupo-whats {
    background: #e11d48;
    border-radius: 12px;
    padding: 0.7rem 1.9rem;
}
svg.bi.bi-whatsapp {
    fill: #ffffff;
        width: 50px;
            height: 50px;
}
p.p-news-whats {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
      margin-bottom: 10px;
}
p.p-news-whats-detalhes {
    color: #94a3b3;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0;
}
a.btn-whatsapp-grupo {
background: #e11d48;
    padding: 0.8rem 0rem;
    width: 90%;
    text-align: center;
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
}


/* ARTIGOS 5 */
.div-grupo-conteudo-5 {
gap: 3rem;
    display: grid;
    grid-template-columns: 6fr 9fr 6fr;
    align-items: stretch;
}



/* PUBLICIDADE  */
/* LATERAL */
.publicidade-dupla-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 100%;
    flex-direction: column;
}

/* BANNER PUB HORIZONTAL */
aside.publicidade-container {
    margin: 60px 0px 30px 0px;
}
.publicidade-wrapper {
     width: 98%;
    max-width: 1300px;
    margin: 0px auto;
    padding: 1%;
}img.publicidade-imagem {
    width: 100%;
    height: auto;
}
article.article-principal.article-principal-grupo.avoid-div.article-1-lista-vert {
    margin-bottom: 5px;
}
@media (max-width: 1000px) {

  .box-artigo-topo {
    grid-template-columns: 1fr 1fr;
  }

 
}

@media (max-width: 900px) {


  .div-grupo-conteudo {
    gap: 0.8rem;
  }

  .div-manchete-foto header h3 {
    font-size: 1.2rem;
  }


  .div-artigo-grupo h3 {
    font-size: 1.1rem;
  }

  .div-principal-lista figure {
    height: 95px;
  }
}


@media (max-width: 800px) {

  .box-artigo-topo {
    grid-template-columns: 1fr 1fr;
  }

  .grupo-2-col {
    column-gap: 1rem;
  }

  .logo p {
    font-size: 0.8rem;
  }

  .nav-icons img {
    width: 20px;
    height: 20px;
    margin-left: 2px;
  }
}

@media (max-width: 600px) {
  .box-artigo-topo {
    grid-template-columns: 1fr;

  }

  figure.figure-manchete-foto {
    height: 360px;
  }

  .article-manchete-foto {
    margin-bottom: 30px;
  }

  .box-right-topo {
    border-left: none;

  }
}

@media (max-width: 500px) {
 

}


@media (max-width: 400px) {
  .grupo-2-col {
    column-count: 1;
  }

  .div-artigo-principal figure {
    height: 190px;

  }
}

@media (max-width: 350px) {
  
}


/* ARTIGO COL PEQUENO */
.box-artigo-lista-destaque {
  display: flex;
  flex-direction: row;
  /*  gap: 25px; */
  /* margin: 4% 0%; */
  flex-wrap: wrap;
  justify-content: space-between;
}



.artigo-col-pequeno {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* gap: 15px; */
}

.artigo-col-pequeno figure {
  height: 90px;
  width: 90px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.artigo-col-pequeno img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  object-position: center center;
}

.artigo-col-pequeno .meta-info {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px;
}

.artigo-col-pequeno h3 {
  font-size: 0.9rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}