/* Projetos e os cards */

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
  
  .card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    flex: 1;
    text-align: left;
  }
  
  .card h3 {
    margin-bottom: 10px;
    color: var(--base1);
  }
  
  .card p {
    margin-bottom: 15px;
    font-size: var(--font-size-p);
    line-height: 1.6;
    text-align: justify;
  }