.conteudo-about {
display: flex;
}

.image-about {
    width: 45%;
    height: 470px;

    display: flex;
    justify-content: end;
}

.image-about img {
    width: 320px;
    height: 100%;
    border-radius: 0px 50px 25px;
    box-shadow: 15px 15px #77007F; 
    text-align: right;
}

.box-conteudo {
    width: 55%;
    height: 100%;
    padding-left: 30px;
    color: #77007F;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-conteudo .txt-about h1 {
    font-size: 8rem;
    line-height: 80px;
    padding: 50px 0 20px;
}

.box-conteudo .txt-about p {
    width: 55%;
    font-size: 1.3rem;
    line-height: 30px;
}

.social-media {
    width: 100%;
    text-align: left;

    display: flex;
    align-items: start;
    justify-content: start;
    gap: 15px
}

.sm-icons{
    padding: 12px;
    display: flex;
    align-items: center;
    margin: 17.5px 0px;
    background-color: #77007F;
    border-radius: 0px 15px 8px;
}

.sm-icons i {
    font-size: 30px;
    color: white;
}

@media screen and (max-width: 1100px) {
    .box-conteudo .txt-about p {
        width: 100%;
        text-align: left;
    }
}

@media screen and (max-width: 550px) {
    .conteudo-about {
        flex-direction: column;
    }

    .image-about {
        width: 100%;
        margin: 0 auto;

        text-align: center;
        justify-content: center;

    }

    .image-about img {
        width: 100%;
    }

    .box-conteudo {
        padding-left: 0px;
        width: 100%;
    }

    .box-conteudo .txt-about h1 {
        width: 100%;
        font-size: 5rem;
        line-height: 50px;
        text-align: center;
    }
    
    .box-conteudo .txt-about p {
        width: 100%;
        text-align: center;
    }

    .social-media {
        justify-content: center;
    }
}