/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Social Turbo Purple Theme */
    --purple-primary: #8B5CF6;
    --purple-dark: #7C3AED;
    --purple-light: #A78BFA;
    --purple-gradient: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
    --purple-glow: rgba(139, 92, 246, 0.3);
    
    /* Accent Colors */
    --ig-purple: #8B5CF6;
    --ig-pink: #EC4899;
    --ig-orange: #F59E0B;
    --ig-yellow: #FBBF24;
    
    /* Primary Colors */
    --primary-color: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --primary-gradient: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
    --instagram-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F59E0B 100%);
    
    /* UI Colors */
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    
    /* Background */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-dark: rgba(255, 255, 255, 0.9);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.5);
    --shadow-purple: 0 10px 40px rgba(139, 92, 246, 0.3);
    
    /* Border */
    --border-color: #e5e7eb;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--purple-primary);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
    opacity: 0.4;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--purple-light);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
    opacity: 0.35;
}

.circle-3 {
    width: 350px;
    height: 350px;
    background: var(--ig-pink);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    background: var(--purple-gradient);
    color: white;
    padding: 50px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-purple);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50 L60 40 L70 50 L60 60 Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.header .container {
    position: relative;
    z-index: 1;
}

.header-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.headline {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.8;
}

.subheadline i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.9);
}

/* Main */
.main {
    padding: 0 0 40px;
    position: relative;
    z-index: 1;
}

.section {
    margin-bottom: 24px;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glass Card Effect */
.glass-card {
    background: var(--bg-glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.card-header {
    text-align: center;
    margin-bottom: 28px;
}

.card-icon {
    font-size: 36px;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--purple-gradient);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-md), var(--shadow-purple);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 4px;
}

/* Input Group */
.input-wrapper {
    margin-bottom: 16px;
}

.input-group {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.input-group:focus-within {
    border-color: var(--purple-primary);
    box-shadow: var(--shadow-md), 0 0 0 4px var(--purple-glow);
    transform: translateY(-2px);
}

.instagram-input {
    border-color: var(--purple-primary);
}

.instagram-input:focus-within {
    border-color: var(--purple-primary);
    box-shadow: var(--shadow-md), 0 0 0 4px var(--purple-glow);
}

.input-icon {
    padding: 14px 16px;
    background: var(--bg-light);
    color: var(--purple-primary);
    font-size: 18px;
    border-right: 1px solid var(--border-color);
}

.input-prefix {
    padding: 14px 12px;
    background: var(--bg-light);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 16px;
    border-right: 1px solid var(--border-color);
}

.input-suffix {
    padding: 14px 12px;
    background: var(--bg-light);
    color: var(--text-secondary);
    font-size: 14px;
    border-left: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 16px;
    outline: none;
    background: white;
    color: var(--text-primary);
}

.input::placeholder {
    color: var(--text-light);
}

/* Buttons */
.btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--purple-gradient);
    color: white;
    box-shadow: var(--shadow-lg), var(--shadow-purple);
    font-weight: 700;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-purple);
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 50%, #7C3AED 100%);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-search {
    margin-top: 8px;
    font-size: 17px;
    padding: 18px;
}

.btn-large {
    padding: 18px 24px;
    font-size: 18px;
    margin-top: 24px;
    font-weight: 700;
}

.btn-continue {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-continue:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn i {
    font-size: 18px;
}

/* Loading */
.loading {
    text-align: center;
    padding: 40px 20px;
}

.spinner-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-light);
    border-top-color: var(--ig-pink);
    border-right-color: var(--ig-purple);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    transform: translate(-50%, -50%);
}

.spinner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--ig-orange);
    border-radius: 50%;
    animation: spin 1.2s linear infinite reverse;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.loading p {
    color: var(--text-secondary);
    font-size: 15px;
}

.loading i {
    margin-right: 8px;
    color: var(--purple-primary);
}

/* Error */
.error-card {
    background: #fef2f2;
    border: 2px solid var(--error-color);
    color: var(--error-color);
    padding: 14px 18px;
    border-radius: 12px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.error-card i {
    font-size: 20px;
}

/* Profile Card */
.profile-card {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
    animation: slideUp 0.5s ease-out;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.profile-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 90px;
    height: 90px;
}

.profile-image {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    background: var(--bg-light);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.profile-image-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Garantir que placeholder seja escondido quando imagem carregar */
.profile-image-wrapper:has(.profile-image[src]:not([src=""])) .profile-image-placeholder {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Forçar imagem a aparecer quando tiver src */
.profile-image[src]:not([src=""]) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.profile-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 36px;
    height: 36px;
    background: var(--purple-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    border: 3px solid white;
    box-shadow: var(--shadow-md), var(--shadow-purple);
    z-index: 10;
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-username {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 500;
}

.profile-stats {
    display: flex;
    gap: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-item i {
    font-size: 20px;
    color: var(--purple-primary);
}

.followers-count {
    font-size: 22px;
    font-weight: 700;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.followers-label {
    font-size: 13px;
    color: var(--text-secondary);
    display: block;
    margin-top: 2px;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

@media (min-width: 640px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.package-option {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 16px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--purple-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.package-option:hover {
    border-color: var(--purple-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-purple);
}

.package-option:hover::before {
    transform: scaleX(1);
}

.package-option.selected,
.package-option.featured {
    border-color: var(--purple-primary);
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    box-shadow: var(--shadow-purple);
    border-width: 3px;
}

.package-option.selected::before,
.package-option.featured::before {
    transform: scaleX(1);
}

.package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-badge.popular {
    background: var(--warning-color);
    color: white;
}

.package-badge.best {
    background: var(--success-color);
    color: white;
}

.package-badge.premium {
    background: var(--purple-gradient);
    color: white;
    box-shadow: 0 2px 10px var(--purple-glow);
}

.package-emoji {
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 1;
}

.package-amount {
    font-size: 22px;
    font-weight: 800;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1.2;
}

.package-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

.package-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.package-price .currency {
    font-size: 14px;
    color: var(--text-secondary);
}

.package-price .value {
    font-size: 24px;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.package-savings {
    font-size: 11px;
    color: var(--success-color);
    margin-top: 8px;
    font-weight: 600;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 28px 0;
    color: var(--text-light);
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider span {
    padding: 0 16px;
    font-weight: 500;
}

/* Custom Amount */
.custom-amount {
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
    margin-top: 24px;
}

.custom-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.custom-header i {
    font-size: 18px;
    color: var(--purple-primary);
}

.custom-label {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
}

.price-preview {
    margin-top: 16px;
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-radius: 12px;
    border: 2px solid var(--purple-light);
}

.price-preview i {
    color: var(--purple-primary);
    font-size: 18px;
}

.final-price {
    font-size: 28px;
    font-weight: 800;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Guarantees */
.guarantees {
    display: flex;
    justify-content: space-around;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 16px;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    flex: 1;
    min-width: 80px;
}

.guarantee-item i {
    font-size: 24px;
    color: var(--success-color);
    margin-bottom: 4px;
}

/* Footer */
.footer {
    background: white;
    padding: 24px 20px;
    text-align: center;
    border-top: 2px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.footer p {
    margin-bottom: 12px;
}

.footer i {
    color: var(--success-color);
    margin-right: 6px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.footer-icons i {
    font-size: 24px;
    color: var(--text-light);
    transition: all var(--transition-base);
}

.footer-icons i:hover {
    color: var(--purple-primary);
    transform: scale(1.2);
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .headline {
        font-size: 26px;
    }
    
    .subheadline {
        font-size: 14px;
    }
    
    .glass-card {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .card-icon {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    
    .package-option {
        padding: 16px 12px;
    }
    
    .package-amount {
        font-size: 18px;
    }
    
    .package-price .value {
        font-size: 20px;
    }
    
    .package-option {
        padding: 20px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-stats {
        justify-content: center;
        width: 100%;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .btn-large {
        font-size: 16px;
        padding: 16px 20px;
    }
    
    .guarantees {
        flex-direction: column;
        gap: 12px;
    }
    
    .guarantee-item {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 40px 16px 30px;
    }
    
    .headline {
        font-size: 24px;
    }
    
    .glass-card {
        padding: 20px 16px;
    }
}

/* Payment Page Styles (mantido do original) */
.payment-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--bg-light);
}

.payment-card {
    background: var(--bg-glass-dark);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    width: 100%;
}

.payment-header {
    text-align: center;
    margin-bottom: 32px;
}

.payment-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.payment-subtitle {
    color: var(--text-secondary);
}

.order-info {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.order-row:last-child {
    margin-bottom: 0;
}

.order-label {
    color: var(--text-secondary);
}

.order-value {
    font-weight: 600;
}

.order-total {
    border-top: 2px solid var(--border-color);
    padding-top: 12px;
    margin-top: 12px;
}

.order-total .order-label {
    font-size: 18px;
    font-weight: 700;
}

.order-total .order-value {
    font-size: 24px;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qr-code-container {
    text-align: center;
    margin: 32px 0;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.qr-code {
    width: 256px;
    height: 256px;
    margin: 0 auto 16px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pix-code {
    background: var(--bg-white);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    word-break: break-all;
    font-family: monospace;
    font-size: 12px;
    color: var(--text-primary);
}

.copy-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 8px;
    transition: all var(--transition-base);
}

.copy-btn:hover {
    background: var(--border-color);
}

.copy-btn.copied {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.confirmation-message {
    background: #f0fdf4;
    border: 2px solid var(--success-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: 24px;
}

.confirmation-message h3 {
    color: var(--success-color);
    margin-bottom: 12px;
    font-size: 20px;
}

.confirmation-message p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all var(--transition-base);
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-1px);
}

/* Countdown Timer - Escassez */
.countdown-container {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 20px;
    margin: 24px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
    }
}

.countdown-container::before {
    content: '⚡';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 60px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.countdown-title {
    font-size: 18px;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown-title i {
    color: #f59e0b;
    animation: flash 1s ease-in-out infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: white;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 70px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.countdown-value {
    font-size: 28px;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 11px;
    color: #92400e;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.countdown-subtitle {
    font-size: 14px;
    color: #92400e;
    font-weight: 600;
    margin-top: 12px;
}

.countdown-subtitle strong {
    color: #dc2626;
    font-size: 16px;
}

/* Social Turbo Branding */
.social-turbo-logo {
    font-size: 32px;
    font-weight: 900;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.header-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 8px;
    font-weight: 500;
}

/* Urgência Banner */
.urgency-banner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    animation: slide-down 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Modal de Upsell - Selo Verificado */
.upsell-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.upsell-modal.show {
    opacity: 1;
    visibility: visible;
}

.upsell-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.upsell-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.upsell-modal.show .upsell-modal-content {
    transform: scale(1) translateY(0);
}

.upsell-header {
    background: var(--purple-gradient);
    color: white;
    padding: 32px 24px;
    text-align: center;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

.upsell-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.upsell-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    margin: 0 auto 16px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.upsell-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.upsell-badge-promo {
    background: #f59e0b;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 12px;
    display: inline-block;
    animation: flash 1s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.upsell-body {
    padding: 32px 24px;
}

.upsell-features {
    margin-bottom: 32px;
}

.upsell-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-primary);
}

.upsell-feature i {
    color: var(--purple-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.upsell-price {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-radius: 16px;
    border: 2px solid var(--purple-light);
    margin-bottom: 24px;
}

.upsell-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 12px 0;
}

.upsell-currency {
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 600;
}

.upsell-value {
    font-size: 48px;
    font-weight: 900;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.upsell-discount {
    color: #dc2626;
    font-weight: 700;
    font-size: 18px;
    margin-top: 8px;
}

.upsell-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 24px 24px;
}

.upsell-btn {
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.upsell-btn-accept {
    background: var(--purple-gradient);
    color: white;
    box-shadow: 0 8px 20px var(--purple-glow);
}

.upsell-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--purple-glow);
}

.upsell-btn-accept:active {
    transform: translateY(0);
}

.upsell-btn-cancel {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
}

.upsell-btn-cancel:hover {
    background: var(--bg-light);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

@media (max-width: 640px) {
    .upsell-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .upsell-header {
        padding: 24px 20px;
    }
    
    .upsell-title {
        font-size: 24px;
    }
    
    .upsell-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .upsell-body {
        padding: 24px 20px;
    }
    
    .upsell-value {
        font-size: 36px;
    }
    
    .upsell-actions {
        padding: 0 20px 20px;
    }
}
