.sobre-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #f8f3ef 0%, #f4ece5 100%);
    overflow: hidden;
  }
  
  .sobre-shell {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
  }
  
  .sobre-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 46px;
    align-items: center;
  }
  
  .sobre-content {
    max-width: 620px;
  }
  
  .sobre-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--terracota-dark);
  }
  
  .sobre-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.6vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 24px;
  }
  
  .sobre-content h2 span {
    background: linear-gradient(135deg, var(--terracota), var(--rosado));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .sobre-content p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 18px;
  }
  
  .sobre-media {
    position: relative;
  }
  
  .sobre-image-wrap {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
  }
  
  .sobre-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  .sobre-badge {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 0 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(157, 110, 90, 0.10);
    box-shadow: 0 14px 34px rgba(80, 51, 40, 0.06);
  }
  
  .sobre-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(157,110,90,0.14), rgba(157,113,100,0.10));
    color: var(--terracota-dark);
    font-size: 0.95rem;
  }
  
  .sobre-badge p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
  }
  
  .section-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s ease, transform 0.85s ease;
  }
  
  .section-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  @media (max-width: 980px) {
    .sobre-section {
      padding: 84px 0;
    }
  
    .sobre-shell {
      width: min(100% - 28px, 1200px);
    }
  
    .sobre-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  
    .sobre-content {
      max-width: 100%;
    }
  
    .sobre-image {
      height: 520px;
    }
  }
  
  @media (max-width: 640px) {
    .sobre-content h2 {
      font-size: clamp(2rem, 9vw, 3rem);
      margin-bottom: 18px;
    }
  
    .sobre-content p {
      font-size: 0.97rem;
      line-height: 1.75;
    }
  
    .sobre-image-wrap {
      border-radius: 24px;
    }
  
    .sobre-image {
      height: 380px;
      object-position: center top;
    }
  
    .sobre-badge {
      width: 100%;
      min-height: 68px;
      padding: 0 18px;
      border-radius: 20px;
    }
  
    .sobre-badge p {
      font-size: 1rem;
    }
  }