/* ==============================================================================
   LUCENTRY SHOP - Clean Editorial Design System
   Inspired by Knights of the Editing Table
   Minimalist, Typography-focused, Light Palette, High Performance
   ============================================================================== */

:root {
    --bg-main: #ffffff;
    --bg-alt: #f9fafb;
    --bg-subtle: #f3f4f6;
    --bg-card: #ffffff;
    
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    --border-color: #e5e7eb;
    --border-hover: #d1d5db;
    --border-dark: #111827;
    
    --accent-primary: #0f172a;
    --accent-blue: #2563eb;
    --accent-green: #16a34a;
    --accent-green-bg: #f0fdf4;
    --accent-amber: #d97706;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 30px -10px rgba(0, 0, 0, 0.08);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==============================================================================
   TOP HEADER & NAVIGATION (Knights-inspired Clean Bar)
   ============================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    width: 38px;
    height: 38px;
    background-color: #0b0f19;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.2);
}

.brand-logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.5));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    line-height: 1.1;
}

.brand-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Nav Links */
.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu for Products */
.dropdown-container {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 101;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--bg-alt);
}

.dropdown-item-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-item-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.item-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    background: var(--bg-subtle);
    color: var(--text-secondary);
}

.item-badge.hot {
    background: #ecfdf5;
    color: #059669;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    display: flex;
    align-items: center;
}

.site-lang-select {
    appearance: none;
    -webkit-appearance: none;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath fill='%2364748b' d='M0 0l4 5 4-5z'/%3E%3C/svg%3E") no-repeat right 8px center;
    padding: 7px 24px 7px 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.site-lang-select:hover {
    border-color: var(--text-primary);
    background-color: var(--bg-alt);
}

.site-lang-select:focus {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(11, 15, 25, 0.08);
}

.btn-lookup {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-lookup:hover {
    background: var(--bg-alt);
    border-color: var(--border-dark);
}

.currency-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-subtle);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

/* ==============================================================================
   HERO / BANNER SECTION (Clean & Prestigious)
   ============================================================================== */
.hero-section {
    padding: 80px 0 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.hero-subtitle-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: #ffffff;
    border: 1px solid var(--border-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color: var(--text-primary);
    max-width: 820px;
    margin: 0 auto 20px auto;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 36px auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 2px;
}

/* ==============================================================================
   STORE SECTION / CATALOG GRID
   ============================================================================== */
.store-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: 16px;
}

.section-title-wrap {
    display: flex;
    flex-direction: column;
}

.section-pretitle {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--text-primary);
}

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

.store-filters {
    display: flex;
    gap: 8px;
}

.filter-btn {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    border: 1px solid transparent;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--bg-alt);
    color: var(--text-primary);
    border-color: var(--border-color);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.products-grid.single-product-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.product-card.featured {
    border: 1.5px solid var(--text-primary);
}

.product-badge-top {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    background: var(--text-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.product-badge-top.webapp {
    background: var(--accent-blue);
}

.product-badge-top.coming-soon {
    background: var(--accent-amber);
}

.product-preview {
    width: 100%;
    height: 350px;
    background-color: #070a12;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.preview-tabs {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    display: flex;
    gap: 6px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    padding: 4px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.preview-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.preview-tab:hover {
    color: #ffffff;
}

.preview-tab.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.preview-media-pane {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.preview-media-pane.active {
    display: block;
}

.preview-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #070a12;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #070a12;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.02);
}

.video-overlay-badge {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.product-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.product-category {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.product-version {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-secondary);
    background: var(--bg-subtle);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Feature checklist */
.product-features-list {
    list-style: none;
    margin-bottom: 28px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.feature-check {
    color: var(--accent-green);
    font-weight: 800;
    font-size: 14px;
    line-height: 1.2;
}

/* Card Pricing & Action */
.product-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-strike {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-actual {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-currency {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
    line-height: 1;
}

.price-term {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Action Buttons */
.btn-buy-mp {
    background-color: var(--text-primary);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.btn-buy-mp:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-open-app {
    background-color: var(--accent-blue);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-open-app:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-disabled {
    background-color: var(--bg-subtle);
    color: var(--text-muted);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: not-allowed;
}

/* Payment Gateway Note */
.gateway-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==============================================================================
   COMING SOON STRIP (Multi-Product Showcase)
   ============================================================================== */
.upcoming-section {
    padding: 40px 0 80px 0;
}

.upcoming-card {
    background: var(--bg-alt);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.upcoming-info h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.upcoming-info p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ==============================================================================
   LOOKUP MODAL & SECTION (Supabase Key Recovery)
   ============================================================================== */
.lookup-section {
    padding: 80px 0;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.lookup-card-clean {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.lookup-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 20px;
}

.lookup-clean-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.lookup-clean-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.lookup-input-group {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
}

.clean-input {
    flex-grow: 1;
    height: 50px;
    padding: 0 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    background: #ffffff;
    color: var(--text-primary);
    transition: var(--transition);
}

.clean-input:focus {
    border-color: var(--text-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.clean-submit-btn {
    height: 50px;
    padding: 0 24px;
    background-color: var(--text-primary);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.clean-submit-btn:hover {
    background-color: #000000;
}

/* Result Box Clean */
.clean-result-box {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: left;
    display: none;
}

.result-key-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.result-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-green);
}

.key-mono-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.key-code {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1.5px;
}

.btn-copy-clean {
    background: var(--text-primary);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
}

.btn-copy-clean:hover {
    background: #000000;
}

.result-status-txt {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ==============================================================================
   FOOTER (Clean, Minimalist, Knights style)
   ============================================================================== */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 40px 0;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-brand-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links-group {
    display: flex;
    gap: 60px;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-col-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 12px;
    color: var(--text-light);
}

.footer-gateways {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
}

/* ==============================================================================
   RESPONSIVE DESIGN
   ============================================================================== */
@media (max-width: 960px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .upcoming-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-links-group {
        flex-wrap: wrap;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .header-nav {
        display: none;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .lookup-input-group {
        flex-direction: column;
    }
    
    .key-mono-box {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==============================================================================
   PIX TRANSPARENTE MODAL STYLES (Clean Editorial Modal)
   ============================================================================== */
.pix-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.pix-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.pix-modal-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 480px;
    padding: 36px 32px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pix-modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-muted);
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.pix-modal-close-btn:hover {
    background: var(--bg-alt);
    color: var(--text-primary);
    border-color: var(--border-dark);
}

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

.pix-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: #ecfdf5;
    color: #047857;
    margin-bottom: 12px;
}

.pix-badge.success {
    background: #dcfce7;
    color: #15803d;
}

.pix-modal-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pix-modal-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.pix-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.pix-input-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.pix-price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 14px;
}

.pix-total-highlight {
    font-size: 18px;
    color: var(--accent-green);
    font-weight: 800;
}

.pix-primary-btn {
    width: 100%;
    padding: 14px 20px;
    background: var(--text-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.pix-primary-btn:hover {
    background: #000000;
    transform: translateY(-1px);
}

.pix-primary-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* QR Code Display */
.pix-qr-container {
    text-align: center;
    background: #ffffff;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
}

.pix-qr-img {
    width: 220px;
    height: 220px;
    display: block;
    margin: 0 auto 14px auto;
    border-radius: var(--radius-sm);
}

.pix-value-badge {
    font-size: 14px;
    color: var(--text-secondary);
}

.pix-value-badge strong {
    color: var(--text-primary);
    font-size: 16px;
}

/* Copia e Cola */
.pix-copia-cola-box {
    margin-bottom: 20px;
    text-align: left;
}

.pix-copy-input-row {
    display: flex;
    gap: 8px;
}

.pix-code-field {
    flex: 1;
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-subtle);
    color: var(--text-muted);
    outline: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-copy-pix {
    padding: 10px 16px;
    background: var(--accent-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-copy-pix:hover {
    background: #000000;
}

/* Waiting Indicator */
.pix-waiting-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulseAnimation 1.5s infinite ease-in-out;
}

@keyframes pulseAnimation {
    0% { transform: scale(0.85); opacity: 0.5; box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
    100% { transform: scale(0.85); opacity: 0.5; box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* Success Card */
.pix-success-card {
    text-align: center;
    padding: 10px 0;
}

.pix-success-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.pix-success-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pix-success-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.pix-confirmed-email {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-blue);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* ==============================================================================
   SHOWCASE SECTION (Editorial Window Cards for Video & Real Timeline)
   ============================================================================== */
.showcase-section {
    padding: 80px 0;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.showcase-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 960px) {
    .showcase-dual-grid {
        grid-template-columns: 1fr;
    }
}

.showcase-display-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.showcase-display-card:hover {
    border-color: var(--border-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.display-card-header {
    background: #0f172a;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.w-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.w-dot.red { background-color: #ef4444; }
.w-dot.yellow { background-color: #f59e0b; }
.w-dot.green { background-color: #10b981; }

.display-card-title {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    text-align: center;
}

.display-card-pill {
    background: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

.display-media-frame {
    position: relative;
    background: #090d16;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.display-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #050811;
}

.display-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #050811;
    transition: transform 0.3s ease;
}

.display-img:hover {
    transform: scale(1.02);
}

.display-card-body {
    padding: 24px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.display-headline {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.display-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}
