﻿.wallet-page {
    min-height: 100vh;
    background: #2E3239;
    color: white;
    padding: 40px 18px 70px;
}

.wallet-container {
    max-width: 920px;
    margin: 0 auto;
}

.wallet-header {
    margin-bottom: 28px;
}

.wallet-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5F7ADB;
    text-decoration: none;
    font-weight: 800;
    margin-bottom: 18px;
}

.wallet-header h1 {
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 900;
    margin-bottom: 8px;
}

.wallet-header p {
    color: #cbd5e1;
}

.wallet-balance-card {
    background: linear-gradient(135deg, #5F7ADB, #7b91ed);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 32px;
    box-shadow: 0 20px 45px rgba(95,122,219,.3);
}

    .wallet-balance-card span {
        display: block;
        color: #eef2ff;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .wallet-balance-card strong {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: clamp(32px, 6vw, 52px);
        font-weight: 900;
        line-height: 1;
        margin-bottom: 12px;
    }

    .wallet-balance-card small {
        color: #eef2ff;
    }

.wallet-container h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 18px;
}

.wallet-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.wallet-package-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 24px;
    color: white;
    text-align: center;
}

    .wallet-package-card.destaque {
        border-color: #5F7ADB;
        box-shadow: 0 0 0 2px rgba(95,122,219,.2);
    }

    .wallet-package-card i {
        font-size: 42px;
        color: #5F7ADB;
        margin-bottom: 12px;
    }

    .wallet-package-card strong {
        display: block;
        font-size: 24px;
        font-weight: 900;
        margin-bottom: 5px;
    }

    .wallet-package-card span {
        display: block;
        color: #cbd5e1;
        font-size: 13px;
        margin-bottom: 18px;
    }

    .wallet-package-card button {
        width: 100%;
        border: none;
        background: #5F7ADB;
        color: white;
        border-radius: 12px;
        padding: 12px;
        font-weight: 900;
    }

.wallet-info {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 18px;
    margin-top: 28px;
}

    .wallet-info h3 {
        font-size: 18px;
        font-weight: 900;
    }

    .wallet-info p {
        color: #cbd5e1;
        margin-bottom: 0;
    }

@media (max-width: 768px) {
    .wallet-packages {
        grid-template-columns: 1fr;
    }

    .wallet-balance-card {
        padding: 22px;
    }
}
