
.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3858D9;
    padding: 10px 20px;
    color: white;
}

.menu-left {
    display: flex;
    align-items: center;
}

.menu-left img {
    height: 70px;
    margin-right: 20px;
}

.menu-left a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    padding: 8px 12px;

}

.menu-left a:hover {
    background-color: #2C00DB;
    border-radius: 4px;
}

.menu-right button {
    margin-left: 10px;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.register-btn {
    background-color: #5CB0F5;
    color: white;
    width: 130px;
}

.login-btn {
    background-color: #5CB0F5;
    color: white;
    width: 130px;
    margin-top: 5px;
}

.register-btn:hover, .login-btn:hover {
    opacity: 0.8;
} 
 
 
 body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f5f5f5;
      color: #333;
    }
    header {
      background-color: #003366;
      color: #fff;
      padding: 1rem;
      text-align: center;
    }
    .container {
      max-width: 900px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
    .filter {
      display: flex;
      flex-wrap: nowrap;
      gap: 10px;
      align-items: center;
      margin-bottom: 20px;
      overflow-x: auto;
    }
    .filter label {
      white-space: nowrap; 
      font-weight: bold;
      margin-right: 5px;
    }
    .filter select {
      min-width: 120px; /* largura mínima pra selects, pode ajustar */
      max-width: 160px;
      padding: 4px 8px;
      font-size: 14px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .noticia {
      background: #fff;
      border-radius: 8px;
      margin-bottom: 2rem;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
    }
    .noticia img {
      width: 100%;
      height: auto;
    }
    .noticia-content {
      padding: 1rem;
    }
    .noticia-content h3 {
      margin-top: 0;
    }
    .noticia-content a {
      color: #003366;
      text-decoration: none;
    }
    .noticia-content a:hover {
      text-decoration: underline;
    }
    @media (min-width: 700px) {
      .noticia {
        flex-direction: row;
      }
      .noticia img {
        width: 300px;
        height: 200px;
        object-fit: cover;
      }
      .noticia-content {
        flex: 1;
      }
    }