/* RESET ABSOLUTO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0b0b0b;
    color: #fff;
}

/* HEADER */
.profile-header {
    position: relative;
    text-align: center;
}

/* BANNER */
.profile-banner {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 0 0 24px 24px;
}

/* AVATAR */
.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0b0b0b;
    margin-top: -55px;
}

/* FORÇA LAYOUT DESKTOP */
.profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.preview-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 9 / 16;
}

/* MOBILE */
@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

/* PLANOS */
.plans-grid {
    display: grid;
    gap: 16px;
    padding: 16px;
}
