/* Seção Sobre */
#sobre {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.sobre-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.sobre-text {
    flex: 1;
    min-width: 300px;
}

.sobre-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.sobre-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.sobre-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.sobre-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 70%;
    height: 70%;
    background-color: var(--secondary-color);
    opacity: 0.1;
    border-radius: 10px;
    z-index: -1;
}

.sobre-image:hover img {
    transform: translateY(-10px);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    #sobre {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .sobre-content {
        flex-direction: column-reverse;
    }
    
    .sobre-image {
        margin-bottom: 30px;
    }
} 