/* Estilos específicos para a página de notícias */
    .news-page main {
      padding-bottom: 50px;
    }

    .news-hero {
      text-align: center;
      margin: 30px 0;
      padding-bottom: 20px;
      border-bottom: 2px solid var(--secondary);
    }

    .news-hero h1 {
      color: var(--primary);
      font-family: var(--font-title);
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .news-categories {
      display: flex;
      gap: 15px;
      margin: 20px 0;
      flex-wrap: wrap;
      justify-content: center;
    }

    .news-category-btn {
      padding: 8px 15px;
      background-color: #f5f5f5;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s;
      font-weight: 600;
    }

    .news-category-btn.active {
      background-color: var(--primary);
      color: white;
    }

    .news-category-btn:hover {
      background-color: #e0e0e0;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .news-card {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s;
    }

    .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .news-image {
      height: 180px;
      background-size: cover;
      background-position: center;
    }

    .news-content {
      padding: 20px;
    }

    .news-category {
      display: inline-block;
      padding: 3px 10px;
      background-color: var(--secondary);
      color: var(--dark);
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .news-title {
      margin: 0 0 10px 0;
      color: #333;
      font-size: 1.2rem;
    }

    .news-excerpt {
      color: #666;
      margin-bottom: 15px;
      font-size: 0.9rem;
    }

    .news-meta {
      display: flex;
      justify-content: space-between;
      font-size: 0.8rem;
      color: #999;
    }
