
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #fff;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
}
.logo {
  height: 45px;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 20px;
}
.botao-contato {
  border: 1px solid #D3B0FF;
  padding: 8px 20px;
  border-radius: 30px;
  color: #631299;
  font-weight: 500;
}

.botao-contato:hover {
  background-image: linear-gradient(90deg, #7f3ce0, #ff6a00);
  color: white;
  -webkit-text-fill-color: white;
  background-clip: border-box;
}

.main-container {
  padding: 40px 48px;
  max-width: 1240px;
  margin: auto;
}


.categoria {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 23px;
  font-weight: 500;
  color: #8A4FFF; /* tom lilás mais vibrante */
}

.categoria span {
  white-space: nowrap;
}

.categoria .linha {
  flex: 1;
  height: 2px;
  background-color: #D0A6FF; /* lilás claro */
  opacity: 0.6;
}
.titulo {
  font-size: 35px;
  font-weight: 700;
}
.destaque {
   background: linear-gradient(90deg, #7B61FF, #D57BBE, #DA7A84);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
  text-decoration: none;
}
.noticia {
  background: #faf3ff;
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: black;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(99, 18, 153, 0.08);
}

.noticia:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(99, 18, 153, 0.2);
}


.noticia p {
  font-size: 20px;
}
.noticia strong {
  font-weight: 700;
}
.noticia .icone {
  width: 40px;
  height: 40px;
}

.noticias-grid.limitada .noticia {
  display: none;
}

.noticias-grid.limitada .noticia:nth-child(-n+6) {
  display: flex; /* ou inline-flex dependendo do layout */
}

.ver-mais-container {
  text-align: center;
  margin-top: 40px;
}


.ver-mais {
  padding: 10px 28px;
  border: 2px solid transparent;
  border-radius: 25px;
  background: white;
  font-weight: 500;
  color: black;
  cursor: pointer;
  background-image: linear-gradient(white, white), linear-gradient(90deg, #7f3ce0, #ff6a00);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.4s ease;
}

.ver-mais:hover {
  background-image: linear-gradient(90deg, #7f3ce0, #ff6a00);
  color: white;
}

.footer {
  margin-top: 60px;
  padding: 40px;
  background: #f2f2f2;
  text-align: center;
}
.logo-footer {
  height: 35px;
  margin-bottom: 8px;
}
