    .sobre-section {
      max-width: 900px;
      margin: 60px auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 22px rgba(0,0,0,0.03);
      padding: 50px 60px;
      line-height: 1.75;
    }
    .sobre-section h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      text-align: center;
      margin-bottom: 25px;
      color: #111;
    }
    .sobre-section p {
      color: #555;
      margin-bottom: 20px;
      font-size: 1.05rem;
    }
    .sobre-section strong {
      color: #222;
    }
    .sobre-galeria {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 18px;
      margin-top: 40px;
    }
    .sobre-galeria img {
      width: 100%;
      border-radius: 12px;
      height: 240px;
      object-fit: cover;
      box-shadow: 0 4px 18px rgba(0,0,0,0.05);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .sobre-galeria img:hover {
      transform: scale(1.02);
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    }
    @media (max-width: 700px) {
      .sobre-section {
        padding: 30px 22px;
        margin: 40px 15px;
      }
      .sobre-galeria img { height: 200px; }
    }