.principal-about{
    display: flex;
    justify-content: center;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.about{
    display: flex;
    justify-content: center;
    font-family: "Nunito", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #1a237e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 2rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.sobre-mim{
    display: flex;
    justify-content: center;
    text-align: center;
    font-weight: 400;
    border-radius: 40px;
    font-size: 1.1rem;
    font-family: "Nunito", sans-serif;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    background: linear-gradient(135deg, #000000 0%, #1a237e 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sobre-mim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 40px;
    pointer-events: none;
}

.sobre-mim p {
    position: relative;
    z-index: 2;
    margin: 0;
}

.sobre-mim:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
