body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 70px;
  
}

/* ======================================================================= */
/* ===             ✅ ESTILOS PARA A NOTIFICAÇÃO                       === */
/* ======================================================================= */
.cardppp3 {
  position: relative; /* Necessário para posicionar o badge corretamente */
}

.notification-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-color: red;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
  animation: bounce-in 0.5s ease;
}

@keyframes bounce-in {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}
/* ======================================================================= */


body.loaded {
  opacity: 1;
  transform: translateY(0);
}

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

header {
  background-color: white;
  padding: px 30px;
  border-bottom: 1px solid #e0e0e0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.7); /* Começa com fundo meio transparente */
}
.header-content {
  display: flex;
  justify-content: space-between; /* Logo à esquerda, botões à direita */
  align-items: center;
  padding: 10px 30px;
  background-color: white; /* Exemplo de fundo */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.logo {
  height: 40px;
}
.login-link {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.hero {
  text-align: center;
  padding: 50px 20px;
}
.hero h1 {
  font-size: 28px;
  margin-bottom: 20px;
}
.search-box {
  display: inline-flex;
  align-items: center;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
}
.search-box i {
  margin-right: 10px;
  color: #666;
}
.search-box input {
  border: none;
  outline: none;
  width: 300px;
}
.search-box button {
  background-color: #01d14f;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-left: 10px;
  border-radius: 3px;
  cursor: pointer;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  gap: 30px;
  justify-content: center;
  padding: 30px;
  min-height: 500px;
  transition: all 0.5s ease-in-out; /* Adiciona transição suave */
}

.cards.searching {
  display: flex;
  flex-wrap: wrap; /* Permite que os cards quebrem a linha */
  justify-content: center; /* Centraliza os cards horizontalmente */
  align-items: flex-start;
  gap: 30px;
}

.header-content, .nav-buttons {
  position: relative;
  z-index: 10;
}

.card {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.card h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.card p {
  font-size: 14px;
  color: #555;
}
.card i {
  font-size: 24px;
  color: #004d40;
}


.cardv {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardv h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardv p {
  font-size: 14px;
  color: #555;
}
.cardv img {
  margin-bottom: 10px;
  width: 70px;
  filter: brightness(0) saturate(100%) invert(51%) sepia(98%) saturate(524%) hue-rotate(1deg) brightness(89%) contrast(89%);
}

.cardn {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardn h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardn p {
  font-size: 14px;
  color: #555;
}
.cardn img {
  margin-bottom: 10px;
  width: 70px;
  filter: brightness(0) saturate(100%) invert(54%) sepia(99%) saturate(1163%) hue-rotate(199deg) brightness(100%) contrast(101%);
}

/* .footer {
  background-color: #000;
  color: #01d14f;
  padding: 20px 40px;
  font-family: 'Open Sans', sans-serif;
} */

.card-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  opacity: 1;
  transform: scale(1);
  display: block;
  transition: all 0.4s ease-in-out;
}

.card-link.hiding {
  transform: scale(0.9);
  opacity: 0;
  pointer-events: none; /* Impede cliques durante a animação */
}

#loading {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 20px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  color: #01d14f;
  z-index: 9999;
  text-align: center;
}
#loadings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  font-family: sans-serif;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #ccc;
  border-top: 6px solid #01d14f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


#loadings.active {
  display: flex;
}

#loadings i {
  font-size: 40px;
  color: #28a745;
  margin-bottom: 10px;
}

#loadings p {
  font-size: 18px;
  color: #28a745;
}
.card:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cardp {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardp h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardp p {
  font-size: 14px;
  color: #555;
}
.cardp img {
  margin-bottom: 10px;
  width: 70px;
  filter: brightness(0) saturate(100%) invert(67%) sepia(86%) saturate(535%) hue-rotate(251deg) brightness(94%) contrast(104%);

}
.cardp:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.cardn:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.cardv:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cardf {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardf h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardf p {
  font-size: 14px;
  color: #555;
}
.cardf img {
  margin-bottom: 10px;
  width: 70px;
  filter: brightness(0) saturate(100%) invert(34%) sepia(90%) saturate(7482%) hue-rotate(340deg) brightness(105%) contrast(106%);
}
.cardf:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cardc {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardc h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardc p {
  font-size: 14px;
  color: #555;
}
.cardc img {
  margin-bottom: 10px;
  width: 70px;
  filter: brightness(0) saturate(100%) invert(65%) sepia(29%) saturate(749%) hue-rotate(132deg) brightness(91%) contrast(101%);

}
.cardc:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
  }
}

/* Para telas pequenas (celular) */
@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr; /* 1 coluna no celular */
  }
}
.nav-buttons {
  display: flex;
  gap: 15px; /* Espaço entre os botões */
}

/* Estilo geral dos botões */
.nav-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

/* Estilo específico dos botões */
.btn-inicio,
.btn-contato {
  background-color: #01d14f;
  color: white;
}

.btn-entrar {
  background-color: #01d14f; /* Verde para o "Entrar" */
  color: white;
}

/* Hover efeito */
.nav-buttons button:hover {
  background-color: #f8f9fa;
  color:#00cc4e
}

.btn-entrar:hover {
  background-color: #218838;
}
.cardpdc {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardpdc h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardpdc p {
  font-size: 14px;
  color: #555;
}
.cardpdc img {
  margin-bottom: 10px;
  width: 70px;
  filter: brightness(0) saturate(100%) invert(44%) sepia(99%) saturate(2392%) hue-rotate(235deg) brightness(99%) contrast(101%);filter: brightness(0) saturate(100%) invert(44%) sepia(99%) saturate(2392%) hue-rotate(235deg) brightness(99%) contrast(101%);

}
.cardpdc:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}





.cardpdv {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardpdv h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardpdv p {
  font-size: 14px;
  color: #555;
}
.cardpdv img {
  margin-bottom: 10px;
  width: 70px;
  filter: brightness(0) saturate(100%) invert(19%) sepia(74%) saturate(749%) hue-rotate(255deg) brightness(88%) contrast(101%)
}
.cardpdv:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.artigos-destaque {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9fafb;
  font-family: 'Open Sans', sans-serif;
}

.artigos-destaque h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.artigos-destaque p {
  color: #666;
  margin-bottom: 40px;
}

.artigos-grid {
  display: grid;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colunas */
}

.artigo-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.artigo-card .categoria {
  display: inline-block;
  background-color: #f0f0f0;
  color: #333;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.artigo-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.artigo-card .novo {
  background-color: #22c55e;
  color: white;
  padding: 3px 8px;
  font-size: 10px;
  border-radius: 8px;
  margin-left: 8px;
}

.artigo-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
}

.artigo-card .info {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #888;
}
.artigo-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.artigo-card.show {
  opacity: 1;
  transform: translateY(0);
}
.artigo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.artigo-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.artigo-card .novo {
  background-color: #22c55e;
  color: white;
  padding: 3px 8px;
  font-size: 10px;
  border-radius: 8px;
  margin-left: 8px;
  animation: brilho 1.5s infinite alternate;
  box-shadow: 0 0 5px #22c55e;
}

@keyframes brilho {
  0% {
    box-shadow: 0 0 5px #22c55e;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 15px #22c55e, 0 0 30px #22c55e;
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 5px #22c55e;
    transform: scale(1);
  }
}
.artigos-destaque,
footer {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

footer.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}


header.scrolled {
  background-color: rgba(255, 255, 255, 0.80); /* Fica quase sólido ao rolar */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20); /* Pequena sombra ao rolar */
}

/* body {
  padding-top: 70px;
} */
.social-links a {
  margin: 0 10px;
  display: inline-block;
}

.cards.centralizado {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.social-links img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}

.social-links a:hover img {
  transform: scale(1.1);
}

.fade-in {
   animation: fadeIn 0.3s ease forwards;
}
.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

/* @keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.98); }
} */

/* Keyframes */
@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animação de entrada */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.95); }
}

.page-enter {
  animation: fadeIn 0.6s ease-out;
}


@keyframes fadeOutScale {
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

.hide {
  display: none !important;
}


.artigo-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.whatsapp-float {
  position: fixed;
  bottom: 31px;
  right: 15px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 40px; /* Ajuste conforme o tamanho da sua imagem */
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}
.cardppp {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardppp h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardppp p {
  font-size: 14px;
  color: #555;
}
.cardppp img {
  margin-bottom: 10px;
  width: 70px;
  filter: brightness(0) saturate(100%) invert(89%) sepia(91%) saturate(1925%) hue-rotate(359deg) brightness(103%) contrast(104%);
 
}
.cardppp:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.cards .card-link .cardv,
.cards .card-link .cardn,
.cards .card-link .cardp,
.cards .card-link .cardf,
.cards .card-link .cardc,
.cards .card-link .cardpdv,
.cards .card-link .cardpdc,
.cards .card-link .cardppp {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards .card-link .cardv:hover,
.cards .card-link .cardn:hover,
.cards .card-link .cardp:hover,
.cards .card-link .cardf:hover,
.cards .card-link .cardc:hover,
.cards .card-link .cardpdv:hover,
.cards .card-link .cardpdc:hover,
.cards .card-link .cardppp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.cards .card-link > div {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards .card-link > div:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.count {
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}

/* @keyframes fadeIn {
  to {
    opacity: 1;
  }
} */
.footer {
  background-color: #000;
  color: #28a745;
  padding: 20px 40px;
  font-family: 'Open Sans', sans-serif;
  height: 52px;
  overflow: hidden;
  padding-top: 17px;
  font-size: 14px;
  margin-top: auto;
}

footer p {
  margin-bottom: 14px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ffffff; /* Azul claro no hover */
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.logo-area img {
  max-height: 30px;
  margin-right: 10px;
}

.footer-nav a {
  margin-right: 15px;
  font-size: 14px;
}


.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: -10px;
  /* margin-top: -30px; */
  margin-right: 30px;
}

/* .social-icons a {
  margin-right: 10px;
} */

.social-icons img {
  width: 37px;
  height: 37px;
  border-radius: 50%; /* deixa redondo se quiser */
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons img:hover {
  background-color: #fffdfd;
  transform: scale(1.1); /* aumenta levemente */
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 9px;
  font-size: 12px;
}

.footer-bottom a {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #28a745;
    transform: translateY(-60px);
    margin-top: 1px;
    /* margin-left: 50px; */
}

.fante-dev {
  display: flex;
  align-items: center;
}

.fante-dev img {
  max-height: 20px;
  margin-left: 5px;
}
.cardppp1 {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardppp1 h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardppp1 p {
  font-size: 14px;
  color: #555;
}
.cardppp1 img {
  margin-bottom: 10px;
  width: 70px;
   filter: brightness(0) saturate(100%) invert(22%) sepia(61%) saturate(868%) hue-rotate(130deg) brightness(93%) contrast(89%);
}
.cardppp1:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cardppp2 {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardppp2 h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardppp2 p {
  font-size: 14px;
  color: #555;
}
.cardppp2 img {
  margin-bottom: 10px;
  width: 70px;
  filter: brightness(0) saturate(100%) invert(85%) sepia(16%) saturate(3495%) hue-rotate(24deg) brightness(91%) contrast(92%);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #333;
  cursor: pointer;
  z-index: 1001;
  margin-right: 16px;
}

/* Esconde o menu e botão por padrão em desktop */
.menu-toggle-esquerda,
.menu-lateral-esquerda,
.overlay-esquerda {
  display: none;
}

/* Aplica quando for celular */
@media (max-width: 768px) {
  /* Botão de abrir menu (ícone hambúrguer) */
  .menu-toggle-esquerda {
    position: fixed;
    top: 20px;
    left: 14px;
    background: none;
    border: none;
    font-size: 24px;
    z-index: 1001;
    cursor: pointer;
    color: #00cc4e;
    display: block;
    top:20px;
    position: absolute;
  }

  /* Overlay escuro por trás */
  .overlay-esquerda {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    display: none;
  }

  .overlay-esquerda.ativo {
    display: block;
  }

  /* Menu lateral à esquerda */
  .menu-lateral-esquerda {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    z-index: 1002;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .menu-lateral-esquerda.ativo {
    left: 0;
  }

  /* Cabeçalho do menu com logo e botão fechar */
  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
  }

  .logo-menu {
    height: 30px;
  }

  .fechar-menu {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }

  /* Lista de links */
  .menu-lateral-esquerda ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    margin-top: 25%;
    position: absolute;
    margin-left: 30%;
  }

  .menu-lateral-esquerda li {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }

  .menu-lateral-esquerda a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: block;
  }

  /* Rodapé do menu */
  .menu-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: #01d14f;
  }
}

menu-esquerdo

.mobile-menu-slide {
  position: fixed;
  top: 0;
  left: -250px; /* esconde fora da tela */
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1001;
  padding-top: 60px;
}

.mobile-menu-slide ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-slide li a {
  display: block;
  padding: 16px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.mobile-menu-slide li a:hover {
  background-color: #f5f5f5;
}

.menu-esquerdo1 {
  margin-top: 10px
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: none;
}

.mobile-menu-slide.ativo {
  left: 0;
}

.overlay.ativo {
  display: block;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-buttons {
    display: none;
  }
}


.cardppp2:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cardppp3 {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardppp3 h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardppp3 p {
  font-size: 14px;
  color: #555;
}
.cardppp3 img {
  margin-bottom: 10px;
  width: 70px;
  /* Este filtro converte um elemento PRETO para ROSA PINK */
filter: brightness(0) saturate(100%) invert(12%) sepia(97%) saturate(5770%) hue-rotate(313deg) brightness(95%) contrast(102%);
}
.cardppp3:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cardppp4 {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardppp4 h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardppp4 p {
  font-size: 14px;
  color: #555;
}
.cardppp4 img {
  margin-bottom: 10px;
  width: 70px;
  filter: brightness(0) saturate(100%) invert(53%) sepia(87%) saturate(2173%) hue-rotate(253deg) brightness(94%) contrast(103%);
}
.cardppp4:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cardppp5 {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cardppp5 h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardppp5 p {
  font-size: 14px;
  color: #555;
}
.cardppp5 img {
  margin-bottom: 10px;
  width: 70px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(33%) saturate(6422%) hue-rotate(309deg) brightness(94%) contrast(97%);
}
.cardppp5:hover {
  background-color: #f0f0f0; /* Um cinza bem leve */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cardppp6 {
  background-color: white;
  border-radius: 8px;
  width: 250px; /* Defina uma largura fixa */
  min-height: 180px; /* Altura mínima para garantir uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cardppp6 h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.cardppp6 p {
  font-size: 14px;
  color: #555;
}
.cardppp6 img {
  margin-bottom: 10px;
  width: 70px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(61%) saturate(868%) hue-rotate(130deg) brightness(93%) contrast(89%);
}
.cardppp6:hover {
  background-color: #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
@media (max-width: 768px) {
  /* body {
    padding-top: 60px;
  } */

  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 4px;
  }

  .logo {
    height: 35px;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .search-box input {
    width: 180px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px;
  }

  .card,
  .cardv,
  .cardn,
  .cardp,
  .cardf,
  .cardc,
  .cardpdc,
  .cardpdv,
  .cardppp,
  .cardppp1,
  .cardppp2,
  .cardppp3,
  .cardppp4,
  .cardppp5,
  .cardppp6 {
    width: 100%;
    max-width: 250px;
    margin: auto;
  }

  .footer {
    padding: 15px 15px;
    height: auto;
    align-items: column;
    flex-direction: column;
    gap:1px; /* junta mais os ícones no celular */
    justify-content: center; /* opcional: centraliza */
    height: 150px;
    display: flex;
  }

  .footer-top {
    align-items: center;
    text-align: center;
    margin-top: 10px;
    margin-right: 5px;
  }
.footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom a {
    transform: translateY(0);
    margin-left: 18px;
  }

  .logo-area img {
    margin-left: 0;
    margin-right: 0;
  }

   .social-icons {
    display: flex;
    justify-content: center; /* ou flex-start */
    gap: 10px;
    margin-left: 0; /* remove empurrão pra direita */
  }

  .social-icons a {
    margin-right: 8px; /* usa só o gap, então zera a margin */
  }

  .social-icons a:last-child {
    margin-right: -30px;
  }

  .nav-buttons {
    gap: 10px;
    align-items: center;
  }

  .nav-buttons button {
    width: 100%;
    max-width: 200px;
  }

  .artigos-grid {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .artigos-destaque h2 {
    font-size: 22px;
  }

  .artigos-destaque p {
    font-size: 14px;
  }

  .artigo-card h3 {
    font-size: 16px;
  }

  .artigo-card p {
    font-size: 13px;
  }
  .search-box {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 5px;
    gap: 5px;
    margin-top: 50px;
  }

  .search-box input {
    width: 100%;
    flex: 1;
    margin: 0;
  }

  .search-box button {
    flex-shrink: 0;
    padding: 10px 15px;
    font-size: 14px;
  }
}
.menu-lateral-esquerda {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background: white;
  transition: left 0.3s ease;
  z-index: 10000;
}
.menu-lateral-esquerda.ativo {
  left: 0;
}
.overlay-esquerda {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.overlay-esquerda.ativo {
  opacity: 1;
  visibility: visible;
}
main.sections {
  flex: 1;
}
.icon-clock {
  color: #01d14f; /* azul */
}
.icon-heart {
  color: #01d14f;
}
.icon-eye {
  color: #01d14f;
}
/* Loader Overlay */
/* Overlay de fundo */
#loader-overlay {
  position: fixed;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dot-circle-loader {
  position: relative;
  width: 80px;
  height: 80px;
}

.dot-circle-loader .dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #01d14f;
  border-radius: 50%;
  animation: dot-spin 1.2s linear infinite;
}

.dot-circle-loader .dot:nth-child(1) { top: 0; left: 35px; animation-delay: 0s; }
.dot-circle-loader .dot:nth-child(2) { top: 10px; left: 60px; animation-delay: 0.1s; }
.dot-circle-loader .dot:nth-child(3) { top: 35px; left: 70px; animation-delay: 0.2s; }
.dot-circle-loader .dot:nth-child(4) { top: 60px; left: 60px; animation-delay: 0.3s; }
.dot-circle-loader .dot:nth-child(5) { top: 70px; left: 35px; animation-delay: 0.4s; }
.dot-circle-loader .dot:nth-child(6) { top: 60px; left: 10px; animation-delay: 0.5s; }
.dot-circle-loader .dot:nth-child(7) { top: 35px; left: 0; animation-delay: 0.6s; }
.dot-circle-loader .dot:nth-child(8) { top: 10px; left: 10px; animation-delay: 0.7s; }

@keyframes dot-spin {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.5); opacity: 0.3; }
}