/* ============================================
   TEMA STREAMING - Preto e Vermelho (estilo antigo)
   Aplica-se às páginas de streaming no Grupos Telegrama
   ============================================ */

/* Fix: html e body pretos - elimina faixa roxa/azul no topo */
html:has(body.streaming-theme) {
    background: #000000 !important;
}
body.streaming-theme {
    background: #000000 !important;
    padding: 16px 20px 0 20px !important; /* Sem padding-bottom - evita espaço preto */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* Wrapper do conteúdo principal + footer */
body.streaming-theme .page-content-wrapper {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

/* Override cores azuis para vermelho nos elementos de streaming */
body.streaming-theme .search-input:focus { border-color: #E50914; }
body.streaming-theme .search-button { background: #E50914; }
body.streaming-theme .search-button:hover { background: #B91C1C; }
body.streaming-theme .nav-link.active { background: #1a1a1a; }
body.streaming-theme .nav-link-streaming.active { color: #EF4444 !important; background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(229, 9, 20, 0.2) 100%); border: 1px solid rgba(239, 68, 68, 0.4); }

/* Header com indicador "comprando agora" */
body.streaming-theme .header-buying-now {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(229, 9, 20, 0.4);
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
}
body.streaming-theme .buying-now-indicator {
    width: 10px; height: 10px;
    background: #E50914;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.8);
    animation: pulse-red 2s ease-in-out infinite;
}
@keyframes pulse-red {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* ========== HEADER - Layout exato do site_streaming original ========== */
body.streaming-theme .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}
body.streaming-theme .header-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
}
body.streaming-theme .title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}
body.streaming-theme .title-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
body.streaming-theme .title-link:hover {
    opacity: 0.8;
    cursor: pointer;
}
/* Ícone pequeno (28x28) - NÃO gigante - igual site_streaming original */
body.streaming-theme .title-streaming-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    flex-shrink: 0;
    color: #E50914;
}
/* "Comprando agora" CENTRADO no header (não no canto direito) */
body.streaming-theme .header-buying-now {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(229, 9, 20, 0.4);
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    white-space: nowrap;
}
body.streaming-theme .buying-now-number {
    font-size: 16px;
    font-weight: 700;
    color: #f1f5f9;
    min-width: 30px;
    text-align: center;
}
body.streaming-theme .buying-now-text {
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 500;
}
body.streaming-theme .header-tagline {
    margin-left: auto;
    max-width: 420px;
    text-align: right;
    font-size: 14px;
    color: #f1f5f9;
    opacity: 0.9;
    position: relative;
    z-index: 0;
}
body.streaming-theme .header-tagline:empty,
body.streaming-theme .header-tagline:has(.header-tagline-text:empty) {
    display: none;
}

/* ========== FOOTER - Streaming Premium (encostado no fim da tela) ========== */
body.streaming-theme .site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(229, 9, 20, 0.3);
    padding: 24px 0;
    margin-top: auto; /* Empurra o footer para o fim */
}
body.streaming-theme .site-footer .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
body.streaming-theme .footer-left {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.9;
}
body.streaming-theme .footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
body.streaming-theme .footer-contact-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}
body.streaming-theme .footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #E50914 0%, #B91C1C 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}
body.streaming-theme .footer-link:hover {
    background: linear-gradient(135deg, #EF4444 0%, #E50914 100%);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5);
    transform: translateY(-2px);
}
body.streaming-theme .footer-link-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.streaming-theme .footer-link-icon svg {
    width: 100%;
    height: 100%;
}

/* ========== NOTIFICAÇÕES "NOME adquiriu STREAMING" - tema vermelho ========== */
body.streaming-theme .vip-notification {
    background: rgba(26, 26, 26, 0.98) !important;
    border: 1px solid rgba(229, 9, 20, 0.4) !important;
    box-shadow: 0 4px 25px rgba(229, 9, 20, 0.25) !important;
}
body.streaming-theme .vip-notification-icon:not(.with-image) {
    background: linear-gradient(135deg, #E50914 0%, #B91C1C 100%) !important;
}
body.streaming-theme .vip-notification-icon.with-image {
    background: transparent !important;
    border: 1px solid rgba(229, 9, 20, 0.3);
}

/* ========== BANNER DE CONVITE - fixo no fundo, sobresaindo (overlay) ========== */
body.streaming-theme .invite-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    z-index: 999;
    background: linear-gradient(135deg, #1a0a0a 0%, #2a1515 100%) !important;
    border-top: 2px solid #E50914 !important;
    box-shadow: 0 -4px 30px rgba(229, 9, 20, 0.3) !important;
}
body.streaming-theme .invite-banner-icon {
    background: linear-gradient(135deg, #E50914 0%, #B91C1C 100%) !important;
}
body.streaming-theme .invite-banner-button {
    background: linear-gradient(135deg, #E50914 0%, #B91C1C 100%) !important;
}
body.streaming-theme .invite-banner-button:hover {
    background: linear-gradient(135deg, #EF4444 0%, #E50914 100%) !important;
}

/* ========== BOTÃO SCROLL TO TOP - vermelho nas páginas de streaming ========== */
body.streaming-theme .scroll-to-top {
    background: linear-gradient(135deg, #E50914 0%, #B91C1C 100%) !important;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4), 0 0 0 0 rgba(229, 9, 20, 0.5) !important;
}
body.streaming-theme .scroll-to-top:hover {
    background: linear-gradient(135deg, #EF4444 0%, #E50914 100%) !important;
    box-shadow: 0 6px 30px rgba(229, 9, 20, 0.6), 0 0 0 8px rgba(229, 9, 20, 0.2) !important;
}
body.streaming-theme .scroll-to-top:active {
    background: linear-gradient(135deg, #EF4444 0%, #E50914 100%) !important;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.5), 0 0 0 4px rgba(229, 9, 20, 0.3) !important;
}

/* ========== COLLECTION HEADER (Hero com imagens filme) ========== */
.collection-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 80px 20px;
    background: radial-gradient(circle at top center, rgba(239, 68, 68, 0.18) 0%, rgba(0, 0, 0, 0.95) 45%, rgba(0, 0, 0, 1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.collection-header::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.collection-hero-filme {
    position: absolute;
    width: auto; max-width: 180px;
    height: auto; max-height: 220px;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
    z-index: 1;
    pointer-events: none;
}
.collection-hero-filme-0 { top: 8%; left: 5%; max-width: 160px; max-height: 200px; }
.collection-hero-filme-1 { top: 25%; left: 2%; max-width: 140px; max-height: 175px; }
.collection-hero-filme-2 { top: 55%; left: 8%; max-width: 170px; max-height: 210px; }
.collection-hero-filme-3 { top: 75%; left: 3%; max-width: 150px; max-height: 185px; }
.collection-hero-filme-4 { top: 15%; right: 4%; left: auto; max-width: 155px; max-height: 195px; }
.collection-hero-filme-5 { top: 40%; right: 2%; left: auto; max-width: 165px; max-height: 205px; }
.collection-hero-filme-6 { top: 65%; right: 6%; left: auto; max-width: 145px; max-height: 180px; }
.collection-hero-filme-7 { top: 85%; right: 3%; left: auto; max-width: 150px; max-height: 190px; }
.collection-hero-filme-8 { top: 5%; right: 15%; left: auto; max-width: 155px; max-height: 195px; }

.collection-hero {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 15%;
    box-sizing: border-box;
}
.collection-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(90deg, rgba(229, 9, 20, 0.15), rgba(229, 9, 20, 0.45));
    border: 1px solid rgba(229, 9, 20, 0.7);
    color: #FCA5A5;
    box-shadow: 0 0 25px rgba(229, 9, 20, 0.4);
    margin-bottom: 18px;
}
.collection-hero-title {
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #E50914;
    text-shadow: 0 0 35px rgba(229, 9, 20, 0.8), 0 0 80px rgba(229, 9, 20, 0.6);
    margin-bottom: 18px;
}
.collection-hero-subtitle { font-size: 24px; font-weight: 700; color: #fefce8; margin-bottom: 18px; }
.collection-hero-text { font-size: 18px; color: #e5e7eb; margin: 4px 0; }
.collection-hero-text .strong { color: #EF4444; font-weight: 800; }
.collection-hero-offer {
    position: relative;
    z-index: 10;
    margin-top: 10px;
    padding: 18px 22px;
    border-radius: 16px;
    background: radial-gradient(circle at left, rgba(229, 9, 20, 0.35), transparent 60%), rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    cursor: pointer;
    transition: all 0.3s ease;
}
.collection-hero-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75);
    border-color: rgba(239, 68, 68, 0.8);
}
.collection-hero-footnote { margin-top: 10px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.18em; color: #c4b5fd; }

/* ========== COLLECTION GRID (Cards) ========== */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.collection-card-link { text-decoration: none; color: inherit; display: block; cursor: pointer; }
.collection-card-link:hover { text-decoration: none; }
.collection-card {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(239, 68, 68, 0.1);
    cursor: pointer;
    height: 100%;
}
.collection-card-link:hover .collection-card {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}
.collection-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}
.collection-card-img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.collection-card-image .streaming-logo-circle {
    width: 100px; height: 100px;
    background: #E50914;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.collection-card-image .streaming-icon { width: 60px; height: 60px; }
.collection-card-title { font-size: 20px; font-weight: 600; color: #ffffff; margin-bottom: 15px; }
.collection-card-description { font-size: 14px; color: #b0b5c8; margin-bottom: 20px; line-height: 1.6; text-align: left; min-height: 60px; }
.collection-pricing { width: 100%; margin-bottom: 20px; text-align: left; }
.pricing-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(30, 30, 30, 0.5); }
.pricing-item:last-child { border-bottom: none; }
.pricing-label { font-size: 13px; color: #8a8fa3; font-weight: 500; }
.pricing-value { font-size: 15px; color: #EF4444; font-weight: 600; }
.collection-details-button {
    display: inline-block;
    background: rgba(30, 30, 30, 0.8);
    color: #EF4444;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(239, 68, 68, 0.3);
    width: 100%;
    text-align: center;
}
.collection-card-link:hover .collection-details-button {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
    color: #EF4444;
    transform: translateY(-2px);
}

/* ========== PRODUCT DETAIL PAGE ========== */
.back-to-store { margin-bottom: 20px; }
/* Voltar ao Streaming - vermelho (override do azul #0088cc do style.css) */
body.streaming-theme .back-link,
body.streaming-theme .back-to-store .back-link,
body.streaming-theme .back-to-streaming .back-link {
    color: #EF4444 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s;
}
body.streaming-theme .back-link:hover,
body.streaming-theme .back-to-store .back-link:hover,
body.streaming-theme .back-to-streaming .back-link:hover {
    opacity: 0.8;
    text-decoration: none;
    color: #EF4444 !important;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.product-image-section {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 500px;
}
.product-main-image { width: 100%; height: auto; max-height: 600px; object-fit: contain; border-radius: 12px; }
.product-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.streaming-logo-circle-large {
    width: 200px; height: 200px;
    background: #E50914;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.streaming-icon-large { width: 120px; height: 120px; }
.product-info-section { display: flex; flex-direction: column; gap: 30px; }
.product-title { font-size: 36px; font-weight: 700; color: #EF4444; margin: 0; text-shadow: 0 2px 10px rgba(239, 68, 68, 0.3); }
.product-description { background: rgba(30, 30, 30, 0.5); border-radius: 12px; padding: 20px; color: #b0b5c8; font-size: 16px; line-height: 1.6; }
.benefits-section { background: rgba(30, 30, 30, 0.5); border-radius: 12px; padding: 25px; }
.benefits-title { font-size: 20px; font-weight: 600; color: #ffffff; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.benefits-content { color: #ffffff; font-size: 16px; line-height: 1.8; white-space: pre-line; }
.benefits-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.benefits-list li { color: #ffffff; font-size: 16px; display: flex; align-items: center; gap: 10px; }
.star-icon { color: #EF4444; font-size: 18px; }
.select-quality-title { font-size: 24px; font-weight: 700; color: #EF4444; margin: 0; }
.pricing-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; }
.pricing-plan-card {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 16px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.pricing-plan-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15);
    transform: translateY(-3px);
}
.pricing-plan-card-featured {
    border: 2px solid #E50914;
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 0 30px rgba(255, 75, 75, 0.2);
}
.plan-badge, .plan-discount-badge {
    position: absolute;
    top: -10px; right: 15px;
    background: linear-gradient(135deg, #E50914 0%, #EF4444 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}
.plan-content { display: flex; flex-direction: column; gap: 15px; }
.plan-header { display: flex; align-items: flex-start; gap: 15px; }
.plan-icon { font-size: 32px; line-height: 1; }
.plan-title { color: #EF4444; font-size: 20px; font-weight: 700; margin: 0 0 5px 0; }
.plan-details { color: #cbd5e1; font-size: 14px; margin: 0; opacity: 0.9; }
.plan-price { color: #ffffff; font-size: 32px; font-weight: 800; line-height: 1.2; }
.plan-period { color: #94a3b8; font-size: 13px; opacity: 0.8; }
.plan-feature { color: #e2e8f0; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.buy-button {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}
.buy-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}
.buy-button-featured {
    background: linear-gradient(135deg, #E50914 0%, #EF4444 100%);
    border: none;
    color: #ffffff;
}
.buy-button-featured:hover {
    background: linear-gradient(135deg, #EF4444 0%, #E50914 100%);
    box-shadow: 0 6px 20px rgba(255, 75, 75, 0.4);
}
.secure-payment-section { background: rgba(30, 30, 30, 0.5); border-radius: 12px; padding: 25px; margin-top: 20px; }
.secure-payment-title { font-size: 20px; font-weight: 700; color: #EF4444; margin: 0 0 10px 0; }
.secure-payment-text { color: #b0b5c8; font-size: 14px; line-height: 1.6; margin: 0; }

/* ========== PAYMENT / CHECKOUT ========== */
.payment-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
}
/* Pagamento PIX - vermelho puro (override do laranja/dourado #ffd700 do style.css) */
.payment-title {
    font-size: 32px;
    font-weight: 700;
    color: #E50914 !important;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.5) !important;
}
.payment-instruction { text-align: center; color: #ffffff; font-size: 16px; margin-bottom: 30px; opacity: 0.9; }
.payment-product-section { background: rgba(20, 20, 20, 0.8); border-radius: 12px; padding: 25px; margin-bottom: 30px; }
.payment-product-name { font-size: 20px; font-weight: 600; color: #E50914; margin: 0; }
.payment-product-plan { font-size: 16px; color: #ffffff; opacity: 0.8; margin: 0; }
.payment-price-section { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.payment-price-value { font-size: 32px; font-weight: 700; color: #E50914; }
.payment-qr-section { background: rgba(20, 20, 20, 0.8); border-radius: 12px; padding: 30px; margin-bottom: 30px; text-align: center; }
.payment-qr-title { font-size: 20px; font-weight: 600; color: #E50914; margin-bottom: 20px; }
.payment-qr-code-container { display: flex; justify-content: center; margin: 20px 0; padding: 20px; background: #ffffff; border-radius: 12px; display: inline-block; }
.payment-qr-code { max-width: 300px; width: 100%; height: auto; }
.payment-pix-code-section { background: rgba(20, 20, 20, 0.8); border-radius: 12px; padding: 30px; margin-bottom: 30px; }
.payment-pix-code-title { font-size: 20px; font-weight: 600; color: #EF4444; margin-bottom: 20px; }
.payment-pix-code-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
.payment-pix-code-input {
    width: 100%;
    padding: 15px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-family: monospace;
    word-break: break-all;
    box-sizing: border-box;
}
.payment-copy-button {
    padding: 15px 30px;
    background: #EF4444;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.payment-copy-button:hover {
    background: #FCA5A5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}
.payment-steps { list-style: decimal; padding-left: 25px; color: #ffffff; line-height: 1.8; }
.payment-pix-info-wrap { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.payment-pix-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.5);
    border-radius: 12px;
    margin-bottom: 20px;
}
.payment-pix-info-icon { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.payment-pix-info-text { color: #e5e7eb; font-size: 14px; line-height: 1.5; margin: 0; opacity: 0.95; }
.payment-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.payment-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 12px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.6) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}
.payment-feature-icon { width: 28px; height: 28px; flex-shrink: 0; }
.payment-feature-icon-lock { color: #EF4444; }
.payment-feature-icon-check { color: #ffffff; }
.payment-feature-icon-shield { color: #EF4444; }
.payment-feature-icon-bolt { color: #EF4444; }
.payment-feature-text { color: #ffffff; font-size: 13px; font-weight: 500; text-align: center; line-height: 1.3; }
.payment-status-section { background: rgba(20, 20, 20, 0.8); border-radius: 12px; padding: 30px; text-align: center; }
.payment-status-title { font-size: 20px; font-weight: 600; color: #ffffff; margin-bottom: 15px; }
.payment-check-button {
    padding: 15px 30px;
    background: #EF4444;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
}
.payment-check-button:hover {
    background: #FCA5A5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}
.payment-support-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; justify-content: center; }
.payment-support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #E50914 0%, #B91C1C 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}
.payment-support-button-telegram { background: linear-gradient(135deg, #0088cc 0%, #006699 100%); }
.payment-support-button-whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }

/* ========== PAYMENT ERROR ========== */
.payment-error-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    text-align: center;
}
.payment-error-icon {
    width: 100px; height: 100px;
    margin: 0 auto 30px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ffffff;
}
.payment-error-title { font-size: 32px; font-weight: 700; color: #ff6b6b; margin-bottom: 15px; }
.payment-error-message { font-size: 18px; color: #ffffff; margin-bottom: 40px; opacity: 0.9; }
.payment-error-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #E50914 0%, #B91C1C 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}
.payment-error-button:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4); }

/* ========== PAYMENT SUCCESS ========== */
.payment-success-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    text-align: center;
}
.payment-success-icon {
    width: 100px; height: 100px;
    margin: 0 auto 30px;
    background: #EF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ffffff;
}
.payment-success-title { font-size: 32px; font-weight: 700; color: #EF4444; margin-bottom: 15px; }
.payment-success-message { font-size: 18px; color: #ffffff; margin-bottom: 30px; opacity: 0.9; }
.payment-success-instructions { margin-bottom: 35px; padding: 25px; background: rgba(0, 0, 0, 0.2); border-radius: 12px; }
.payment-success-instructions-text { font-size: 16px; color: #ffffff; line-height: 1.6; margin-bottom: 15px; opacity: 0.95; }
.payment-success-instructions-subtitle { font-size: 14px; color: #ffffff; opacity: 0.8; }
.payment-success-buttons { justify-content: center; margin-top: 10px; }
.payment-success-link-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #E50914 0%, #B91C1C 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}
.payment-success-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5);
    background: linear-gradient(135deg, #EF4444 0%, #E50914 100%);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .collection-header { min-height: 450px; padding: 60px 15px; }
    .collection-hero-filme { max-width: 130px !important; max-height: 165px !important; }
    .collection-hero-title { font-size: 44px; }
    .product-detail-container { grid-template-columns: 1fr; }
    .pricing-plans { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .collection-header { padding: 40px 16px; min-height: 400px; }
    .collection-hero-filme { max-width: 100px !important; max-height: 130px !important; }
    .collection-hero-title { font-size: 32px; }
    .collection-hero-subtitle { font-size: 18px; }
}
@media (max-width: 768px) {
    .collection-grid { grid-template-columns: 1fr; }
    .collection-card-image { height: 150px; }
    .product-title { font-size: 24px; }
    .payment-features-grid { grid-template-columns: 1fr; }
    .payment-pix-info-box { flex-direction: column; align-items: flex-start; gap: 10px; }
}
