/* ---------------------------------------------------
   CONFIGURAÇÕES GERAIS – Fiel ao Privacy
----------------------------------------------------*/
body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: Inter, Arial, sans-serif;
    color: #111;
    line-height: 1.4;
}

img {
    display: block;
    max-width: 100%;
}

/* ---------------------------------------------------
   HEADER
----------------------------------------------------*/
.topo {
    width: 100%;
    background: #fff;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-topo {
    height: 32px;
}

/* ---------------------------------------------------
   BANNER
----------------------------------------------------*/
.banner-topo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #e5e5e5;
}

/* ---------------------------------------------------
   PERFIL
----------------------------------------------------*/
.perfil-box {
    display: flex;
    align-items: center;
    padding: 0 16px;
    margin-top: -40px;
}

.perfil-foto {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    border: 4px solid #fff;
    object-fit: cover;
    background: #ccc;
}

.perfil-info {
    margin-left: 16px;
    margin-top: 35px;
}

.perfil-info h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.verificado {
    font-size: 14px;
    color: #f97316;
    margin-left: 4px;
}

.arroba {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

/* ---------------------------------------------------
   BIO
----------------------------------------------------*/
.bio-container {
    padding: 16px;
    padding-top: 8px;
}

.bio-container p {
    font-size: 14px;
    color: #374151;
    margin: 0 0 4px 0;
}

.bio-button {
    font-size: 12px;
    color: #6b7280;
    background: none;
    border: none;
    padding: 4px 0;
    cursor: pointer;
    text-align: left;
}

.bio-button:hover {
    color: #374151;
}

/* ---------------------------------------------------
   BOTÃO ASSINATURA
----------------------------------------------------*/
.assinatura {
    padding: 0 16px;
    text-align: center;
}

.btn-assinar {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(to right, #ff9f5a, #ff7a2d);
    border: none;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 6px;
}

.btn-assinar:hover {
    background: linear-gradient(to right, #ff8a37, #ff6c1b);
}

.pag-uma-vez {
    font-size: 12px;
    color: #6b7280;
}

/* ---------------------------------------------------
   ESTATÍSTICAS
----------------------------------------------------*/
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

.stats strong {
    font-size: 16px;
    color: #111;
}

/* ---------------------------------------------------
   VER TODO O CONTEÚDO
----------------------------------------------------*/
.btn-todo {
    padding: 16px;
}

.btn-ver-tudo {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    background: linear-gradient(to right, #f97316, #ef4444);
    border: none;
    cursor: pointer;
}

.btn-ver-tudo:hover {
    background: linear-gradient(to right, #fb7c22, #f23c3c);
}

/* ---------------------------------------------------
   GRID DE CONTEÚDO PREMIUM
----------------------------------------------------*/
.grid-conteudo {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.item {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(50%);
}

/* ---------------------------------------------------
   OVERLAY PREMIUM
----------------------------------------------------*/
.premium-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: linear-gradient(to bottom right, #fb923c, #ef4444);
    margin-bottom: 8px;
}

.premium-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.premium-sub {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

/* ---------------------------------------------------
   RESPONSIVIDADE FIEL AO PRIVACY
----------------------------------------------------*/
@media (min-width: 480px) {
    .banner-topo {
        height: 190px;
    }
}

@media (min-width: 768px) {
    body {
        max-width: 480px;
        margin: 0 auto;
        background: #f3f4f6;
    }

    .conteudo-body {
        background: #fff;
    }

    .topo {
        border-radius: 0 0 16px 16px;
        border: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
}
