

.wallet-showcase {
    padding: 80px 20px 40px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; 
}

.wallet-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}


.wallet-text-box {
    max-width: 550px;
}

.wallet-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.1;
    margin-bottom: 24px;
}

.wallet-title .highlight {
    color: var(--color-primary); 
}

.wallet-desc {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-wallet-action {
    display: inline-block;
    background-color: #D6A66F; 
    color: #10130F;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(214, 166, 111, 0.2);
}

.btn-wallet-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(214, 166, 111, 0.3);
}


.wallet-graphic-box {
    position: relative;
    width: 100%;
}

.mock-dashboard {
    background-color: #171B16;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mock-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mock-card {
    background-color: #1E241C;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.mock-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}


.donut-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.css-donut {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 14px solid #2B352A;
    border-top-color: var(--color-primary); 
    border-right-color: #D6A66F; 
    border-left-color: #4A5D44;
    transform: rotate(45deg);
}


.floating-badge {
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #10130F;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 10;
    border: 3px solid var(--color-surface);
}

.badge-1 { top: -30px; right: 20px; animation: float 5s ease-in-out infinite; }
.badge-2 { bottom: -20px; left: 40px; animation: float 4s ease-in-out infinite 1s; }
.badge-3 { top: 50%; left: -30px; animation: float 6s ease-in-out infinite 2s; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}


.wallet-mechanics-section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.mechanic-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
}

.mechanic-row.reverse {
    flex-direction: row-reverse;
}

.mechanic-text {
    flex: 1;
    max-width: 450px;
}

.mechanic-text h3 {
    font-size: 2.2rem;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.mechanic-text p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.mechanic-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}


.m-phone-mockup {
    width: 260px;
    height: 520px;
    background-color: var(--color-surface);
    border: 4px solid #4A5D44; 
    border-radius: 45px;
    position: relative;
    box-shadow: 
        inset 0 0 0 10px #10130F, 
        0 25px 50px -12px rgba(0,0,0,0.5); 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}


.m-phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 26px;
    background: #050505;
    border-radius: 13px;
    z-index: 20;
    box-shadow: inset 0 -1px 2px rgba(255,255,255,0.05);
}

.m-phone-notch::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #111;
    border: 1px solid #222;
}


.m-phone-home-bar {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.m-qr-container {
    width: 170px;
    height: 170px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.m-qr-container i {
    font-size: 8.5rem;
    color: #10130F;
}


.m-card-mockup {
    width: 340px;
    height: 215px;
    background: linear-gradient(135deg, #2B352A 0%, #10130F 100%);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6);
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: rotateZ(-8deg) rotateX(15deg) rotateY(-10deg);
    animation: floatCard 6s infinite ease-in-out;
    transform-style: preserve-3d;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotateZ(-8deg) rotateX(15deg) rotateY(-10deg); }
    50% { transform: translateY(-15px) rotateZ(-6deg) rotateX(18deg) rotateY(-8deg); }
}

.m-card-chip {
    width: 48px;
    height: 38px;
    background: linear-gradient(135deg, #e3c49a, #D6A66F);
    border-radius: 6px;
    box-shadow: inset 0 0 2px rgba(0,0,0,0.5);
    opacity: 0.9;
}

.m-card-nfc {
    position: absolute;
    top: 30px;
    right: 31px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    transform: rotate(90deg);
}

.m-card-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 1px;
}


.wallet-benefits-section {
    padding: 40px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    background-color: var(--color-surface);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.b-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: rgba(143, 164, 134, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.b-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.benefit-card p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}


@media (max-width: 992px) {
    .wallet-container {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    
    .wallet-text-box {
        text-align: center;
        margin: 0 auto;
    }
    
    .wallet-title {
        font-size: 3.2rem;
    }

    .wallet-graphic-box {
        max-width: 500px;
        margin: 0 auto;
    }

    .mechanic-row, .mechanic-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        margin-bottom: 80px;
    }

    .mechanic-text h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .wallet-title {
        font-size: 2.2rem;
    }
    
    .mock-row {
        grid-template-columns: 1fr; 
    }

    .floating-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .badge-1 { top: -15px; right: 0; }
    .badge-2 { bottom: -15px; left: 10px; }
    .badge-3 { display: none; } 
    
    .m-phone-mockup {
        width: 220px;
        height: 440px;
        padding-top: 50px;
    }
    .m-qr-container {
        width: 140px;
        height: 140px;
    }
    .m-qr-container i {
        font-size: 7rem;
    }

    .m-card-mockup {
        width: 290px;
        height: 180px;
    }
}