/* Sobre Nos */

.titulo-sobre {
    font-size: 2.5rem;
    text-align: center;
    color: #0D2450;
    margin-bottom: 40px;
    line-height: 1.4;
    font-weight: 300;
}
  
.titulo-sobre .destaque {
    font-weight: 700;
    color: #0D2450;
}
  

.sobre-nos {
    position: relative;
    background: white;
    min-height: 75vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 25px;
}
  
.sobre-nos::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 110%;
    background-image: url('/image/Ativo.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}
  
.sobre-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}
  
.sobre-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}
  
.sobre-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}
  
.texto {
    flex: 1 1 45%;
    font-size: 1.1rem;
    color: black;
    line-height: 1.7;
    max-width: 500px;
    text-align: left;
}
  
/* Responsivo */
@media (max-width: 768px) {
    .sobre-content {
      flex-direction: column;
      align-items: center;
    }
  
    .texto {
      max-width: 100%;
    }

    .sobre-nos::after {
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-position: center center;
        background-image: url('/image/Ativo.webp');
        opacity: 0.1;
    }
}