/* --- ESTILOS DA PÁGINA SOBRE --- */

.banner-sobre {
    background-color: #3d1a4b;
    text-align: center;
}
.banner-sobre h1 {
    font-weight: 500;
    width: 100%;
}

.sobre-container {
    padding: 25px 0;
}

.sobre-grid {
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: left;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h2 {
    color: #3d1a4b;
    font-size: 1.8rem;
}

.sobre-texto p, strong {
    color: #696868;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.sobre-texto ul li {
    color: #696868;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.sobre-texto ul li::before {
    content: "✔";
    color: #3d1a4b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.sobre-imagem {
    flex: 1;
}
.sobre-imagem img {
    width: 100%;
    border-radius: 10px;
}

.section-texto {
    padding: 20px 0;
    text-align: center;
}

/* Responsividade para a página Sobre */
@media (max-width: 1020px) {
    .sobre-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .sobre-texto ul li {
        text-align: left;
    }
    
    .banner-sobre h1 {
        font-size: 2rem;
    }

}
