/* Link na Bio - Estilo Moderno com Rolagem Infinita */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.bio-page {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
    min-height: 100vh;
    color: #f1f5f9;
    padding: 0;
    margin: 0;
}

/* PERFIL */
.bio-profile {
    text-align: center;
    padding: 60px 20px 30px;
    position: relative;
}

.bio-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #6366f1;
    padding: 4px;
    background: #16162a;
    margin: 0 auto 20px;
    position: relative;
    animation: bioFloat 3s ease-in-out infinite;
    overflow: hidden;
}

.bio-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.bio-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.bio-avatar-placeholder span {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

@keyframes bioFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bio-nome {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #f1f5f9, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    max-width: 400px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

/* REDES SOCIAIS */
.bio-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.bio-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #16162a;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1f5f9;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.bio-social-btn:hover {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.3);
    border-color: transparent;
}

/* LINKS EM DESTAQUE */
.bio-destaques {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.bio-destaque-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    background: #16162a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    margin-bottom: 12px;
    text-decoration: none;
    color: #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bio-destaque-link:hover {
    background: #1e1e3a;
    transform: translateX(8px);
    border-color: rgba(99,102,241,0.3);
}

.bio-destaque-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: white;
}

.bio-destaque-texto {
    flex: 1;
    text-align: left;
}

.bio-destaque-texto strong {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.bio-destaque-texto small {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* PRODUTOS - ROLAGEM INFINITA */
.bio-produtos {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.bio-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f1f5f9;
}

.bio-section-title i {
    color: #ec4899;
}

/* Grid que simula rolagem infinita */
.bio-produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Card de produto */
.bio-produto-card {
    background: #16162a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.bio-produto-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 40px rgba(99,102,241,0.2), 0 8px 32px rgba(0,0,0,0.4);
    border-color: rgba(99,102,241,0.3);
}

/* Efeito de brilho no hover */
.bio-produto-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s;
}

.bio-produto-card:hover::after {
    left: 100%;
}

.bio-produto-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.bio-produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bio-produto-card:hover .bio-produto-img img {
    transform: scale(1.1);
}

.bio-produto-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(236,72,153,0.4);
}

.bio-produto-info {
    padding: 20px;
}

.bio-produto-info h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #f1f5f9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bio-produto-precos {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.bio-produto-preco {
    font-size: 1.3rem;
    font-weight: 700;
    color: #22c55e;
}

.bio-produto-antigo {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.bio-produto-desconto {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bio-produto-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.bio-produto-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.4);
    color: white;
}

/* RODAPE */
.bio-footer {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .bio-nome {
        font-size: 1.5rem;
    }

    .bio-produtos-grid {
        grid-template-columns: 1fr;
    }

    .bio-destaques {
        padding: 0 15px;
    }

    .bio-profile {
        padding: 40px 15px 20px;
    }
}

/* SCROLLBAR CUSTOMIZADA */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f23;
}

::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 4px;
}
