:root {
    --primary: #0A3D91;
    --primary-light: #1a56b9;
    --secondary: #FFD84D;
    --secondary-dark: #e6c13e;
    --white: #ffffff;
    --bg-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --card-shadow: 0 10px 20px rgba(0,0,0,0.08);
    --border-radius: 24px;
}

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

html {
    touch-action: manipulation;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f7fe;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
    touch-action: manipulation;
}

/* Background Decoration */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #f0f4ff;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10c-8 0-14 6-14 14 0 7 4 13 10 16-6 3-10 9-10 16 0 8 6 14 14 14s14-6 14-14c0-7-4-13-10-16 6-3 10-9 10-16 0-8-6-14-14-14z' fill='%23FFD84D' fill-opacity='0.12'/%3E%3C/svg%3E");
    background-attachment: fixed;
}

.home-page .bg-decoration {
    background-image: url('WhatsApp Image 2026-02-26 at 15.09.10.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.products-page .bg-decoration {
    background-image: url('WhatsApp Image 2026-02-26 at 15.09.10-3.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.products-page .sub-header {
    background: transparent !important;
    border-bottom: none !important;
}

.affiliates-page .bg-decoration {
    background-image: url('WhatsApp Image 2026-02-26 at 15.09.10-2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.affiliates-page .sub-header {
    background: transparent !important;
    border-bottom: none !important;
}

.wallet-page .bg-decoration {
    background-image: url('WhatsApp Image 2026-02-26 at 15.09.09.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.wallet-page .sub-header {
    background: transparent !important;
    border-bottom: none !important;
}

.profile-page .bg-decoration {
    background-image: url('WhatsApp Image 2026-02-26 at 15.09.09-3.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.profile-page .sub-header {
    background: transparent !important;
    border-bottom: none !important;
}

.roulette-page .bg-decoration {
    background-image: url('WhatsApp Image 2026-02-26 at 15.09.10-3.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.roulette-page .sub-header {
    background: transparent !important;
    border-bottom: none !important;
}

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

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.fade-in { animation: fadeIn 0.5s ease-out; }
.slide-up { animation: slideUp 0.6s ease-out backwards; }
.float-anim { animation: float 3s ease-in-out infinite; }

/* Header Styles */
.main-header {
    background: var(--bg-gradient);
    padding: 2.5rem 1.5rem 4.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 35px 35px;
    border-bottom: 4px solid var(--secondary);
}

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

.logo { width: 40px; height: 40px; }
.logo-large { width: 80px; height: 80px; margin-bottom: 1rem; }

.logo-container h1 {
    font-size: 1.2rem;
    font-weight: 700;
}

.logo-container h1 span { color: var(--secondary); }

.sub-header {
    background: var(--bg-gradient);
    padding: 2.5rem 1.5rem;
    color: white;
    border-radius: 0 0 35px 35px;
    border-bottom: 4px solid var(--secondary);
}

/* Content Areas */
.content-area {
    padding: 1.5rem;
    margin-top: -2rem;
}

.no-header-padding {
    padding-top: 1rem;
    margin-top: 0;
}

.scrollable {
    overflow-y: auto;
    height: calc(100vh - 80px); /* Adjusted for pages without large headers */
    -webkit-overflow-scrolling: touch;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.card:hover {
    border-top-color: var(--secondary);
}

.status-card {
    display: flex;
    flex-direction: column;
}

.status-card p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.status-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.yellow-card {
    background: rgba(255, 216, 77, 0.75) !important;
    color: var(--primary) !important;
    border: 1.5px solid rgba(10, 61, 145, 0.2) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.assets-card {
    padding: 0.5rem 1rem !important;
}

/* Banana Check-in Card */
.daily-checkin {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.banana-shape-card {
    width: 280px;
    height: 85px;
    background: linear-gradient(110deg, #fff490 0%, #FFD84D 40%, #f1c40f 100%);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 35px;
    /* Improved organic banana curve */
    border-radius: 15% 95% 15% 95% / 40% 95% 5% 65%;
    box-shadow: 
        inset -8px -4px 12px rgba(0,0,0,0.08),
        0 12px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bananaSwing 5s ease-in-out infinite;
    transform-origin: top center;
}

/* Banana Stem */
.banana-shape-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -12px;
    width: 20px;
    height: 25px;
    background: linear-gradient(to right, #4d3319, #6d4c2a);
    border-radius: 4px;
    transform: rotate(-35deg);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

/* Banana Bottom Tip */
.banana-shape-card::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #222;
    border-radius: 50% 20% 50% 20%;
    transform: rotate(15deg);
}

.banana-shape-card:active {
    transform: scale(0.95) rotate(-2deg);
}

.banana-shape-card.checked {
    background: linear-gradient(110deg, #2ecc71 0%, #27ae60 100%);
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 12px 25px rgba(39, 174, 96, 0.3);
}

.banana-shape-card.checked .checkin-text h4,
.banana-shape-card.checked .checkin-text p,
.banana-shape-card.checked .check-icon {
    color: white;
}

.banana-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.banana-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon {
    font-size: 1.2rem;
    color: var(--primary);
}

.checkin-text h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin: 0;
}

.checkin-text p {
    font-size: 0.7rem;
    color: rgba(10, 61, 145, 0.7);
    margin: 0;
}

/* Sparkles Animation */
.banana-sparkles {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.sparkle {
    position: absolute;
    color: white;
    font-size: 0.8rem;
    opacity: 0;
}

.s1 { top: -15px; right: 0; animation: sparkleAnim 2s infinite 0s; }
.s2 { top: 5px; right: -10px; animation: sparkleAnim 2s infinite 0.5s; }
.s3 { top: 15px; right: 5px; animation: sparkleAnim 2s infinite 1s; }

@keyframes bananaSwing {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-5px); }
}

@keyframes sparkleAnim {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

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

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

.header-main i {
    font-size: 1.2rem;
}

.header-main h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary) !important;
}

.asset-count {
    font-size: 0.7rem;
    background: rgba(10, 61, 145, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.assets-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0.6rem;
}

.mini-asset {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(10, 61, 145, 0.1);
}

.assets-footer {
    text-align: center;
}

.link-more {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.4);
    padding: 6px 15px;
    border-radius: 20px;
    transition: background 0.2s;
}

.link-more:hover {
    background: rgba(255, 255, 255, 0.6);
}

.text-yellow { color: #f39c12; }

.icon-bg {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 4rem;
    opacity: 0.05;
}

.balance-card {
    background: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance-card .balance-info p { color: #444; font-weight: 600; }
.balance-card .balance-info h2 { font-size: 2rem; }

/* Hero Banner */
.hero-banner {
    margin-bottom: 1.5rem;
}

.main-hero-card {
    background: rgba(10, 61, 145, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 1.2rem !important;
    border: 2px solid var(--secondary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
    0% { border-color: var(--secondary); box-shadow: 0 0 5px rgba(255, 216, 77, 0.2); }
    50% { border-color: #fff; box-shadow: 0 0 12px rgba(255, 216, 77, 0.5); }
    100% { border-color: var(--secondary); box-shadow: 0 0 5px rgba(255, 216, 77, 0.2); }
}

.hero-brand-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

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

.logo-sm {
    width: 24px;
    height: 24px;
}

.brand-title {
    font-size: 0.9rem;
    font-weight: 700;
}

.balance-container-split {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.balance-sub-item {
    flex: 1;
}

.balance-label {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.counter.balance-deposited {
    font-size: 1.2rem !important;
    color: #fff;
}

.wallet-page .counter.balance-deposited {
    color: var(--primary) !important;
}

.counter.balance-profit {
    font-size: 1.2rem !important;
    color: var(--secondary);
}

.wallet-page .counter.balance-profit {
    color: var(--primary) !important;
}

.wallet-split-display {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1.5rem;
}

.wallet-side {
    flex: 1;
    text-align: center;
}

.wallet-side p {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.wallet-divider {
    width: 1px;
    height: 40px;
    background: #eee;
    margin: 0 10px;
}

.balance-header p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2px;
}

.balance-header h2 {
    font-size: 1.6rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.hero-actions {
    display: flex;
    gap: 6px;
    margin-bottom: 0.4rem;
}

.btn-hero-action {
    flex: 1;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 0.4rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    box-shadow: 0 2px 0 var(--secondary-dark);
}

.btn-hero-action.outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    box-shadow: none;
}

.hero-footer-text p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

.hero-icon img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

/* Buttons */
.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 0 var(--secondary-dark);
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--secondary-dark);
}

.btn-secondary {
    background: var(--secondary);
    color: #333;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.btn-block { width: 100%; margin-top: 1rem; }

.btn-primary:active { transform: scale(0.95); }

.btn-action-small {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* Referral Bonus Card */
.referral-bonus-card {
    background: linear-gradient(135deg, #0A3D91 0%, #1e5fcb 100%) !important;
    border: 2px solid var(--secondary) !important;
    padding: 1rem !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    position: relative;
}

.bonus-icon-wrapper {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.gift-anim {
    font-size: 1.4rem;
    color: var(--primary);
    animation: giftWobble 2s ease-in-out infinite;
}

@keyframes giftWobble {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

.bonus-text h4 {
    color: white;
    font-size: 1rem;
    margin: 0;
}

.bonus-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    margin: 0;
}

.bonus-action-arrow {
    margin-left: auto;
    color: var(--secondary);
    font-size: 1.2rem;
}

.arrow-bounce {
    animation: arrowPush 1.5s ease-in-out infinite;
}

@keyframes arrowPush {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Confetti Background */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.confetti {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatConfetti 4s linear infinite;
}

.confetti:nth-child(1) { left: 10%; top: -10%; animation-delay: 0s; }
.confetti:nth-child(2) { left: 40%; top: -10%; animation-delay: 1.5s; width: 4px; height: 4px; }
.confetti:nth-child(3) { left: 70%; top: -10%; animation-delay: 0.8s; }
.confetti:nth-child(4) { left: 90%; top: -10%; animation-delay: 2.2s; background: #fff; }

@keyframes floatConfetti {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    20% { opacity: 0.4; }
    100% { transform: translateY(120px) rotate(360deg); opacity: 0; }
}

/* Products */
.product-card {
    display: grid !important;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 0.7rem 1rem !important;
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(10, 61, 145, 0.15) !important;
    border-left: 4px solid var(--primary) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateX(8px) scale(1.02);
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: var(--secondary) !important;
    box-shadow: 0 8px 25px rgba(10, 61, 145, 0.15);
}

.product-card::after {
    content: '🍌';
    position: absolute;
    right: 10px;
    top: -10px;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s;
}

.product-card:hover::after {
    opacity: 0.2;
    top: 5px;
}

.product-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary) 0%, #fff490 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-icon i {
    font-size: 1.4rem !important;
    color: var(--primary) !important;
}

.product-details { flex: 1; }
.product-details h3 { 
    font-size: 0.9rem; 
    margin-bottom: 2px;
    color: var(--primary);
}
.product-details p { font-size: 0.65rem; color: #555; margin: 0; }
.product-price { 
    font-size: 0.8rem; 
    font-weight: 700; 
    color: var(--primary);
    margin-top: 2px;
}
.yield { 
    color: #27ae60; 
    font-weight: 700; 
    font-size: 0.75rem; 
    background: rgba(46, 204, 113, 0.1);
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
}

/* Product Cards V2 - Design melhorado */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 0.5rem;
}

@media (min-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card-v2 {
    background: linear-gradient(160deg, #ffffff 0%, #f8faff 50%, #eef4ff 100%);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(10, 61, 145, 0.12);
    box-shadow: 0 4px 20px rgba(10, 61, 145, 0.08), 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.product-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 61, 145, 0.15), 0 4px 12px rgba(0,0,0,0.06);
    border-color: rgba(10, 61, 145, 0.25);
}

.product-card-v2:hover::before {
    opacity: 1;
}

.product-card-v2-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.product-card-v2-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(10, 61, 145, 0.35);
}

.product-card-v2-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.product-card-v2-badge {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

.product-card-v2-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.product-card-v2-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.product-card-v2-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.product-card-v2-profits {
    background: rgba(10, 61, 145, 0.06);
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(10, 61, 145, 0.08);
}

.profit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.profit-row:first-child {
    padding-top: 0;
}

.profit-label {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profit-label i {
    font-size: 0.7rem;
    color: var(--secondary);
}

.profit-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.profit-value.profit-daily {
    color: #27ae60;
}

.profit-value.profit-total {
    font-size: 1.1rem;
    color: var(--primary);
}

.profit-note {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed rgba(10, 61, 145, 0.1);
}

.product-card-v2-form {
    margin: 0;
}

.product-card-v2-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(10, 61, 145, 0.4);
    transition: all 0.25s;
}

.product-card-v2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 61, 145, 0.5);
}

.product-card-v2-btn:active {
    transform: translateY(0);
}

/* Affiliate */
.affiliate-hero-card {
    background: linear-gradient(135deg, rgba(10, 61, 145, 0.6) 0%, rgba(26, 86, 185, 0.6) 100%) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 2px solid var(--secondary) !important;
    color: white;
    text-align: center;
    padding: 1rem !important;
}

.bonus-stat {
    margin-bottom: 0.8rem;
}

.bonus-stat p {
    font-size: 0.7rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
}

.bonus-stat h2 {
    font-size: 1.6rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.referral-container label {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
}

.referral-box {
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.referral-box input {
    flex: 1;
    padding: 0.8rem;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: white;
    font-size: 0.8rem;
}

.btn-copy {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 0 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-bottom: 1rem;
}

.affiliate-tier {
    background: rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    padding: 0.5rem 0.4rem !important;
    border: 1px solid rgba(10, 61, 145, 0.2) !important;
    padding: 1rem 0.5rem !important;
    text-align: center;
    transition: all 0.3s;
}

.affiliate-tier:hover {
    transform: translateY(-3px);
    border-color: var(--secondary) !important;
    background: white !important;
}

.tier-icon {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.tier-level { font-size: 0.55rem; color: #666; font-weight: 600; }
.tier-percent { font-size: 0.95rem; font-weight: 800; color: var(--primary); margin: 1px 0; }
.affiliate-tier p { font-size: 0.5rem; color: #888; line-height: 1.1; }

.affiliate-history-card {
    padding: 1.2rem !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.affiliate-history-card .card-header-flex h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.affiliate-history-card .affiliate-user-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-color: var(--secondary);
}

.affiliate-history-card .user-info-mini strong {
    color: white;
}

.affiliate-history-card .user-info-mini span {
    color: rgba(255, 255, 255, 0.7);
}

.animated-subtitle {
    color: var(--secondary) !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px rgba(255, 216, 77, 0.5);
    display: inline-block;
    animation: subtitlePop 2s infinite ease-in-out;
}

@keyframes subtitlePop {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.08); filter: brightness(1.3); }
}

.confetti-global {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -20px;
    border-radius: 2px;
    animation: globalFall 5s linear infinite;
}

@keyframes globalFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    80% { opacity: 0.8; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

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

.card-header-flex h3 {
    font-size: 1rem;
    color: var(--primary);
    margin: 0;
}

.badge-blue {
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.affiliate-history-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.affiliate-user-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(10, 61, 145, 0.05);
    border-left: 3px solid var(--primary);
}

.user-avatar-mini {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.user-info-mini {
    flex: 1;
}

.user-info-mini strong {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
}

.user-info-mini span {
    font-size: 0.65rem;
    color: #888;
}

.user-status-tag {
    font-size: 0.6rem;
    background: #e1f5fe;
    color: #0288d1;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.user-status-tag.yellow {
    background: #fff9c4;
    color: #fbc02d;
}

/* Wallet */
.wallet-main { 
    text-align: center;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 2px solid #448AFF !important; /* Moldura azul solicitada anteriormente */
    box-shadow: none !important;
    color: white;
}

.wallet-main .wallet-side p, 
.wallet-main .counter.balance-deposited,
.wallet-main .counter.balance-profit {
    color: white !important;
}

.wallet-main .wallet-divider {
    background: rgba(255,255,255,0.2);
}
.wallet-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 1rem;
}

.history-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.hist-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.hist-icon.success { background: #e8f5e9; color: #2e7d32; }
.hist-icon.danger { background: #ffebee; color: #c62828; }

.hist-info { flex: 1; }
.hist-info strong { display: block; font-size: 0.9rem; }
.hist-info span { font-size: 0.7rem; color: #999; }

.hist-value { font-weight: 600; font-size: 0.9rem; }
.text-success { color: #27ae60; }
.text-danger { color: #eb4d4b; }

/* Profile Enhanced Design */
.profile-card-glass {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 35px !important;
    padding: 1rem 1.2rem !important;
    color: var(--primary);
    box-shadow: none !important;
    max-width: 380px;
    margin: 0 auto;
}

.profile-header-animated {
    text-align: center;
    margin-bottom: 1.5rem;
}

.avatar-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    padding: 3px;
    background: white;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(255, 216, 77, 0.5);
}

.online-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #2ecc71;
    border: 3px solid white;
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.profile-identity h2 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary);
    font-weight: 700;
}

.user-email-badge {
    display: inline-block;
    background: rgba(10, 61, 145, 0.1);
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(10, 61, 145, 0.1);
    color: var(--primary);
}

.profile-stats-mini {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 12px;
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
}

.stat-box i { color: var(--secondary); }

.profile-menu-fancy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fancy-item {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 20px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fancy-item:hover {
    background: rgba(255, 216, 77, 0.2);
    transform: translateX(5px);
    border-color: var(--primary);
}

.fancy-icon-bg {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 216, 77, 0.3);
}

.fancy-icon-bg i {
    color: var(--primary);
    font-size: 1.2rem;
}

.fancy-content {
    flex: 1;
}

.fancy-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
}

.fancy-content span {
    display: block;
    font-size: 0.7rem;
    color: #555;
}

.arrow-f {
    font-size: 0.8rem;
    color: var(--secondary);
    opacity: 0.6;
}

.edit-icon-s {
    font-size: 0.8rem;
    color: var(--secondary);
}

.logout-btn {
    width: 100%;
    margin-top: 2rem;
    background: linear-gradient(135deg, #eb4d4b 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(192, 57, 43, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.logout-btn:active {
    transform: scale(0.95);
}

/* Profile Page - Original Layout */
.profile-chip-section {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    margin-top: 1rem;
}

.profile-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid #2ecc71;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #2ecc71;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

.profile-menu-card {
    margin-top: 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    overflow: hidden;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.profile-menu-item:last-child {
    border-bottom: none;
}

.profile-menu-item:hover, .profile-menu-item:active {
    background: rgba(255,255,255,0.1);
}

.profile-menu-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb,10,61,145), 0.2), rgba(255,216,77,0.15));
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.profile-menu-icon i {
    font-size: 1.1rem;
}

.profile-menu-item span:nth-child(2) {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
}

.profile-menu-arrow {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.profile-menu-item-logout .profile-menu-icon-logout,
.profile-menu-item-logout span {
    color: #eb4d4b;
}

.profile-menu-item-logout .profile-menu-icon-logout {
    background: rgba(235,77,75,0.15);
    border-color: rgba(235,77,75,0.3);
}

/* Profile Stats in card */
.profile-card-glass .stat-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.profile-card-glass .stat-label {
    font-size: 0.7rem;
    color: #666;
}

/* FAQ */
.faq-list { margin-top: 1rem; }
.faq-item { margin-bottom: 0.5rem; border: 1px solid #eee; border-radius: 10px; overflow: hidden; }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    background: #f8f9fa;
}

.faq-question i { font-size: 0.8rem; color: #999; transition: transform 0.2s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding: 12px 16px;
    background: white;
    font-size: 0.9rem;
    color: #555;
}

.faq-item.active .faq-answer { display: block; }

/* Support Link */
.support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary);
    margin-top: 0.5rem;
}

.support-link:hover { background: #eef1f7; }

/* Form group in modal */
.modal-body .form-group {
    margin-bottom: 1rem;
}

.modal-body .form-group label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 6px;
}

.modal-body .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
}

.modal-body .form-group input:focus {
    outline: none;
    border-color: var(--secondary);
}

.help-section { margin-bottom: 1.5rem; }
.help-section h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }

.profile-page .modal-overlay {
    align-items: center;
}

/* Auth */
.auth-body {
    background: #0A3D91; /* Strong Brand Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    min-height: 100vh;
}

.auth-body .bg-decoration {
    background-image: url('WhatsApp Image 2026-02-26 at 15.09.10.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: saturate(1.5);
}

.auth-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
    z-index: 10;
}

.auth-header {
    margin-bottom: 2rem;
}

.auth-header h1 { 
    color: var(--secondary); 
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin-bottom: 5px; 
}

.auth-header p { 
    color: white; 
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.auth-form {
    background: rgba(10, 61, 145, 0.95);
    padding: 2rem;
    border-radius: 30px;
    border: 3px solid var(--secondary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.input-group {
    background: rgba(255, 255, 255, 1); /* White background for visibility */
    border-radius: 15px;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    border: 2px solid var(--secondary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.input-group:focus-within {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 216, 77, 0.4);
}

.input-group i { 
    color: var(--primary); 
    margin-right: 12px;
    font-size: 1.1rem;
}

.input-group input {
    background: transparent;
    border: none;
    padding: 1rem 0;
    color: var(--primary); /* Blue text on white input */
    width: 100%;
    outline: none;
    font-weight: 600;
    font-size: 16px; /* Evita auto-zoom no iOS ao focar no input */
}

.input-group input::placeholder { 
    color: #999; 
    font-weight: 400;
}

/* Captcha Styling */
.captcha-container {
    display: flex;
    gap: 12px;
    margin-bottom: 1.2rem;
    align-items: center;
}

.captcha-display {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.5rem;
    padding: 0.8rem;
    border-radius: 15px;
    letter-spacing: 3px;
    user-select: none;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 0 var(--secondary-dark);
    min-width: 110px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.captcha-input {
    margin-bottom: 0 !important;
    flex: 1;
}

.auth-footer { 
    margin-top: 2rem; 
    color: white; 
    font-weight: 600;
}

.auth-footer a { 
    color: var(--secondary); 
    text-decoration: underline; 
    font-weight: 700;
    font-size: 1.1rem;
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    border-radius: 20px 20px 0 0;
    z-index: 100;
}

.nav-item {
    text-decoration: none;
    color: #bbb;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    gap: 4px;
    transition: color 0.3s;
}

.nav-item.active { 
    color: var(--secondary-dark);
    font-weight: 700;
}
.nav-item.active i {
    transform: scale(1.2);
    color: var(--secondary-dark);
}
.nav-item i { font-size: 1.2rem; }

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 61, 145, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wallet-page .modal-overlay, .home-page .modal-overlay, .products-page .modal-overlay {
    align-items: flex-end;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    position: relative;
}

.wallet-page .modal-content, .home-page .modal-content, .products-page .modal-content {
    border-radius: 30px 30px 0 0;
}

/* Status Feedback Modal specific styles */
.status-modal-content {
    text-align: center;
    border-top: 5px solid var(--secondary);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

.status-icon-box {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.status-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border: 4px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(10, 61, 145, 0.3);
    animation: iconBounce 1s infinite alternate ease-in-out;
}

.status-icon-circle i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.status-icon-box.confirm .status-icon-circle {
    background: var(--secondary);
    border-color: var(--primary);
}

.status-icon-box.confirm i {
    color: var(--primary);
}

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

#statusTitle, #confirmTitle {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

#statusMessage, #confirmMessage {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.confirm-actions {
    display: flex;
    gap: 12px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #ddd;
    color: #888;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #f5f5f5;
}

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

.modal-header h3 {
    color: var(--primary);
    font-size: 1.2rem;
}

.close-modal {
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

.input-group-modal {
    background: #f8f9fa;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

.input-group-modal:focus-within {
    border-color: var(--secondary);
}

.input-group-modal span, .input-group-modal i {
    color: var(--primary);
    font-weight: 700;
    margin-right: 10px;
}

.input-group-modal input, .pix-key-selector select {
    background: transparent;
    border: none;
    padding: 1rem 0;
    width: 100%;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary);
}

.value-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 1rem;
}

.preset-btn {
    background: #f0f4ff;
    border: 1px solid rgba(10, 61, 145, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s;
}

.preset-btn:active {
    background: var(--secondary);
    transform: scale(0.95);
}

.pix-key-selector {
    margin-bottom: 1rem;
}

.pix-key-selector label {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.pix-key-selector select {
    background: #f8f9fa;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 0.8rem 1rem;
    appearance: none;
}

.modal-hint {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 1rem;
    text-align: center;
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: ripple-animation 1s linear infinite;
}

@keyframes ripple-animation {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.5;
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}