body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0; /* Remover o padding do body para evitar espaços indesejados */
}

.privacy-container {
    background-color: white;
    width: 100%;
    height: auto; /* Permite que a altura se ajuste ao conteúdo */
    max-width: 2000px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.0);
    margin-top: -5px; /* Adicionando margem superior ao container */
}


.profile-banner {
    height: 200px; /* Altura do banner */
    margin-top: 20px; /* Margem padrão para telas maiores */
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent), url("../images/banner.jpg");
    background-position: center;
    background-size: cover;
    width: 100%;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-radius: 0;
}

@media only screen and (max-width: 568px) {
    .profile-banner {
        margin-top: 40px; /* Aumenta a margem superior para telas menores */
    }

    .profile-infos {
        margin-top: -70px; /* Ajuste para garantir que o conteúdo não fique sobreposto ao banner */
    }
}



.profile-image {
    background-image: url("../images/icone-judy.jpg");
    background-position: center;
    background-size: cover;
    width: 125px;
    height: 125px;
    object-fit: cover;
    margin-top: -62.5px; 
    margin-left: 15px;
    border: 4px solid white;
    border-radius: 50%;
}

.profile-header {
}

.profile-infos {
    display: flex;
    flex-direction: row;
    margin-left: calc(20px + 125px);
    margin-top: -60px; 
    position: relative;
}

.profile-infos > * {
    margin: 0;
}

.profile-data {
    margin-top: -35px; 
    right: 15px;
    color: white;
    font-size: 15px;
    display: flex;
    flex-direction: row;
    position: absolute;
}

.name {
    font-size: 14.4px;
}

.name img {
    width: 16px;
}

.username {
    color: #6c757d;
    font-size: 12.8px;
    margin-top: -5px;
}

.profile-description {
    margin-top: calc(16px * 2.5);
    font-size: 13px;
    color: #212529;
    margin-left: 10px;
}

.profile-infos-2 {
    padding-inline: 25px;
}

.social-btns {
    margin-top: 10px;
}

.social-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #919191;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-btn > img[src="/images/instagram.svg"] {
    opacity: 0.8;
}

.profile-signature {
    font-size: 16px;
    color: #6c757d;
    padding-inline: 25px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.p-s-title {
    padding-bottom: 10px;
    text-transform: uppercase;
}

.profile-signature a {
    background-color: #ff9956;
    width: 100%;
    height: 46px;
    font-size: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 16px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.searchbar {
    background-color: rgba(255, 255, 255, 0.8);
    height: 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 5px;
    padding-inline: 10px;
    justify-content: space-between;
    max-width: 720px;
}

.searchbar img {
    width: 25px;
    opacity: 0.7;
}

.searchbar span {
    opacity: 0.7;
    font-size: 11pt;
}

.searchbar div:first-child {
    width: 100%;
    display: flex;
    align-items: center;
}

.searchbar button {
    font-size: 11pt;
    opacity: 0.7;
    cursor: pointer;
    background-color: transparent;
    font-weight: bold;
}

.p-i-01 {
    display: flex;
    flex-direction: column;
}

.profile-content {
    padding-inline: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.p-c--f-span {
    font-size: 15px;
    color: #646d75;
    margin-top: -8px; /* Ajuste este valor conforme necessário */
}


.blocked {
    width: 100%;
    height: 700px;
    background-image: url("../images/blocked.jpg");
    background-position: center;
    background-size: cover;
    backdrop-filter: blur(10px);
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
}

.blocked img {
    width: 93px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 568px) {
    body {
        padding: 0;
        height: 100vh;
    }

    .privacy-container {
        border-radius: 0;
        height: 100%;
    }

    .profile-banner {
        border-radius: 0;
    }
    
    .searchbar {
        width: 98%;
    }
    
    .profile-signature {
        padding-inline: 17px;
    }

    .profile-signature a {
        font-size: 20px;
        display: flex;
        flex-wrap: wrap;
    }

    .profile-image {
        width: 100px;
        height: 100px;
        margin-top: -50px;
    }

    .profile-data {
        right: 15px;
        color: white;
        font-size: 14px;
    }

    .profile-infos {
        margin-left: calc(25px + 100px);
        margin-top: -45px;
    }

    .profile-infos-2 {
        padding-inline: 15px;
    }

    .profile-description {
        margin-top: calc(16px * 1.5);
        margin-left: 5px;
    }

    .blocked {
        height: 400px;
    }
}
