/* 1. SEÇÃO DA IMAGEM (BANNER) 
   Mantém a imagem exposta e limpa, exatamente como na sua Home */
main #sobre {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/mesa1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 80vh; /* Altura da imagem exposta */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Título que fica em cima da imagem (se quiser usar) */
main #sobre h1 {
    color: #fff;
    font-family: 'Atkinson Hyperlegible Next', sans-serif;
    font-size: 50px;
    letter-spacing: 5px;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* 2. SEÇÃO DO TEXTO (CONTEÚDO BRANCO)
   Este bloco começa logo após a imagem */
.textosobre {
    background-color: #ffffff;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o bloco de texto */
}

/* Container interno para o texto não espalhar muito */
.textosobre .content-wrapper {
    max-width: 800px;
    width: 100%;
}

/* TÍTULO NO FUNDO BRANCO */
.textosobre h2 {
    color: rgb(178, 14, 14); /* O vermelho da sua marca */
    font-family: 'Atkinson Hyperlegible Next', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}

/* Estilo dos Parágrafos */
.textosobre p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
    white-space: pre-line; /* Preserva as quebras do seu HTML */
}

/* Parágrafo de Fechamento com Destaque */
.textosobre p:last-child {
    margin-top: 40px;
    padding: 30px;
    background-color: #efefef;
    border-left: 6px solid rgb(178, 14, 14);
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

/* Ajuste de Responsividade */
@media (max-width: 768px) {
    main #sobre {
        height: 50vh;
    }
    
    .textosobre {
        padding: 60px 20px;
    }
    
    .textosobre h2 {
        font-size: 24px;
    }
}