@font-face {
    font-family:'roboto';
    src:url("../fonts/Roboto-Bold.ttf");
}

@font-face {
   font-family: montserrat;
   src: url(../fonts/Montserrat-Bold.otf);
}

body{
   background-color: #000;
}

.topo-0{
   padding: 5px 0;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   background-color: #000;
   z-index: 9998;
}

.topo-0 i{
   color: #F5F5F5;
   font-size: 1.125rem;
   line-height: 1.75rem;
}

.texto-topo-0{
   color: #F5F5F5;
   font-size: 1rem;
   line-height: 1.5rem;
   font-weight: 700;
}

.topo-1{
   padding: 70px 0 60px 0;
   max-width: 500px;
   margin: 0 auto;
   position: relative;
   z-index: 998;
}

.img-perfil{
   width: calc(100% - 4px);
   height: calc(100% - 4px);
   object-fit: cover;
   border-radius: 50%;
   border: 2px solid white;
}

.profile-image-container {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-topo-1{
   font-size: 0.75rem;
    line-height: 1.4;
    color: #F5F5F5;
    font-weight: 400;
}

.texto-topo-1 b{
   font-size: 1.05rem;
}  

.nome-bio{
   color: #F5F5F5;
   font-size: 1.05rem;
   margin-top: 15px;
   margin-bottom: 5px;
} 

.texto-bio{
   font-size: 0.85rem;
   line-height: 1.1;
   color: #F5F5F5;
   font-weight: 400;
   margin: 0;
   padding: 0;
   margin-bottom: 5px;
}

.texto-bio:hover{
   color: #F5F5F5;
} 

.texto-bio a{
   color: #F5F5F5;
} 

.img-mc{
   width: 2rem;
   height: 2rem;
   border-radius: 50%;
   margin-right: 5px;
   margin-top: 10px;
   align-items-content: center;
} 

.texto-mc{
   color: #A8A8A8;
   font-size: 0.85rem;
   line-height: 1.1;
   font-weight: 400;
   margin: 0;
   padding: 0;
   margin-bottom: 5px;
   align-items-content: center;
} 

.texto-mc b{
   color: #F5F5F5;
}   

.btn-seguir{
   display: inline-block;
   background-color: #0095f6;
   padding-top: 0.375rem;
   padding-bottom: 0.375rem;
   border-radius: 0.25rem;
   color: white;
   font-weight: 700;
   width: 42%;
   height: 36px;
}

.btn-escuro{
   background-color: #363636 !important;
}

.btn-segu{
   background-color: #F3F4F6;
   padding-top: 0.375rem;
   padding-bottom: 0.375rem;
   padding-left: 10px;
   padding-right: 10px;
   border-radius: 0.25rem;
   color:  #000;
   font-weight: 700;
   width: 12%;
   height: 42px;
}

.container-rede{
   margin-top: 15px;
   width: 4rem;
   height: 4rem;
   text-align: center;
}

.img-rede{
   width: 100%;
   height: auto;
   border-radius: 50%;  
   border: 2px solid #fff; 
}

.esp-svg{
   margin-top: 30px;
}

.img-bio {
    width: 32%;              /* Define 32% da largura para cada imagem */
    padding-bottom: 32%;      /* Cria um padding para garantir que o container seja quadrado */
    position: relative;
    display: inline-block;
    margin-bottom: 5px;      /* Espaçamento entre as imagens */
    vertical-align: top;      /* Alinha as divs no topo */
}

.img-bio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Garante que a imagem preencha o quadrado sem distorcer */
}


.zero-esp{
   padding: 0 !important;
   margin: 0 !important;
}

.text-carregando{
   color: rgb(107,114,128);
   font-size: 0.875rem;
   line-height: 1.25rem;
   margin-bottom: 0.5rem;
   font-weight: 300;
   margin-top: 10px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #1977F2;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
   text-align: center;
   margin: 0 auto;
}

@keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

.rodape{
   padding: 10px 0;
   position: fixed;
   bottom: 0;
   left: 0;
   width: 100%;
   background-color: #000;
   z-index: 9998;
} 

.perfil-rodape{
   border-radius: 50%;
   width: 1.5rem;
   height: 1.5rem;
}   

#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: black;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    display: none;
    width: 90%;
    max-width: 400px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.popup-header {
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.popup-profile-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 12px;
}

.popup-username {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}   

.popup-ad-label {
    font-size: 12px;
    color: #8e8e8e;
    margin-left: 8px;
}

.popup-content {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.font-bold{
   font-weight: 700;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.voucher-button {
   display: block;
   text-align: center;
    background-color: #0095F6;
    color: white;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    margin-top: 16px;
    transition: background-color 0.3s ease;
}

.popup-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #8e8e8e;
    margin-top: 20px;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.img-48{
   width: 70%;
   height: auto;
   max-width: 480px;
}

@media screen and (max-width: 600px) {

}

.azul{
   color: #1977F2;
}