/* Seção Sobre Mim */
.about-section {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin: 40px auto 60px auto;
    max-width: 900px;
    padding: 40px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s;
}
.about-section:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.about-section h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.about-photo {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-photo img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #e0e0e0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    background: #fafafa;
}
.about-text {
    flex: 1 1 320px;
    color: #333;
    font-size: 1.08rem;
    line-height: 1.7;
    background: none;
}
.about-text ul {
    margin-top: 18px;
    padding-left: 18px;
}
.about-text li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #444;
    list-style: disc inside;
}
@media (max-width: 700px) {
    .about-content {
        flex-direction: column;
        gap: 18px;
    }
    .about-section {
        padding: 24px 8px;
    }
    .about-photo img {
        width: 100px;
        height: 100px;
    }
}
