/* Seção Tratamentos */
.tratamentos {
    background-color: #fff;
    color: #8C6B33;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  .tratamentos-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .tratamentos-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .tratamentos-container p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  /* Cards */
  .tratamentos-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .tratamento-card {
    background-color: #FFF0B3;
    color: #B28C4C;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .tratamento-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .tratamento-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .tratamento-card p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Hover dos cards */
  .tratamento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .tratamentos-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .tratamento-card {
      max-width: 90%;
    }
  }  