/* ===== SOBRE MIM ===== */

#sobre {
    position: relative;
    width: 100%;
    height: auto;
    padding: 120px 20px;
    background-image: url('/img/background.png'); /* Nome da sua imagem */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sobre-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);  /* Escurece igual ao design */
    inset: 0;
}

.sobre-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

#sobre h2 {
    color: #8126c9;   /* Roxo neon do design */
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 35px;
}

#sobre p {
    color: #8126c9; 
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 850px;
    margin: 0 auto;
    text-align: center; /* Desktop igual ao design */
}

