/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 50%, #f3e8ff 100%);
    min-height: 100vh;
    font-size: 16px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
}

.container-center {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .container-center {
        padding: 2rem 1rem;
    }
}

/* Etapas */
.etapa {
    display: none;
    min-height: 100vh;
}

.etapa.active {
    display: block;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.logo-icon .pound {
    color: white;
    font-size: 1.75rem;
    font-weight: bold;
}

.logo-icon .zap {
    color: #fbbf24;
    font-size: 1.75rem;
    margin-left: -0.25rem;
}

.logo-title {
    font-size: 1.75rem;
    font-weight: bold;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .header {
        margin-bottom: 2rem;
    }
}

.online-counter {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.online-status, .evaluating-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.divider {
    width: 1px;
    height: 1.25rem;
    background: rgba(255, 255, 255, 0.3);
}

/* Cards */
.card {
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
    .card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h2 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1f2937;
    margin: 1rem 0;
    line-height: 1.3;
}

.card-header p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.5;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.4;
}

/* Ícones Circulares */
.icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .icon-circle {
        width: 5rem;
        height: 5rem;
        font-size: 2.5rem;
    }
}

.icon-circle.green {
    background: #dcfce7;
    color: #16a34a;
}

.icon-circle.blue {
    background: #dbeafe;
    color: #2563eb;
}

.icon-circle.purple {
    background: #f3e8ff;
    color: #7c3aed;
}

.icon-circle.orange {
    background: #fed7aa;
    color: #ea580c;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .main-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Steps */
.steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-number.blue {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.step-number.purple {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.step-number.green {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.step-content h3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Botões */
.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: bold;
    padding: 1.25rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-primary:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary.orange {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.25);
}

.btn-primary.orange:hover {
    box-shadow: 0 12px 30px rgba(234, 88, 12, 0.35);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* Stats */
.stats {
    margin: 2.5rem 0 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.bonus-banner {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: #78350f;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    animation: pulse 3s infinite;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    gap: 1.5rem;
}

.info-box {
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-box.blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.info-box.green {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.info-box.purple {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.info-box.orange {
    background: #fff7ed;
    border-color: #fed7aa;
}

.info-box h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.info-box p, .info-box li {
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Social Proof */
.social-proof {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .social-proof {
        margin-top: 3rem;
    }
}

.live-dot {
    width: 0.875rem;
    height: 0.875rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-badge {
    font-size: 0.8rem;
    background: #10b981;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pagamentos-list {
    display: grid;
    gap: 1rem;
}

.pagamento-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.pagamento-item:hover {
    background: #dcfce7;
    transform: translateX(4px);
}

.pagamento-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

.pagamento-info {
    text-align: right;
}

.pagamento-valor {
    font-weight: bold;
    font-size: 1rem;
    color: #16a34a;
}

.pagamento-tempo {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Depoimentos */
.depoimentos {
    display: grid;
    gap: 1.5rem;
}

.depoimento {
    padding: 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.depoimento:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.depoimento-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.depoimento-header strong {
    font-size: 1rem;
    font-weight: 600;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.tempo {
    font-size: 0.8rem;
    color: #6b7280;
}

.depoimento p {
    font-size: 0.95rem;
    color: #374151;
    font-style: italic;
    line-height: 1.5;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
}

.stats-card {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.stats-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.stats-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: bold;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Trust Badges */
.trust-badges h3 {
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .badges-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.badge:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-icon.green {
    background: #dcfce7;
}

.badge-icon.blue {
    background: #dbeafe;
}

.badge-icon.purple {
    background: #f3e8ff;
}

.badge-icon.orange {
    background: #fed7aa;
}

.badge-text strong {
    display: block;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
}

.badge-text small {
    color: #6b7280;
    font-size: 0.85rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    border: 1px solid #e5e7eb;
    position: relative;
}

@media (min-width: 768px) {
    .modal-content {
        padding: 2rem;
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #dc2626;
    background: #fef2f2;
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1f2937;
    margin: 1rem 0;
    line-height: 1.3;
}

.modal-header p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Form */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: #374151;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: white;
}

/* Dados Confirmados */
.dados-confirmados {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.dados-confirmados p {
    font-size: 0.95rem;
    color: #16a34a;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.dados-confirmados strong {
    color: #15803d;
    font-weight: 600;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    height: 0.75rem;
    background: #e5e7eb;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 0.375rem;
    transition: width 0.8s ease;
    width: 0%;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Etapa Avaliação */
#etapa-avaliacao .header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#etapa-avaliacao .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

#etapa-avaliacao .progress-bar {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

#etapa-avaliacao .container-center {
    padding: 0.5rem;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: flex-start;
}

#etapa-avaliacao .card {
    margin: 0;
    padding: 1.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 1.25rem;
}

/* Avaliação */
.saldo-acumulado {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.saldo-acumulado p {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.saldo-valor {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.produto-avaliacao {
    text-align: center;
    width: 100%;
}

.produto-img {
    width: 100%;
    max-width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: block;
}

.produto-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.produto-avaliacao h2 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    text-align: center;
}

@media (min-width: 768px) {
    .produto-avaliacao h2 {
        font-size: 1.6rem;
    }
    
    .produto-img {
        max-width: 350px;
        height: 250px;
    }
    
    #etapa-avaliacao .container-center {
        padding: 1rem;
    }
    
    #etapa-avaliacao .card {
        padding: 2rem;
    }
}

.valor-libras {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .valor-libras {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }
}
.valor-libras p {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.valor {
    font-size: 2.2rem;
    font-weight: bold;
    color: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

@media (min-width: 768px) {
    .valor {
        font-size: 2.5rem;
    }
}

.pergunta {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 500;
}

@media (min-width: 768px) {
    .pergunta {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
}
.dica {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 0.75rem;
    padding: 0.875rem;
    font-size: 0.95rem;
    color: #78350f;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

@media (min-width: 768px) {
    .dica {
        padding: 1rem;
        margin-bottom: 2rem;
    }
}
.botoes-avaliacao {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .botoes-avaliacao {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .botoes-avaliacao {
        gap: 2rem;
        margin-top: 2rem;
    }
}

.btn-rejeitar {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-weight: 700;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .btn-rejeitar {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
}
.btn-rejeitar:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.35);
}

.btn-aprovar {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 700;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .btn-aprovar {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
}
.btn-aprovar:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff, #f3e8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.loading-screen.hidden {
    display: none;
}

.loading-content {
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 90%;
}

.loading-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    animation: pulse 2s infinite;
}

.loading-content > * {
    position: relative;
    z-index: 1;
}

.loading-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: bounce 1s infinite;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.loading-icon span {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    animation: pulse 1s infinite;
}

.ganho-valor {
    margin-bottom: 1.5rem;
}

.ganho-valor div:first-child {
    font-size: 2.5rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 0.75rem;
    animation: pulse 1s infinite;
}

.ganho-valor div:last-child {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 500;
}

.loading-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.loading-content p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.loading-bar {
    width: 100%;
    height: 1rem;
    background: #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 1.5rem 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #10b981, #2563eb, #7c3aed);
    border-radius: 0.5rem;
    animation: pulse 1s infinite;
    position: relative;
}

.loading-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.loading-text {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Conversão */
.conversao-info {
    margin: 2.5rem 0;
}

.conversao-valores {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.valor-origem,
.valor-destino {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.valor-origem {
    color: #2563eb;
}

.valor-destino {
    color: #10b981;
}

.seta {
    color: #6b7280;
    font-size: 1.5rem;
    font-weight: bold;
}

.progress-conversao {
    width: 100%;
    height: 1rem;
    background: #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-conversao {
    text-align: center;
    font-size: 1rem;
    color: #6b7280;
}

.info-conversao p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Resumo */
.resumo-avaliacao {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.resumo-avaliacao h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.resumo-item span:last-child {
    font-weight: 600;
    color: #1f2937;
}

.valor-saque {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #16a34a;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.15);
}

.valor-saque p {
    color: #16a34a;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.valor-saque .valor {
    font-size: 3rem;
    font-weight: bold;
    color: #15803d;
    text-shadow: 0 2px 4px rgba(21, 128, 61, 0.2);
}

.dados-beneficiario {
    background: #f0f9ff;
    border: 2px solid #2563eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.dados-beneficiario p {
    font-size: 1rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-weight: 600;
}

/* Taxa */
.taxa-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.taxa-valor {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1e40af;
}

.taxa-detalhes {
    font-size: 1rem;
}

.taxa-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.taxa-item.total {
    font-weight: 700;
    font-size: 1.1rem;
    padding-top: 0.75rem;
    color: #1f2937;
}

.taxa-detalhes hr {
    border: none;
    border-top: 1px solid #bfdbfe;
    margin: 0.75rem 0;
}

/* Urgency */
.urgency-banner {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #dc2626;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    color: #dc2626;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    animation: pulse 3s infinite;
}

.urgency-spots {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.urgency-spots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(234, 88, 12, 0.2));
    animation: pulse 2s infinite;
}

.urgency-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: bold;
    font-size: 1.25rem;
}

.urgency-spots p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.security-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 1.5rem;
    line-height: 1.4;
}

/* Utilities */
.hidden {
    display: none !important;
}

.loading {
    animation: spin 1s linear infinite;
}

.loading-spin {
    animation: spin 2s linear infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Alerts */
.alert {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 3000;
    max-width: 400px;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease;
}

.alert.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

.alert.error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
}

.alert.warning {
    background: #fefbf2;
    border: 1px solid #fde68a;
    color: #d97706;
}

.alert-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.alert-message {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.alert-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

/* Notifications */
.notification {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2500;
    background: white;
    border: 1px solid #bbf7d0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    max-width: 400px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.5s ease;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notification-icon {
    width: 3rem;
    height: 3rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    flex-shrink: 0;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.notification-details {
    flex: 1;
    min-width: 0;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.notification-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 1rem;
}

.notification-status {
    width: 0.75rem;
    height: 0.75rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.notification-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.notification-message {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
}

.notification-value {
    font-weight: bold;
    font-size: 1.1rem;
    color: #16a34a;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 639px) {
    .container {
        padding: 0.75rem;
    }
    
    .container-center {
        padding: 0.75rem;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .modal-content {
        padding: 1.25rem;
        margin: 0.75rem;
    }
    
    .conversao-valores {
        flex-direction: column;
        gap: 1rem;
    }
    
    .seta {
        transform: rotate(90deg);
    }
    
    .produto-img {
        max-width: 280px;
        height: 12rem;
    }
    
    .alert,
    .notification {
        left: 0.75rem;
        right: 0.75rem;
        max-width: none;
    }
    
    .logo-title {
        font-size: 1.5rem;
    }
    
    .card-header h2 {
        font-size: 1.5rem;
    }
    
    .valor {
        font-size: 2rem;
    }
    
    .produto-avaliacao h2 {
        font-size: 1.75rem;
    }
    
    .valor-saque .valor {
        font-size: 2.5rem;
    }
}