.about {
    padding: 120px 24px;
    background-color: #f6f7f4;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
  }
  
  .section-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6b7c6f;
  }
  
  .about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1f2d27;
    line-height: 1.3;
  }
  
  .about-content p {
    font-size: 17px;
    color: #4a5a52;
    margin-bottom: 28px;
    line-height: 1.6;
  }
  
  .about-list {
    list-style: none;
    margin-bottom: 36px;
  }
  
  .about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #2f3e36;
  }
  
  .about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
  }
  
  .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #2e7d32;
    color: #2e7d32;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn-secondary:hover {
    background-color: #2e7d32;
    color: #fff;
  }
  
  /* Responsivo */
  @media (max-width: 900px) {
    .about-grid {
      grid-template-columns: 1fr;
    }
  
    .about {
      padding: 80px 24px;
    }
  
    .about-content h2 {
      font-size: 30px;
    }
  }  