#sobre {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.sobre__linha {
    position: relative;
    padding: 60px 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 95%;
}

.sobre__linha::before {
    content: "";
    position: relative;

    width: 800px;
    height: 8px;

    background: linear-gradient(90deg, #FFFFFF, #3A0CA3);
}

.sobre__linha img {
    height: 40px;

    transform: rotate(90deg);
}


.sobre__conteudo {
    width: 95%;
    max-width: 800px;

    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

.sobre__logo {
    width: 200px;
}

.sobre__descricao {
    max-width: 700px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sobre__descricao h1 {
    font-family: var(--font-primary);
    font-size: 40px;

    color: #3A0CA3;
}

.sobre__descricao p {
    text-indent: 15px;

    font-family: var(--font-secondary);
    font-size: 18px;

    color: #757575;
}

.sobre__descricao p span {
    color: var(--secondary-color);
    font-weight: bold;
}

.sobre__destaque {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sobre__destaque img {
    width: 40px;
    height: 40px;
}

@media screen and (max-width: 768px) {
    .sobre__descricao h1 {
        font-size: 35px;
    }
    .sobre__descricao p {
        font-size: 16px;
    }

    .sobre__logo {
        display: none;
    }

    .sobre__linha {
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .sobre__linha {
        padding-bottom: 20px;
    }
}