.sobre{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:
      radial-gradient(circle at 12% 22%, rgba(187,225,250,.48), transparent 30%),
      radial-gradient(circle at 88% 78%, rgba(50,130,184,.14), transparent 28%),
      linear-gradient(135deg, #ffffff 0%, #eef7fc 100%);
  }
  
  .sobre-circle{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(15,76,117,.12);
    pointer-events:none;
  }
  
  .sobre-circle::after{
    content:"";
    position:absolute;
    inset:22px;
    border-radius:50%;
    border:1px solid rgba(50,130,184,.12);
  }
  
  .sobre-circle-one{
    width:360px;
    height:360px;
    right:-160px;
    top:80px;
  }
  
  .sobre-circle-two{
    width:240px;
    height:240px;
    left:-90px;
    bottom:90px;
  }
  
  .sobre-container{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
  }
  
  .sobre-image{
    position:relative;
  }
  
  .sobre-image img{
    width:100%;
    height:580px;
    object-fit:cover;
    border-radius:36px;
    display:block;
    box-shadow:0 28px 70px rgba(9,47,79,.16);
  }
  
  .sobre-image::before{
    content:"";
    position:absolute;
    inset:24px;
    border:1px solid rgba(187,225,250,.5);
    border-radius:30px;
    pointer-events:none;
    z-index:2;
  }
  
  .sobre-experience-card{
    position:absolute;
    right:-28px;
    bottom:44px;
    width:170px;
    height:170px;
    border-radius:50%;
    background:
      linear-gradient(135deg, rgba(187,225,250,.94), rgba(50,130,184,.92));
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    box-shadow:0 22px 46px rgba(50,130,184,.32);
    border:1px solid rgba(255,255,255,.4);
  }
  
  .sobre-experience-card strong{
    font-family:'Cormorant Garamond', serif;
    font-size:3.4rem;
    line-height:.8;
  }
  
  .sobre-experience-card span{
    max-width:100px;
    font-size:.85rem;
    line-height:1.3;
    margin-top:10px;
    font-weight:600;
  }
  
  .sobre-content h2{
    font-family:'Cormorant Garamond', serif;
    font-size:clamp(2.5rem, 4vw, 4rem);
    line-height:1;
    color:#092f4f;
    margin-bottom:26px;
    letter-spacing:-.035em;
  }
  
  .sobre-content p{
    color:#375466;
    line-height:1.9;
    margin-bottom:18px;
    font-size:1.04rem;
  }
  
  .sobre-highlights{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
    margin:36px 0;
  }
  
  .sobre-highlight{
    display:flex;
    align-items:center;
    gap:14px;
    color:#092f4f;
    font-weight:600;
  }
  
  .sobre-highlight i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:linear-gradient(135deg, #bbe1fa, #3282b8);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 24px rgba(50,130,184,.2);
  }
  
  .sobre-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(135deg, #3282b8, #0f4c75);
    padding:17px 32px;
    border-radius:999px;
    font-weight:700;
    box-shadow:0 16px 36px rgba(50,130,184,.28);
    transition:.3s ease;
  }
  
  .sobre-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 44px rgba(50,130,184,.36);
  }

  .sobre-image,
  .sobre-content{
    opacity:0;
    transform:translateY(36px);
    transition:.8s ease;
  }

  .sobre-image.show,
  .sobre-content.show{
    opacity:1;
    transform:translateY(0);
  }

  .sobre-content{
    transition-delay:.15s;
  }
  
  @media(max-width:992px){
    .sobre-container{
      grid-template-columns:1fr;
      gap:48px;
    }
  
    .sobre-image img{
      height:460px;
    }
  
    .sobre-experience-card{
      right:24px;
    }
  }
  
  @media(max-width:576px){
    .sobre{
      padding:85px 0;
    }
  
    .sobre-image img{
      height:390px;
      border-radius:28px;
    }
  
    .sobre-experience-card{
      width:140px;
      height:140px;
      right:18px;
      bottom:28px;
    }
  
    .sobre-experience-card strong{
      font-size:2.8rem;
    }
  }