body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .projetos {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .projetos h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0066cc;
  }
  
  .projetos .descricao {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
  }
  
  .projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .projeto-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .projeto-card:hover {
    transform: translateY(-5px);
  }
  
  .projeto-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .projeto-card h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
  }
  
  .projeto-card p {
    font-size: 1rem;
    padding: 0 15px 20px;
    color: #555;
  }
  