/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Harmonious Premium Palette */
    --color-bg-page: #FAF7F2;          /* Light cream background */
    --color-bg-card: #FFFFFF;          /* Pure white card backgrounds */
    --color-text-primary: #1A1D20;     /* Rich dark charcoal */
    --color-text-secondary: #5F666D;   /* Soft slate gray for secondary labels */
    --color-text-muted: #8E969F;       /* Cool gray for stats and minor info */
    
    /* Branding Colors */
    --color-orange-brand: #F37021;     /* Primary orange brand color */
    --color-orange-hover: #D95D16;
    --color-verified-blue: #1D9BF0;    /* Premium verified checkmark blue */
    
    /* Social Buttons and Action Icons */
    --color-icon-bg: #F3F4F6;          /* Light gray background for circle buttons */
    --color-icon-hover: #E5E7EB;
    
    /* Subscriptions Gradient - Warm Peach to Coral Pink */
    --gradient-sub-btn: linear-gradient(90deg, #F8A771 0%, #FA9196 100%);
    --gradient-sub-btn-hover: linear-gradient(90deg, #F6965B 0%, #F87D83 100%);
    
    /* Border Radius & Shadows */
    --radius-profile-card: 28px;
    --radius-inner-card: 20px;
    --radius-button: 9999px;          /* Pill style buttons */
    --shadow-premium: 0 10px 30px rgba(184, 174, 161, 0.15);
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.03);
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-page);
    color: var(--color-text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.page-wrapper {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.app-container {
    width: 100%;
    max-width: 480px; /* Mobile App dimensions */
    background-color: var(--color-bg-page);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.app-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 16px 24px;
    background-color: var(--color-bg-card);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 68px; /* Altura mínima consistente para o cabeçalho */
}

.app-header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.5px;
    color: var(--color-text-primary);
}

.app-header .logo-dot {
    color: var(--color-orange-brand);
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    background-color: var(--color-icon-bg);
    color: var(--color-text-primary);
}

/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */
.app-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ==========================================================================
   PROFILE CARD
   ========================================================================== */
.profile-card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-profile-card);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
}

/* Banner */
.profile-banner-container {
    height: 160px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #E2E8F0;
}

.profile-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Profile Info details wrapper */
.profile-info {
    padding: 0 20px 24px 20px;
    margin-top: -45px; /* Pull profile avatar overlapping the banner */
    position: relative;
}

.profile-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}

/* Avatar container with thick white border */
.avatar-container {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    border: 5px solid var(--color-bg-card);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    background-color: var(--color-icon-bg);
    z-index: 10;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Row */
.profile-quick-stats {
    display: flex;
    gap: 14px;
    align-items: center;
    padding-bottom: 8px;
    flex-grow: 1;
    justify-content: flex-end;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-muted);
    font-size: 13.5px;
    font-weight: 500;
}

.stat-item svg {
    stroke-width: 2.2px;
}

.stat-value {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* Name and username text block */
.profile-meta {
    margin-bottom: 12px;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-primary);
}

.verified-icon {
    display: flex;
    align-items: center;
}

.profile-username {
    font-size: 15px;
    color: var(--color-text-secondary);
    font-weight: 400;
}

/* Biography text block */
.profile-bio {
    font-size: 14.5px;
    color: var(--color-text-primary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.bio-more {
    display: none;
}

.bio-more.show {
    display: inline;
}

.bio-toggle-btn {
    color: var(--color-orange-brand);
    font-weight: 600;
    font-size: 14.5px;
    border: none;
    background: none;
    margin-left: 4px;
    transition: color 0.2s;
}

.bio-toggle-btn:hover {
    color: var(--color-orange-hover);
}

/* Social Buttons row */
.social-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-icon-bg);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background-color: var(--color-icon-hover);
    transform: translateY(-2px);
}

/* Subscriptions / Assinaturas section */
.subscription-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

/* Premium gradient action buttons */
.subscription-btn {
    width: 100%;
    height: 60px;
    border-radius: var(--radius-inner-card);
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(248, 167, 113, 0.25);
}

.subscription-btn.main-plan {
    background: var(--gradient-sub-btn);
    color: var(--color-bg-card); /* White text */
}

.subscription-btn.main-plan:hover {
    background: var(--gradient-sub-btn-hover);
    transform: scale(1.01);
}

.subscription-btn.promo-plan {
    background: var(--gradient-sub-btn);
    color: var(--color-bg-card);
    opacity: 0.9;
}

.subscription-btn.promo-plan:hover {
    opacity: 1;
    background: var(--gradient-sub-btn-hover);
    transform: scale(1.01);
}

.plan-price {
    font-weight: 800;
    font-size: 18px;
}

/* Accordion dropdown animations */
.accordion-container {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    width: 100%;
}

.accordion-arrow {
    color: var(--color-text-secondary);
    transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="false"] .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.2s ease-out;
    opacity: 1;
}

.accordion-trigger[aria-expanded="false"] + .accordion-content {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.promo-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 4px;
}

/* ==========================================================================
   TABS NAVIGATION
   ========================================================================== */
.tabs-section {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-inner-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.tabs-header {
    display: flex;
    width: 100%;
    border-bottom: 2px solid rgba(0, 0, 0, 0.02);
}

.tab-btn {
    flex: 1;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-secondary);
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px; /* overlap border-bottom */
}

.tab-btn.active {
    color: var(--color-orange-brand);
    border-bottom-color: var(--color-orange-brand);
}

.tab-btn:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.01);
    color: var(--color-text-primary);
}

.tab-icon {
    display: inline-block;
}

/* ==========================================================================
   FEED CONTAINER & PANES
   ========================================================================== */
.feed-container {
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   POST CARD
   ========================================================================== */
.post-card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-profile-card);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Post Header */
.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.post-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--color-icon-bg);
}

.post-name-wrapper {
    display: flex;
    flex-direction: column;
}

.post-author-name {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-author-username {
    font-size: 13px;
    color: var(--color-text-muted);
}

.post-options-btn {
    color: var(--color-text-secondary);
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.post-options-btn:hover {
    background-color: var(--color-icon-bg);
}

/* Post Media Box (Locked Overlay) */
.post-media-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

.post-media-box.locked {
    background-color: #FAF4EB; /* Soft tan background for locked media */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.locked-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(7px) brightness(0.95);
    -webkit-filter: blur(7px) brightness(0.95);
    transform: scale(1.05);
    z-index: 1;
}

.locked-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: rgba(250, 244, 235, 0.45);
    width: 100%;
    height: 100%;
}

.lock-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: transparent;
    border: 3.5px solid #828B96; /* Matches locked outline stroke style */
    color: #828B96;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-svg {
    stroke-width: 2px;
}

/* Locked Post stats bar overlay */
.locked-post-stats {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
}

.locked-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.locked-stat svg {
    color: #828B96;
}

/* Post Footer Actions */
.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.post-actions-left {
    display: flex;
    gap: 16px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    padding: 6px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.action-btn:hover {
    background-color: var(--color-icon-bg);
    color: var(--color-text-primary);
}

/* Like Button toggle state */
.action-btn.like-btn.liked {
    color: #ef4444;
    transform: scale(1.15);
}

.action-btn.like-btn.liked svg {
    fill: currentColor;
}

/* Save Button toggle state */
.action-btn.save-btn.saved {
    color: var(--color-orange-brand);
    transform: scale(1.1);
}

.action-btn.save-btn.saved svg {
    fill: currentColor;
}

/* ==========================================================================
   MEDIA TAB GRID
   ========================================================================== */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    background-color: var(--color-bg-card);
    padding: 8px;
    border-radius: var(--radius-profile-card);
    box-shadow: var(--shadow-premium);
}

.grid-item.locked {
    aspect-ratio: 1/1;
    background-color: #FAF4EB;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #828B96;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.grid-item.locked:hover {
    background-color: #F5ECD9;
    transform: scale(0.98);
}

/* ==========================================================================
   MODAL PIX CHECKOUT
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(26, 29, 32, 0.6); /* Semi-transparent charcoal */
    backdrop-filter: blur(8px); /* Premium blur effect */
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--color-bg-card);
    width: 90%;
    max-width: 420px;
    border-radius: var(--radius-profile-card);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: 32px 24px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--color-text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    background-color: var(--color-icon-hover);
    color: var(--color-text-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.modal-subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

/* States Display Logic */
.modal-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: modalStateFadeIn 0.3s ease-out;
}

.modal-state.active {
    display: flex;
}

@keyframes modalStateFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Spinner Styles */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-icon-bg);
    border-top: 4px solid var(--color-orange-brand);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.state-text {
    font-size: 15px;
    color: var(--color-text-secondary);
}

/* Payment Details State */
.payment-plan-info {
    background-color: var(--color-icon-bg);
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-inner-card);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.payment-plan-info .plan-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.payment-plan-info .plan-value {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-orange-brand);
}

.qrcode-container {
    width: 200px;
    height: 200px;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.qrcode-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.instructions-text {
    font-size: 13.5px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
    padding: 0 10px;
}

.pix-copy-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
}

#pix-copy-input {
    width: 100%;
    background-color: var(--color-icon-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0 16px;
    font-size: 13px;
    color: var(--color-text-primary);
    outline: none;
    height: 46px;
    text-overflow: ellipsis;
    font-family: monospace;
    text-align: center;
}

.copy-btn {
    width: 100%;
    background-color: var(--color-text-primary);
    color: #FFFFFF;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    height: 48px;
}

.copy-btn:hover {
    background-color: #2D3135;
    transform: translateY(-1px);
}

.copy-btn.copied {
    background-color: #10b981; /* Green */
}

/* Awaiting Payment Indicator */
.awaiting-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.vip-notice-text {
    font-size: 12.5px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-top: 10px;
    padding: 0 10px;
    text-align: center;
    opacity: 0.9;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-orange-brand);
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

/* Success & Error State Visuals */
.success-icon-wrapper, .error-icon-wrapper {
    margin-bottom: 20px;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-title {
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 8px;
}

.success-text, .error-text {
    font-size: 14.5px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 12px;
}

.success-close-btn, .error-retry-btn {
    width: 100%;
    height: 52px;
    border-radius: var(--radius-inner-card);
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-close-btn {
    background-color: #10b981;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.success-close-btn:hover {
    background-color: #059669;
    transform: scale(1.01);
}

.error-title {
    font-size: 20px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 8px;
}

.error-retry-btn {
    background-color: #ef4444;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
}

.error-retry-btn:hover {
    background-color: #dc2626;
    transform: scale(1.01);
}

/* Timer do Pix */
.pix-timer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: rgba(243, 112, 33, 0.08);
    color: var(--color-orange-brand);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pix-timer-wrapper svg {
    stroke: currentColor;
}

.pix-timer-wrapper strong {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   AUTOMATIC DARK MODE (prefers-color-scheme: dark)
   ========================================================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg-page: #0F1115;
        --color-bg-card: #181A20;
        --color-text-primary: #F3F4F6;
        --color-text-secondary: #9CA3AF;
        --color-text-muted: #6B7280;
        
        --color-icon-bg: #222630;
        --color-icon-hover: #2D3240;
        
        --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.45);
        --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    body {
        background-color: var(--color-bg-page);
        color: var(--color-text-primary);
    }

    .app-header {
        background-color: var(--color-bg-card);
        border-bottom-color: rgba(255, 255, 255, 0.06);
    }

    .profile-card,
    .post-card,
    .tabs-section,
    .media-grid,
    .modal-card {
        background-color: var(--color-bg-card);
        border-color: rgba(255, 255, 255, 0.06);
    }

    .avatar-container {
        border-color: var(--color-bg-card);
    }

    .post-footer {
        border-top-color: rgba(255, 255, 255, 0.06);
    }

    .tabs-header {
        border-bottom-color: rgba(255, 255, 255, 0.06);
    }

    .post-media-box.locked,
    .grid-item.locked {
        background-color: #12141A;
    }

    .grid-item.locked:hover {
        background-color: #1F232D;
    }

    .locked-overlay {
        background-color: rgba(18, 20, 26, 0.75);
    }

    .payment-plan-info {
        background-color: #222630;
    }

    #pix-copy-input {
        background-color: #222630;
        border-color: rgba(255, 255, 255, 0.08);
        color: #F3F4F6;
    }

    .copy-btn {
        background-color: #2D3240;
        color: #FFFFFF;
    }

    .copy-btn:hover {
        background-color: #3B4254;
    }

    .copy-btn.copied {
        background-color: #10b981;
    }

    .qrcode-container {
        background-color: #FFFFFF; /* Mantém fundo branco para leitura fácil do QR Code pelo app do banco */
        border-color: rgba(255, 255, 255, 0.1);
    }

    .modal-overlay {
        background-color: rgba(0, 0, 0, 0.75);
    }
}

