/* ============================================
   RED PIXEL - SHOP | STYLES
   Tema: Dark Gamer / Cyber / Hacker
   Cores: Vermelho + Preto
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
    /* Cores Principais */
    --red-primary: #ff0a0a;
    --red-secondary: #cc0000;
    --red-dark: #990000;
    --red-glow: #ff3333;
    --red-neon: #ff1a1a;

    /* Backgrounds */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #151515;
    --bg-modal: rgba(10, 10, 10, 0.98);

    /* Textos */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;

    /* Efeitos */
    --glow-red: 0 0 20px rgba(255, 10, 10, 0.5);
    --glow-red-strong: 0 0 40px rgba(255, 10, 10, 0.7);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);

    /* Gradientes */
    --gradient-red: linear-gradient(135deg, #ff0a0a 0%, #cc0000 100%);
    --gradient-dark: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    --gradient-glow: linear-gradient(135deg, #ff3333 0%, #ff0a0a 50%, #cc0000 100%);

    /* Fontes */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== UTILITIES ========== */
.hidden {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TELA DE VERIFICAÇÃO (GATE) ========== */
.gate-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

.gate-container {
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.logo-container {
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease;
}

.logo-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: var(--glow-red);
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--red-primary);
    text-shadow: var(--glow-red-strong);
}

.logo-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-secondary);
    letter-spacing: 10px;
    margin-top: 10px;
}

.verification-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 10, 10, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.verification-box h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.verification-box>p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Captcha Container */
.captcha-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-tertiary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.captcha-container:hover {
    border-color: var(--red-primary);
    box-shadow: var(--glow-red);
}

/* ========== NOVA VERIFICAÇÃO ========== */
.btn-verify {
    background: transparent;
    border: 2px solid var(--red-primary);
    color: var(--text-primary);
    padding: 15px 40px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 10, 10, 0.2);
}

.btn-verify:hover {
    background: var(--red-primary);
    color: white;
    box-shadow: 0 0 30px rgba(255, 10, 10, 0.6);
    transform: scale(1.05);
}

.btn-verify .lock-icon {
    font-size: 1.5rem;
}

/* Animação de Desbloqueio */
.unlock-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.unlock-circle {
    width: 60px;
    height: 60px;
    border: 4px solid var(--red-primary);
    border-radius: 50%;
    position: absolute;
    animation: expandCircle 1s ease-out forwards;
}

.unlock-icon {
    font-size: 3rem;
    animation: popIcon 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes expandCircle {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        border-width: 10px;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
        border-width: 0;
    }
}

@keyframes popIcon {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(10deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* Verification States */
.verification-loading,
.verification-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-tertiary);
    border-top-color: var(--red-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.verification-loading p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--glow-red-strong);
    animation: scaleIn 0.4s ease;
}

.verification-success p {
    color: #4ade80;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Gate Particles Background */
.gate-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 10, 10, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 10, 10, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 10, 10, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ========== MODAIS ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 10, 10, 0.3);
    border-radius: var(--radius-lg);
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--glow-red), var(--shadow-card);
    animation: modalSlideIn 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--red-primary);
    transform: rotate(90deg);
}

/* Modal de Desconto */
.discount-modal-content {
    padding: 40px;
    text-align: center;
    background: linear-gradient(180deg, #1a0a0a 0%, var(--bg-card) 100%);
    border-color: var(--red-primary);
}

.discount-header {
    margin-bottom: 20px;
}

.confetti-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 10px;
    animation: bounce 1s ease infinite;
}

.discount-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--red-primary);
    text-shadow: var(--glow-red);
}

.discount-body {
    margin-bottom: 30px;
}

.discount-message {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.discount-message .highlight {
    color: var(--red-primary);
    font-weight: 700;
}

.discount-timer {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
}

.discount-timer>p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.timer-block {
    background: var(--gradient-red);
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--glow-red);
}

.timer-block span {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.timer-block small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.timer-separator {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--red-primary);
    animation: blink 1s infinite;
}

.discount-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.discount-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.discount-info strong {
    color: var(--red-primary);
}

/* ========== BOTÕES ========== */
.btn {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
    box-shadow: var(--glow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-red-strong);
}

.btn-glow {
    animation: pulse-glow 2s infinite;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-confirm {
    background: var(--gradient-red);
    color: white;
}

.btn-confirm:hover {
    box-shadow: var(--glow-red-strong);
}

/* ========== HEADER ========== */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 10, 10, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo .logo-text {
    font-size: 1.8rem;
}

.logo-badge {
    background: var(--gradient-red);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.discount-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 10, 10, 0.15);
    border: 1px solid var(--red-primary);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--red-primary);
    animation: pulse-border 2s infinite;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--red-primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

/* ========== SELEÇÃO DE PLATAFORMA ========== */
.platform-section {
    padding: 80px 0;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 10px;
}

.section-title span {
    color: var(--red-primary);
    text-shadow: var(--glow-red);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-red);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.platform-card:hover {
    border-color: var(--red-primary);
    transform: translateY(-10px);
    box-shadow: var(--glow-red-strong);
}

.platform-card:hover::before {
    opacity: 0.1;
}

.platform-card>* {
    position: relative;
    z-index: 1;
}

.platform-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.platform-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.platform-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========== PRODUTOS ========== */
.products-section {
    padding: 40px 0 80px;
    min-height: 100vh;
}

.back-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: 30px;
}

.back-btn:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.products-grid.single-product {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    transition: all var(--transition-normal);
}

.product-card:hover {
    border-color: rgba(255, 10, 10, 0.5);
    box-shadow: var(--glow-red);
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-red);
    padding: 8px 15px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--glow-red);
}

.product-badge.vip {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    flex: 1;
}

.product-tag {
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
}

.product-tag.safe {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.product-tag.ia {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    border: 1px solid #a855f7;
}

.product-tag.mod {
    background: rgba(255, 10, 10, 0.2);
    color: var(--red-primary);
    border: 1px solid var(--red-primary);
}

.product-features {
    margin-bottom: 25px;
}

.product-features h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-features ul {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.product-features li.feature-yes {
    color: var(--text-primary);
}

.product-features li.feature-no {
    color: #ef4444;
}

.product-features li.feature-warning {
    color: #f59e0b;
}

.menu-features li {
    color: #4ade80 !important;
}

.product-video {
    margin-bottom: 20px;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 10, 10, 0.1);
    border: 1px solid var(--red-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.video-link:hover {
    background: rgba(255, 10, 10, 0.2);
    box-shadow: var(--glow-red);
}

.product-pricing {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discounted-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--red-primary);
    text-shadow: var(--glow-red);
}

.btn-buy {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* ========== MODAL DE COMPRA ========== */
.purchase-modal .modal-content {
    padding: 0;
    max-width: 500px;
}

.modal-header {
    background: var(--gradient-red);
    padding: 25px 30px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.modal-platform {
    font-size: 0.9rem;
    opacity: 0.9;
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: center;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-options.single {
    max-width: 350px;
    margin: 0 auto;
}

.pricing-option {
    background: var(--bg-tertiary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all var(--transition-fast);
    position: relative;
}

.pricing-option:hover {
    border-color: var(--red-primary);
}

.pricing-option.popular {
    border-color: var(--red-primary);
    background: rgba(255, 10, 10, 0.1);
}

.pricing-option.vip {
    flex-direction: column;
    text-align: center;
    border-color: #ffd700;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
}

.popular-badge,
.vip-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-red);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.vip-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
}

.option-duration {
    display: flex;
    align-items: center;
    gap: 10px;
}

.duration-icon {
    font-size: 1.3rem;
}

.duration-text {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
}

.option-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    min-width: 90px;
}

.pricing-option.vip .option-price {
    align-items: center;
    margin: 15px 0;
}

.option-price .original {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    white-space: nowrap;
}

.option-price .discounted {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--red-primary);
    white-space: nowrap;
}

.btn-select {
    background: var(--gradient-red);
    color: white;
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-select:hover {
    box-shadow: var(--glow-red);
}

.btn-vip {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
}

.btn-vip:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* ========== MODAL DE CONFIRMAÇÃO ========== */
.confirmation-content {
    padding: 40px;
    text-align: center;
    max-width: 450px;
}

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.confirmation-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.confirmation-details {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.confirmation-details p {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.confirmation-details p:last-child {
    border-bottom: none;
}

.confirmation-details strong {
    color: var(--text-primary);
}

.confirmation-details span {
    color: var(--red-primary);
    font-weight: 600;
}

.confirmation-warning {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.confirmation-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirmation-buttons .btn {
    flex: 1;
    max-width: 180px;
}

/* ========== MODAL EXPIRADO ========== */
.expired-content {
    padding: 40px;
    text-align: center;
    max-width: 400px;
}

.expired-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.expired-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--red-primary);
    margin-bottom: 15px;
}

.expired-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* ========== FOOTER ========== */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 10, 10, 0.2);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Footer Support */
.footer-support {
    text-align: center;
}

.footer-support h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5865F2;
    color: white;
    padding: 12px 25px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.5);
}

.discord-icon {
    flex-shrink: 0;
}

.support-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Botão Flutuante de Suporte */
.floating-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #5865F2;
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 30px rgba(88, 101, 242, 0.4);
    transition: all var(--transition-normal);
    z-index: 999;
    animation: floatButton 3s ease-in-out infinite;
}

.floating-support:hover {
    background: #4752c4;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.6);
}

.floating-support .support-label {
    display: block;
}

@keyframes floatButton {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .floating-support {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }

    .floating-support .support-label {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* ========== ANIMAÇÕES ========== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: var(--glow-red);
    }

    50% {
        box-shadow: var(--glow-red-strong);
    }
}

@keyframes pulse-border {

    0%,
    100% {
        border-color: var(--red-primary);
    }

    50% {
        border-color: rgba(255, 10, 10, 0.5);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .discount-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .verification-box {
        padding: 25px;
    }

    .captcha-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .timer-block span {
        font-size: 2rem;
    }

    .pricing-option {
        flex-direction: column;
        text-align: center;
    }

    .option-price {
        align-items: center;
    }

    .confirmation-buttons {
        flex-direction: column;
    }

    .confirmation-buttons .btn {
        max-width: 100%;
    }

    .modal-content {
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .product-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .discounted-price {
        font-size: 1.5rem;
    }
}

/* ========== SCROLLBAR PERSONALIZADA ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--red-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-primary);
}

/* ========== MEDIA PREVIEW (VÍDEO/IMAGEM) ========== */
.product-media-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.media-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.media-btn:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
    background: rgba(255, 10, 10, 0.1);
}

.media-btn .media-icon {
    font-size: 1.1rem;
}

/* Modal de Mídia */
.media-modal .modal-content {
    max-width: 900px;
    padding: 0;
    background: #000;
    border-color: var(--red-primary);
}

.media-modal .modal-close {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
}

.media-container {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.media-container video {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.media-container img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.media-loading {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
}

.media-loading .spinner {
    width: 40px;
    height: 40px;
}

.media-error {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.media-error .error-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.media-title {
    background: var(--gradient-red);
    padding: 15px 20px;
    font-family: var(--font-display);
    font-size: 1rem;
    text-align: center;
}

/* Responsividade do Modal de Mídia */
@media (max-width: 768px) {
    .media-modal .modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .product-media-buttons {
        flex-direction: column;
    }

    .media-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========== MODAL DE SUPORTE ========== */
.support-modal-content {
    max-width: 600px;
    padding: 0;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--red-primary);
}

.support-header {
    background: var(--gradient-red);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.support-icon {
    font-size: 2rem;
}

.support-header h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.support-body {
    padding: 30px;
    text-align: left;
}

.alert-box {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.5);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.alert-box p {
    color: #ffb74d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.instruction-text {
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1rem;
}

.support-image-container {
    background: #000;
    border: 1px solid var(--text-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.support-guide-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 300px;
    object-fit: cover;
    object-position: top;
}

.support-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-hours p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.support-footer {
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.btn-discord-modal {
    width: 100%;
    background: #5865F2;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
}

.btn-discord-modal:hover {
    background: #4752c4;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .support-guide-img {
        max-height: 200px;
    }
}

/* ========== MODAIS PIX PAYMENT ========== */

/* Modal de Formulário PIX */
.pix-form-content {
    padding: 0;
    max-width: 450px;
}

.pix-form-header {
    background: linear-gradient(135deg, #1a0f0f 0%, var(--bg-card) 100%);
    padding: 25px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 10, 10, 0.2);
}

.pix-form-header .pix-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.pix-form-header h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
}

.pix-form-body {
    padding: 25px 30px;
}

.pix-form-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 15px rgba(255, 10, 10, 0.2);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.pix-summary {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin-bottom: 20px;
}

.pix-summary p {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.pix-summary p:last-child {
    margin-bottom: 0;
}

.pix-summary-price {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pix-summary-price span {
    color: var(--red-primary) !important;
    font-size: 1.2rem !important;
    font-weight: 700;
}

.btn-generate-pix {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-generate-pix .btn-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spinner-small {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Modal QR Code PIX */
.pix-qrcode-content {
    padding: 0;
    max-width: 420px;
}

.pix-qrcode-header {
    background: linear-gradient(135deg, #0f1a1a 0%, var(--bg-card) 100%);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-bottom: 1px solid rgba(50, 188, 173, 0.3);
}

.pix-logo svg {
    filter: drop-shadow(0 0 10px rgba(50, 188, 173, 0.5));
}

.pix-qrcode-header h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #32BCAD;
}

.pix-qrcode-body {
    padding: 25px;
}

.pix-amount {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(50, 188, 173, 0.1) 0%, rgba(50, 188, 173, 0.05) 100%);
    border: 1px solid rgba(50, 188, 173, 0.3);
    border-radius: var(--radius-md);
}

.pix-amount-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.pix-amount-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #32BCAD;
    text-shadow: 0 0 20px rgba(50, 188, 173, 0.5);
}

.pix-qrcode-container {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pix-qrcode-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pix-qrcode-loading .spinner {
    border-color: #e0e0e0;
    border-top-color: #32BCAD;
}

.pix-qrcode-loading p {
    color: #666;
    font-size: 0.9rem;
}

#pix-qrcode-image {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.pix-copy-paste {
    margin-bottom: 20px;
}

.pix-copy-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: center;
}

.pix-copy-container {
    display: flex;
    gap: 10px;
}

#pix-copy-input {
    flex: 1;
    padding: 12px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-copy-pix {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #32BCAD;
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-display);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-copy-pix:hover {
    background: #28a99c;
    box-shadow: 0 0 15px rgba(50, 188, 173, 0.4);
}

.pix-copy-success {
    text-align: center;
    color: #4ade80;
    font-size: 0.9rem;
    margin-top: 10px;
    animation: fadeIn 0.3s ease;
}

.pix-status {
    text-align: center;
    padding: 15px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.pix-status-waiting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pulse-circle {
    width: 12px;
    height: 12px;
    background: #fbbf24;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.pix-status-waiting p {
    color: #fbbf24;
    font-size: 0.95rem;
}

.pix-instructions {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 15px;
}

.pix-instructions p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
    padding-left: 5px;
}

.pix-instructions p:last-child {
    margin-bottom: 0;
}

/* Modal de Sucesso */
.pix-success-content {
    padding: 0;
    max-width: 450px;
    text-align: center;
}

.pix-success-header {
    background: linear-gradient(135deg, #0f1a0f 0%, var(--bg-card) 100%);
    padding: 30px;
    border-bottom: 1px solid rgba(74, 222, 128, 0.3);
}

/* Checkmark animado */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4ade80;
}

.check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.icon-line {
    height: 5px;
    background-color: #4ade80;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(74, 222, 128, 0.5);
}

.icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: var(--bg-card);
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 46px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.pix-success-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #4ade80;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

.pix-success-body {
    padding: 25px;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.success-next-steps {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
}

.success-next-steps h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.success-next-steps ol {
    padding-left: 20px;
}

.success-next-steps li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.success-next-steps li:last-child {
    margin-bottom: 0;
}

.success-next-steps strong {
    color: var(--red-primary);
}

.success-warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.success-warning p {
    color: #fbbf24;
    font-size: 0.9rem;
}

.pix-success-footer {
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.btn-discord-success {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #5865F2;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-discord-success:hover {
    background: #4752c4;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

.contact-alternative {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 15px 0 10px;
}

.btn-instagram-success {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    text-decoration: none;
    box-sizing: border-box;
    color: white;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-instagram-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
    filter: brightness(1.1);
}

.btn-instagram-success .instagram-icon {
    width: 20px;
    height: 20px;
}

/* ========== PROTEÇÕES DE SEGURANÇA ========== */

/* Desabilitar seleção de texto sensível */
.pix-copy-input,
.modal-content {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Inputs podem ser selecionados */
input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Animações extras */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsividade para modais PIX */
@media (max-width: 480px) {

    .pix-form-header,
    .pix-qrcode-header,
    .pix-success-header {
        padding: 20px;
    }

    .pix-form-body,
    .pix-qrcode-body,
    .pix-success-body {
        padding: 20px;
    }

    .pix-amount-value {
        font-size: 1.6rem;
    }

    #pix-qrcode-image {
        max-width: 180px;
    }

    .pix-copy-container {
        flex-direction: column;
    }

    .btn-copy-pix {
        justify-content: center;
    }
}

/* ========== VÍDEO TUTORIAL SUCESSO ========== */

.success-video-container {
    margin-bottom: 20px;
}

.success-video-container h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
}

.video-wrapper {
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper video {
    width: 100%;
    max-height: 250px;
    display: block;
}

@media (max-width: 480px) {
    .video-wrapper video {
        max-height: 180px;
    }
}