/* Configuração geral */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  h1 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
  }
  
  /* Estilo do grid */
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .faq-item {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .faq-item p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    h1 {
      font-size: 20px;
    }
  
    p {
      font-size: 14px;
    }
  
    .faq-item {
      padding: 15px;
    }
  
    h2 {
      font-size: 16px;
    }
  
    .faq-item p {
      font-size: 13px;
    }
  }
  