.quem-somos {
    padding: 80px 0;
    background-color: #fff;
}

.quem-somos .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.quem-somos .section-title {
    font-size: 36px;
    color: #B39B6D;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.quem-somos .section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #B39B6D;
}

.profile-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.profile-image {
    flex: 0 0 350px;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-image:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), #fff);
}

.profile-content {
    flex: 1;
    padding: 40px;
    background-color: #fff;
}

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.content-wrapper p:last-child {
    margin-bottom: 0;
}

.quote {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    margin-top: 40px;
    border-left: 4px solid #B39B6D;
}

.quote h3 {
    color: #B39B6D;
    margin-bottom: 15px;
    font-size: 24px;
}

.quote p {
    font-style: italic;
    color: #555;
}

.quote:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: rgba(179, 155, 109, 0.2);
    font-family: serif;
}

/* Responsividade */
@media (max-width: 992px) {
    .profile-container {
        flex-direction: column;
    }
    
    .profile-image {
        flex: 0 0 100%;
        max-height: 400px;
    }
    
    .profile-image:after {
        display: none;
    }
}

@media (max-width: 768px) {
    .quem-somos {
        padding: 60px 0;
    }
    
    .quem-somos .section-title {
        font-size: 28px;
    }
    
    .profile-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .quem-somos .section-title {
        font-size: 24px;
    }
    
    .profile-image {
        max-height: 300px;
    }
}
