/* SEÇÃO SOBRE */
  #sobre {
    padding: 100px 5%;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
  }
  .section-header { text-align: center; margin-bottom: 60px; }
  .section-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: var(--neon);
    margin-bottom: 12px;
  }
  .section-tag::before, .section-tag::after {
    content: '—'; margin: 0 8px; opacity: 0.5;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    color: var(--text);
  }
  .section-title span { color: var(--neon); }

  .sobre-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    max-width: 1100px; margin: 0 auto;
  }
  .sobre-photo-wrap {
    position: relative;
  }
  .sobre-photo-frame {
    position: relative;
    border: 1px solid rgba(0,212,255,0.3);
    overflow: hidden;
    aspect-ratio: 3/4;
  }
  .sobre-photo-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.1);
    transition: filter 0.5s;
  }
  .sobre-photo-frame:hover img { filter: saturate(1) contrast(1); }
  .sobre-photo-frame::before {
    content: '';
    position: absolute; top: -1px; left: -1px; right: -1px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon), transparent);
    box-shadow: 0 0 15px var(--neon);
  }
  .sobre-corner {
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--neon);
    border-style: solid;
  }
  .sobre-corner.tl { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
  .sobre-corner.br { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }
  .sobre-label {
    position: absolute; bottom: 20px; left: 20px; right: 20px;
    background: rgba(5,10,18,0.9);
    border: 1px solid rgba(0,212,255,0.2);
    padding: 12px 16px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .sobre-label-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem; color: var(--neon); font-weight: 700;
  }
  .sobre-label-age {
    font-size: 0.8rem; color: var(--text-muted); font-weight: 600;
  }
  .sobre-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; letter-spacing: 2px;
    color: var(--neon); margin-bottom: 16px;
  }
  .sobre-content p {
    font-size: 1.05rem; line-height: 1.8;
    color: var(--text-muted); margin-bottom: 20px;
  }
  .sobre-content p strong { color: var(--text); }
  .sobre-badges {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
  }
  .badge {
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.25);
    padding: 6px 14px;
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--neon);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  }
  /* foto placeholder sobre */
  .sobre-photo-placeholder {
    width: 100%; aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(0,153,204,0.15), rgba(0,212,255,0.05));
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem; opacity: 0.3;
    border: 1px solid rgba(0,212,255,0.2);
  }

  @media (max-width: 768px) {

  .sobre-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .sobre-photo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .sobre-photo-frame {
    width: 100%;
    max-width: 320px;
  }

  .sobre-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .sobre-content {
    width: 100%;
    text-align: center;
  }

  .sobre-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .sobre-content p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .sobre-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}