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

:root {
    /* Cores neutras modernas */
    --primary: #2C3E50;
    --primary-dark: #1A252F;
    --primary-light: #34495E;
    --accent: #E67E22;
    --accent-light: #F39C12;
    --background: #F8F9FA;
    --surface: #FFFFFF;
    --surface-alt: #F5F6FA;
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --text-light: #BDC3C7;
    --border: #E1E8ED;
    --border-light: #F0F3F5;
    --success: #27AE60;
    --warning: #F39C12;
    --error: #E74C3C;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 32px rgba(0,0,0,0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #F8F9FA 0%, #E9ECEF 100%);
    color: var(--text-primary);
    padding-bottom: 80px;
    overflow-x: hidden;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container principal para desktop */
@media (min-width: 481px) {
    body {
        box-shadow: var(--shadow-xl);
        min-height: 100vh;
        background: var(--background);
    }
}

/* Ícones SVG */
.icon-soccer,
.icon-live,
.icon-ticket,
.icon-list,
.icon-home,
.icon-search,
.icon-target,
.icon-edit,
.icon-money,
.icon-close,
.icon-logout,
.crown-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.icon-soccer svg,
.icon-live svg,
.icon-ticket svg,
.icon-list svg,
.icon-home svg,
.icon-search svg,
.icon-target svg,
.icon-edit svg,
.icon-money svg,
.icon-close svg,
.icon-logout svg,
.crown-icon svg {
    width: 100%;
    height: 100%;
}

.icon-inline {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    vertical-align: middle;
}

.tab-icon,
.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.tab-icon svg,
.nav-icon svg {
    width: 100%;
    height: 100%;
}

.promo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    opacity: 0.8;
}

.promo-icon svg {
    width: 100%;
    height: 100%;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--surface);
    padding: 18px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
    max-width: 480px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

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

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

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.header-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-saldo {
    color: var(--surface);
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-saldo .favicon-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    flex-shrink: 0;
}

.header-saldo strong {
    font-weight: 700;
    color: #27AE60 !important;
    font-size: 16px;
}

.btn-logout-small {
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--surface);
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 32px;
    height: 32px;
}

.btn-logout-small:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

.btn-logout-small svg {
    width: 16px;
    height: 16px;
}

.btn-login {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--surface);
    padding: 10px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-login:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-1px);
}

.btn-register {
    background: linear-gradient(135deg, #409909 0%, #3a8a08 100%);
    border: none;
    color: var(--surface);
    padding: 10px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: linear-gradient(135deg, #3a8a08 0%, #2f6f06 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* User Info */
.user-info {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--surface);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.user-welcome {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.user-welcome span:first-child {
    font-size: 14px;
    opacity: 0.9;
}

.saldo {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-light);
}

.btn-logout {
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--surface);
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

.icon-logout {
    width: 16px;
    height: 16px;
}

/* Navigation Tabs */
.nav-tabs {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    overflow-x: auto;
    padding: 12px 0;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.nav-tabs::-webkit-scrollbar {
    display: none;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    min-width: 75px;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
    background: transparent;
}

.tab-item:hover {
    color: rgba(255,255,255,0.9);
}

.tab-item.active {
    color: var(--surface);
    background: transparent;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 2px;
}

.tab-icon {
    color: currentColor;
}

.tab-icon svg {
    stroke: currentColor;
    fill: currentColor;
}

.tab-icon svg * {
    stroke: currentColor;
}

.tab-icon svg circle[fill],
.tab-icon svg rect[fill],
.tab-icon svg path[fill] {
    fill: currentColor;
}

.tab-item span {
    font-size: 12px;
    white-space: nowrap;
    font-weight: 600;
}

/* Main Content */
.main-content {
    padding: 20px;
}

/* Banner */
.banner-promo {
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

/* Section Header */
.section-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-header h2 {
    font-size: 22px;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content.active {
    display: block;
}

/* Jogos List */
.jogos-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jogo-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    max-width: 100%;
}

.jogo-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.jogo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.campeonato {
    font-size: 9px;
    color: var(--text-secondary);
    background: var(--surface-alt);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(244, 67, 54, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 2px 4px rgba(244, 67, 54, 0.3);
    }
    50% { 
        box-shadow: 0 2px 8px rgba(244, 67, 54, 0.6);
    }
}

.data-jogo {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

.jogo-times {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.time {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.time-escudo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
}

.time-badge {
    font-size: 8px;
    color: var(--text-secondary);
    background: var(--surface-alt);
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.vs {
    margin: 0 8px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    background: var(--surface-alt);
    border-radius: 8px;
}

.jogo-odds {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.odd-btn {
    flex: 1;
    padding: 10px 6px;
    border: 2px solid var(--border);
    background: var(--surface);
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.odd-btn:hover {
    border-color: var(--primary);
    background: var(--surface-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.odd-btn.selected {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: var(--primary);
    color: var(--surface);
    box-shadow: var(--shadow-sm);
}

.odd-label {
    font-size: 9px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.odd-btn.selected .odd-label {
    color: rgba(255,255,255,0.9);
}

.odd-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.odd-btn.selected .odd-value {
    color: var(--surface);
}

/* Promoções */
.promocoes-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promo-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.promo-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.promo-content {
    flex: 1;
}

.promo-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.promo-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.promo-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.promo-icon {
    color: var(--accent);
    margin-left: 20px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--surface);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--surface);
    color: var(--primary);
    border: 2px solid var(--border);
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--surface-alt);
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

@media (min-width: 481px) {
    .modal {
        left: 50%;
        transform: translateX(-50%);
        max-width: 480px;
    }
}

.modal-content {
    background-color: var(--surface);
    margin: 1% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 380px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
    max-height: 96vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-content > *:not(.close) {
    padding-left: 20px;
    padding-right: 20px;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: var(--text-secondary);
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-login .close {
    color: var(--text-secondary);
}

.close:hover {
    background: var(--surface-alt);
    color: var(--text-primary);
}

.modal-login .close:hover {
    background: var(--surface-alt);
    color: var(--text-primary);
}

.modal-content h2 {
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.input-icon svg {
    width: 20px;
    height: 20px;
}

.input-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--text-secondary);
    flex-shrink: 0;
    cursor: pointer;
}

.input-arrow svg {
    width: 16px;
    height: 16px;
}

.input-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--text-secondary);
    flex-shrink: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.input-toggle:hover {
    color: var(--text-primary);
}

.input-toggle svg {
    width: 20px;
    height: 20px;
}

.modal-content input {
    flex: 1;
    padding: 14px 0;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
}

.modal-content input::placeholder {
    color: var(--text-light);
}

.btn-full {
    width: 100%;
    margin-top: 8px;
}

/* Login Modal Styles */
.modal-login {
    padding: 16px 20px;
    background: var(--surface);
    color: var(--text-primary);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-login .close {
    color: var(--text-secondary);
    width: 20px;
    height: 20px;
    right: 12px;
    top: 12px;
}

.modal-login .close:hover {
    background: var(--surface-alt);
    color: var(--text-primary);
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.login-logo {
    height: 32px;
    width: auto;
    margin-bottom: 8px;
    object-fit: contain;
    filter: none;
}

.modal-login h2 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
    letter-spacing: -0.1px;
    text-transform: none;
    line-height: 1.4;
}

.form-field {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0;
}

.form-field:first-child .form-label {
    color: var(--success);
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: var(--surface);
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}

.form-field:first-child .form-input {
    border-color: var(--success);
}

.form-input:hover {
    border-color: var(--primary-light);
}

.form-input:focus {
    border-color: var(--success);
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.08);
    background: var(--surface);
}

.form-field:nth-child(n+2) .form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.08);
}

.form-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.modal-login form {
    padding-bottom: 24px;
    overflow-y: auto;
    flex: 1;
}

.btn-login-submit {
    width: 100%;
    padding: 12px;
    background: var(--success);
    color: var(--surface);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 4px;
    margin-bottom: 8px;
    box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
    letter-spacing: 0.2px;
}

.btn-login-submit:hover {
    background: #229954;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

.btn-login-back {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.btn-login-back:hover {
    background: var(--surface-alt);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.login-links {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.login-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.login-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Register Modal Styles */
.modal-register {
    padding: 0;
    background: var(--surface);
    color: var(--text-primary);
    max-height: 90vh;
    overflow-y: auto;
}

.register-header-new {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.btn-back-register {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 6px;
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 10;
}

.btn-back-register:hover {
    background: var(--surface-alt);
}

.register-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 8px;
}

.register-logo {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
    object-fit: contain;
}

.register-header-new h2 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.input-group-register {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    margin: 0 20px 12px 20px;
    transition: all 0.2s ease;
}

.input-group-register:focus-within {
    border-color: var(--success);
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.08);
}

.input-icon-register {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.input-icon-register svg {
    width: 20px;
    height: 20px;
}

.input-register {
    flex: 1;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: transparent;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
}

.input-register::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.input-arrow-register {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--text-secondary);
    flex-shrink: 0;
    cursor: pointer;
}

.input-arrow-register svg {
    width: 16px;
    height: 16px;
}

.input-toggle-register {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--text-secondary);
    flex-shrink: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.input-toggle-register:hover {
    color: var(--text-primary);
}

.input-toggle-register svg {
    width: 20px;
    height: 20px;
}

.btn-register-submit {
    width: calc(100% - 40px);
    margin: 8px 20px 20px 20px;
    padding: 13px;
    background: var(--success);
    color: var(--surface);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
    letter-spacing: 0.2px;
}

.btn-register-submit:hover {
    background: #229954;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

/* Aposta Modal */
.aposta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aposta-info {
    background: var(--surface-alt);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

.aposta-info p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
}

.aposta-info strong {
    color: var(--text-primary);
    font-weight: 700;
}

.valor-input {
    padding: 16px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    font-family: inherit;
}

.valor-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.ganho-preview {
    background: linear-gradient(135deg, var(--success) 0%, #2ECC71 100%);
    color: var(--surface);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
}

/* Apostas List */
.apostas-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 4px;
}

/* Design Moderno para Cards de Aposta */
.aposta-card-moderna {
    background: var(--surface);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.aposta-card-moderna:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.aposta-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.aposta-times-moderna {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.time-moderna {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.time-escudo-moderna {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 4px;
}

.time-nome-moderna {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vs-moderna {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 0 8px;
}

.aposta-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.status-pendente {
    background: linear-gradient(135deg, #F39C12 0%, #F1C40F 100%);
    color: white;
}

.status-ganhou {
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    color: white;
}

.status-perdeu {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    color: white;
}

.aposta-campeonato-moderna {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    padding: 4px 0;
}

.aposta-info-moderna {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.aposta-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.info-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

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

.tipo-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.odd-value-moderna {
    color: var(--primary);
    font-size: 18px;
}

.aposta-valores-moderna {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.valor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.valor-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.valor-amount {
    font-size: 18px;
    font-weight: 700;
    color: #27AE60 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.valor-amount *:not(.favicon-icon-small) {
    color: #27AE60 !important;
}

.valor-ganho .valor-amount {
    font-size: 20px;
    color: #27AE60 !important;
}

.valor-ganho .valor-amount *:not(.favicon-icon-small) {
    color: #27AE60 !important;
}

.favicon-icon-small {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    flex-shrink: 0;
}

.aposta-data-moderna {
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.aposta-item {
    background: var(--surface);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.aposta-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.aposta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.aposta-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aposta-status.pendente {
    background: linear-gradient(135deg, var(--warning) 0%, #F1C40F 100%);
    color: var(--surface);
}

.aposta-status.ganhou {
    background: linear-gradient(135deg, var(--success) 0%, #2ECC71 100%);
    color: var(--surface);
}

.aposta-status.perdeu {
    background: linear-gradient(135deg, var(--error) 0%, #C0392B 100%);
    color: var(--surface);
}

.aposta-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aposta-details p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.aposta-details strong {
    color: var(--text-primary);
    font-weight: 700;
}

.aposta-valor {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: var(--surface);
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    z-index: 100;
    border-top: 1px solid var(--border-light);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 60px;
}

.nav-item:hover {
    background: var(--surface-alt);
    color: var(--text-primary);
}

.nav-item.active {
    color: var(--primary);
    background: var(--surface-alt);
}

.nav-icon {
    color: currentColor;
}

.nav-item span:not(.nav-icon) {
    font-size: 11px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
    .banner-title {
        font-size: 24px;
    }
    
    .time-escudo {
        width: 24px;
        height: 24px;
    }
    
    .time {
        font-size: 12px;
    }
    
    .vs {
        margin: 0 4px;
        font-size: 9px;
        padding: 3px 6px;
    }
}

/* Loading */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state p {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Drawer de Aposta Lateral */
.aposta-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(4px);
}

.aposta-drawer-overlay.active {
    display: block;
}

.aposta-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100%;
    background: var(--surface);
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.aposta-drawer.active {
    right: 0;
}

.aposta-drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--surface);
}

.aposta-drawer-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--surface);
}

.aposta-drawer-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--surface);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.aposta-drawer-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.aposta-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.apostas-selecionadas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    max-height: calc(100vh - 400px);
    overflow-y: auto;
    flex-direction: column;
    gap: 12px;
}

/* Design Moderno para Itens de Aposta no Drawer */
.aposta-item-selecionada-moderna {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 16px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.aposta-item-selecionada-moderna:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.aposta-item-numero {
    position: absolute;
    top: -10px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.aposta-item-content {
    margin-top: 8px;
}

.aposta-item-header-moderna {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.aposta-times-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.time-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.time-escudo-mini {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8f9fa;
    padding: 2px;
}

.time-nome-mini {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vs-mini {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 0 4px;
}

.aposta-item-remove-moderna {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.aposta-item-remove-moderna:hover {
    background: #fcc;
    transform: scale(1.1);
}

.aposta-item-info-moderna {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.aposta-tipo-badge-mini {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aposta-odd-badge-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 6px 12px;
    border-radius: 20px;
    color: white;
}

.odd-label-mini {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.9;
}

.odd-value-mini {
    font-size: 14px;
    font-weight: 700;
}

.aposta-total {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 0;
    padding: 24px 20px;
    color: var(--surface);
    margin-top: auto;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.aposta-total .total-valor,
.aposta-total .total-ganho {
    color: #27AE60 !important;
}

.aposta-total .total-valor *:not(.favicon-icon),
.aposta-total .total-ganho *:not(.favicon-icon) {
    color: #27AE60 !important;
}

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

.total-info:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.total-info span:first-child {
    font-size: 14px;
    opacity: 0.9;
}

.total-valor {
    font-size: 18px;
    font-weight: 700;
    color: #27AE60 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.total-valor .favicon-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    flex-shrink: 0;
}

.total-ganho {
    font-size: 20px;
    font-weight: 800;
    color: #27AE60 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.total-ganho .favicon-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    flex-shrink: 0;
}

/* Garantir que todo o texto dentro dos valores seja verde */
.total-valor,
.total-ganho {
    color: #27AE60 !important;
}

.total-valor *:not(.favicon-icon),
.total-ganho *:not(.favicon-icon) {
    color: #27AE60 !important;
}

.total-ganho .favicon-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.aposta-form-drawer {
    padding: 20px;
    background: white;
    border-top: 1px solid var(--border-light);
}

.aposta-form-drawer .form-field {
    margin-bottom: 16px;
}

.aposta-form-drawer .form-input {
    font-size: 16px;
    padding: 14px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.aposta-form-drawer .form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.aposta-form-drawer .btn-primary {
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.aposta-form-drawer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Botão Flutuante para Abrir Drawer */
.aposta-drawer-toggle {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    color: var(--surface);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.aposta-drawer-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.aposta-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--error);
    color: var(--surface);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--surface);
}

@media (max-width: 480px) {
    .aposta-drawer {
        width: 100%;
        max-width: 100%;
    }
    
    .aposta-drawer-toggle {
        bottom: 90px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
}

/* Notificações */
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notification {
    font-size: 14px;
    font-weight: 500;
    max-width: 300px;
    word-wrap: break-word;
}

/* ============================================
   PÁGINA DE DEPÓSITO - DESIGN MODERNO
   ============================================ */

.depositar-wrapper {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
}

.depositar-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: fadeInUp 0.4s ease-out;
}

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

.depositar-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 32px 24px;
    text-align: center;
    color: white;
}

.depositar-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    padding: 12px;
}

.depositar-favicon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.depositar-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.depositar-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

.depositar-form {
    padding: 32px 24px;
}

.depositar-input-group {
    margin-bottom: 24px;
}

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

.depositar-label-text {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.2px;
}

.depositar-label-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.depositar-input-wrapper {
    position: relative;
}

.depositar-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    background: #f8f9fa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.depositar-input:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(44, 62, 80, 0.1);
    transform: translateY(-1px);
}

.depositar-input::placeholder {
    color: #bdc3c7;
    font-weight: 400;
}

.depositar-button {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
    letter-spacing: 0.3px;
}

.depositar-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.depositar-button:active {
    transform: translateY(0);
}

.depositar-button-icon {
    width: 20px;
    height: 20px;
}

.depositar-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.depositar-message p {
    margin: 0;
}

/* QR Code Container */
.depositar-qrcode-container {
    margin-top: 24px;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.depositar-qrcode-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.depositar-qrcode-header {
    text-align: center;
    margin-bottom: 24px;
}

.depositar-qrcode-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.depositar-qrcode-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    letter-spacing: -0.3px;
}

.depositar-qrcode-image-wrapper {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
}

.depositar-qrcode-image {
    max-width: 100%;
    width: 280px;
    height: auto;
    display: block;
    border-radius: 8px;
}

.depositar-pixkey-section {
    margin-bottom: 20px;
}

.depositar-pixkey-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.depositar-pixkey-wrapper {
    display: flex;
    gap: 8px;
    background: white;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.depositar-pixkey-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    font-size: 12px;
    color: #2c3e50;
    outline: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.depositar-pixkey-button {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.depositar-pixkey-button:hover {
    background: var(--primary-light);
    transform: scale(1.02);
}

.depositar-pixkey-button:active {
    transform: scale(0.98);
}

.depositar-pixkey-icon {
    width: 16px;
    height: 16px;
}

.depositar-info {
    text-align: center;
    margin-top: 20px;
}

.depositar-info-text {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.depositar-status {
    margin-top: 20px;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsivo */
@media (max-width: 480px) {
    .depositar-wrapper {
        padding: 16px;
    }
    
    .depositar-header {
        padding: 24px 20px;
    }
    
    .depositar-form {
        padding: 24px 20px;
    }
    
    .depositar-qrcode-card {
        padding: 24px 20px;
    }
    
    .depositar-qrcode-image {
        width: 100%;
        max-width: 260px;
    }
}
