.title {
    display: none;
}

.perfil {
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../../img/detalhes/bg_perfil_tradutor.png");
    background-repeat: no-repeat;
    background-size: 100vw 800px;
}

.conteudo_perfil {
    width: 1440px;
    display: flex;
    align-items: center;
    justify-content: left;
    color: var(--cor-primary-branca);
    padding: 0rem 5rem;
    gap: 5rem;
}

.foto_perfil {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
}


.perfil_texto {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    h1 {
        font-size: 56px;
        font-weight: 400;
    }

    h3 {
        font-size: 20px;
        font-weight: 700px;
    }
}

.icons a {
    text-decoration: none;
}

.icons img {
    width: 25px;
    height: 25px;
}

@media (width <=1024px) {
    .conteudo_perfil {
        width: 100%;
        gap: 2rem;
        background-size: 100% 100%;
    }

    .foto_perfil {
        width: 300px;
        height: 300px;
    }
}

@media (width <=768px) {
    .title {
        width: 100%;
        display: flex;
        align-items: center;
        font-size: 15px;
        margin-top: 6rem;
        padding: 1rem 2rem;
        background: rgba(217, 217, 217, 0.35);
        gap: 1rem;

        img {
            width: 16px;
            object-fit: cover;
            margin-bottom: .25rem;
        }
    }

    .perfil {
        width: 100%;
        height: 100%;
        background-size: 100% 100%;
        gap: 1rem;
    }

    .conteudo_perfil {
        width: 100%;
        padding: 2rem;
        gap: 1rem;
    }

    .foto_perfil {
        max-width: 120px;
        max-height: 120px;
    }

    .perfil_texto {
        gap: 0.5rem;

        h1 {
            font-size: 20px;
        }

        h3 {
            font-size: 12px;
        }
    }
}