
:root {
    --shopee-orange: #ee4d2d;
    --shopee-orange-hover: #d73211;
    --shopee-bg: #f5f5f5;
    --shopee-text: #222222;
    --shopee-text-light: #757575;
    --shopee-border: #e8e8e8;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--shopee-bg);
    color: var(--shopee-text);
}

.page-container {
    width: 100%;
    min-height: 100vh;
}

/* Material Icons Helper */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ---------- LOGIN PAGE ---------- */
.login-wrapper {
    background: var(--white);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.login-header {
    background: var(--shopee-orange);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 4px 12px rgba(238, 77, 45, 0.3);
}
.shopee-logo-large {
    height: 60px;
    filter: brightness(0) invert(1);
}
.login-body {
    padding: 40px 24px;
    flex: 1;
}
.login-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--shopee-text);
}
.login-subtitle {
    font-size: 14px;
    color: var(--shopee-text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}
.login-extra {
    font-size: 13px;
    color: #757575;
    line-height: 1.55;
    margin-bottom: 16px;
}
.login-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.login-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--shopee-text);
    background: #fff8f6;
    border: 1px solid #ffe0d6;
    border-radius: 8px;
    padding: 10px 12px;
}
.login-benefits .material-symbols-outlined {
    font-size: 18px;
    color: var(--shopee-orange);
    flex-shrink: 0;
    margin-top: 1px;
}
.input-group {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}
.input-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--shopee-text);
    margin-bottom: 8px;
}
.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 22px;
}
.form-input {
    width: 100%;
    height: 48px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0 16px 0 44px;
    font-size: 16px;
    transition: all 0.3s;
}
#saque .form-input {
    padding: 0 16px;
}
.form-input:focus {
    border-color: var(--shopee-orange);
    outline: none;
    box-shadow: 0 0 0 2px rgba(238, 77, 45, 0.2);
}
.shopee-btn-primary {
    width: 100%;
    height: 48px;
    background: var(--shopee-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(238, 77, 45, 0.3);
    transition: background 0.3s, transform 0.1s;
}
.shopee-btn-primary:active {
    transform: scale(0.98);
    background: var(--shopee-orange-hover);
}
.login-footer {
    padding: 24px;
    text-align: center;
    font-size: 12px;
    color: #999;
}
.login-footer p {
    margin-bottom: 8px;
}

/* ---------- TOP APP BAR ---------- */
.shopee-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: linear-gradient(135deg, #f53d2d 0%, #ee4d2d 100%);
    display: flex;
    align-items: center;
    padding: 0 16px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.shopee-top-bar--rich {
    height: auto;
    min-height: 118px;
    align-items: stretch;
    padding: 10px 14px 12px;
    background:
        radial-gradient(ellipse 90% 80% at 100% -20%, rgba(255,255,255,0.22), transparent 55%),
        radial-gradient(ellipse 70% 60% at 0% 120%, rgba(0,0,0,0.12), transparent 50%),
        linear-gradient(135deg, #ff6337 0%, #ee4d2d 48%, #d73211 100%);
    box-shadow: 0 6px 18px rgba(215, 50, 17, 0.28);
}
.top-bar-content {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
}
.top-bar-content--rich {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}
.top-bar-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.top-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.top-brand-name {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(0,0,0,0.12);
}
.top-brand-badge {
    font-size: 11px;
    font-weight: 700;
    color: #ee4d2d;
    background: #fff;
    border-radius: 999px;
    padding: 3px 9px;
    line-height: 1.2;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.top-wallet-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.16);
    color: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    backdrop-filter: blur(6px);
}
.top-wallet-chip .material-symbols-outlined {
    font-size: 16px;
}
.top-wallet-chip:active {
    transform: scale(0.97);
    background: rgba(255,255,255,0.24);
}
.search-bar {
    flex: 1;
    height: 40px;
    background: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}
.search-bar--rich {
    height: 42px;
    border-radius: 10px;
    padding: 0 6px 0 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.search-icon {
    color: #ee4d2d;
    font-size: 20px;
}
.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 10px;
    font-size: 14px;
    color: var(--shopee-text);
    font-weight: 400;
    min-width: 0;
}
.search-bar--rich input {
    font-size: 13px;
}
.camera-icon {
    color: #999;
    font-size: 20px;
    padding-left: 8px;
    border-left: 1px solid #eee;
}
.search-bar--rich .camera-icon {
    border-left: none;
    padding-left: 4px;
    padding-right: 4px;
}
.search-action {
    background: linear-gradient(180deg, #ff6a45 0%, #ee4d2d 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    padding: 8px 12px;
    margin-left: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(238, 77, 45, 0.35);
}
.top-bar-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.92);
    font-size: 11px;
    font-weight: 500;
    padding: 0 2px;
}
.top-meta-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
}
.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7CFFB2;
    box-shadow: 0 0 0 0 rgba(124, 255, 178, 0.7);
    animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(124, 255, 178, 0.65); }
    70% { box-shadow: 0 0 0 6px rgba(124, 255, 178, 0); }
    100% { box-shadow: 0 0 0 0 rgba(124, 255, 178, 0); }
}
.top-meta-sep {
    opacity: 0.55;
}
.top-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.top-icon {
    color: var(--white);
    font-size: 28px;
    transition: transform 0.2s;
}
.top-icon:active {
    transform: scale(0.9);
}
.badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #fff;
    color: #ee4d2d;
    font-size: 10px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ee4d2d;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.spacer-top {
    height: 60px;
}
.spacer-top--rich {
    height: 126px;
}
@media (max-width: 380px) {
    .top-wallet-text { display: none; }
    .top-bar-meta { font-size: 10px; }
}

/* ---------- BALANCE WIDGET ---------- */
.balance-widget {
    margin: 12px;
    background: var(--white);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.balance-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.coin-icon {
    color: #ffb800;
    font-size: 32px;
    font-variation-settings: 'FILL' 1;
}
.balance-label {
    font-size: 12px;
    color: var(--shopee-text-light);
}
.balance-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--shopee-text);
}
.sacar-btn {
    display: flex;
    align-items: center;
    color: var(--shopee-orange);
    font-size: 14px;
    font-weight: 500;
}
.sacar-btn .material-symbols-outlined {
    font-size: 18px;
}

/* ---------- PROMO BANNER ---------- */
.promo-banner {
    display: flex;
    justify-content: space-around;
    background: var(--white);
    padding: 16px 8px;
    margin-bottom: 12px;
}
.banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.banner-icon {
    font-size: 28px;
    background: #fdfdfd;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid var(--shopee-border);
}
.banner-item p {
    font-size: 12px;
    color: var(--shopee-text);
}

/* ---------- PRODUCTS FEED ---------- */
.section-title-box {
    padding: 16px 12px 8px;
}
.section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--shopee-orange);
    text-transform: uppercase;
}
.section-subtitle {
    font-size: 12px;
    color: var(--shopee-text-light);
}

.product-card {
    background: var(--white);
    margin: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.08);
}
.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding-top: 0;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
    object-position: center;
}
.shopee-mall-tag {
    position: absolute;
    top: 12px;
    left: -4px;
    background: #d0011b;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.shopee-mall-tag::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    border-top: 4px solid #900012;
    border-left: 4px solid transparent;
}
.reward-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(238, 77, 45, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.product-details {
    padding: 16px;
    border-bottom: 1px solid var(--shopee-border);
}
.product-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}
.price-new {
    color: var(--shopee-orange);
    font-size: 20px;
    font-weight: 500;
}
.price-old {
    color: #999;
    font-size: 12px;
    text-decoration: line-through;
}
.product-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.rating-stars {
    display: flex;
    color: #ffce3d;
}
.star-icon {
    font-size: 14px;
}
.sold-count {
    font-size: 12px;
    color: var(--shopee-text-light);
}
.shipping-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #00bfa5;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}
.truck-icon {
    font-size: 14px;
}

/* Evaluation form */
.evaluation-section {
    padding: 16px;
    background: #fcfcfc;
}
.gender-switch {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 10px 12px;
    background: #fff5f2;
    border: 1px solid #ffd5cb;
    border-radius: 10px;
}
.gender-label {
    width: 100%;
    font-size: 12px;
    color: #757575;
    margin-bottom: 2px;
}
.gender-btn {
    border: 1px solid #ee4d2d;
    background: #fff;
    color: #ee4d2d;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}
.gender-btn.active {
    background: #ee4d2d;
    color: #fff;
}
.eval-title {
    font-size: 14px;
    color: var(--shopee-text);
    margin-bottom: 12px;
    margin-top: 16px;
}
.eval-title:first-child {
    margin-top: 0;
}

/* Custom Slider */
.shopee-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: #e0e0e0;
    border-radius: 4px;
    outline: none;
}
.shopee-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--shopee-orange);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    cursor: pointer;
}
.labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    padding: 0 4px;
}

/* Rating Buttons */
.rating-container {
    display: flex;
    gap: 8px;
}
.rating-button {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--shopee-border);
    color: var(--shopee-text);
    padding: 12px 8px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}
.rating-button.active {
    background: rgba(238, 77, 45, 0.05);
    border-color: var(--shopee-orange);
    color: var(--shopee-orange);
    font-weight: 500;
}
.eval-submit {
    margin-top: 24px;
}

/* ---------- BOTTOM NAV ---------- */
.shopee-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: var(--white);
    border-top: 1px solid var(--shopee-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #999;
    gap: 4px;
    transition: color 0.2s;
}
.nav-icon {
    font-size: 26px;
}
.nav-label {
    font-size: 11px;
}
.nav-item.active {
    color: var(--shopee-orange);
}

/* ---------- POPUPS ---------- */
.popup-container, .popup-containerL {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
}
.shopee-popup {
    background: linear-gradient(145deg, #ffffff, #fffcfb);
    width: 85%;
    max-width: 380px;
    border-radius: 28px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 20px rgba(238, 77, 45, 0.1);
    animation: popInBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(238, 77, 45, 0.08);
    position: relative;
    overflow: hidden;
}

@keyframes popInBounce {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.shopee-popup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(238, 77, 45, 0.03) 0%, transparent 70%);
    pointer-events: none;
}
@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.popup-title {
    font-size: 22px;
    font-weight: 800;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.popup-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.popup-reward {
    display: inline-block;
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(90deg, #ff8a00, #ee4d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(238, 77, 45, 0.2));
}

.popup-reward::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-25deg);
    animation: rewardShine 3s infinite;
}

@keyframes rewardShine {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.popup-subtext {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: #2e7d32;
    font-weight: 600;
    margin-top: 15px;
    background: rgba(76, 175, 80, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
}

.success-gif-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    background: rgba(238, 77, 45, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.success-gif-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(238, 77, 45, 0.2);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Premium Limit Popup */
.premium-limit-popup {
    background: linear-gradient(180deg, #ffffff 0%, #fffbf8 100%);
    width: 92%;
    max-width: 400px;
    border-radius: 32px;
    padding: 20px 24px 32px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 20px rgba(238, 77, 45, 0.05);
    position: relative;
    border: 1px solid rgba(238, 77, 45, 0.1);
    animation: premiumPopUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    overflow: visible;
}

@keyframes premiumPopUp {
    0% { transform: scale(0.8) translateY(50px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.limit-lottie-container {
    margin-top: -40px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
}

.limit-header {
    margin-bottom: 20px;
}

.limit-title {
    font-size: 28px;
    font-weight: 900;
    color: #222;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.limit-badge {
    display: inline-block;
    background: rgba(238, 77, 45, 0.1);
    color: var(--shopee-orange);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    border: 1px solid rgba(238, 77, 45, 0.15);
}

.limit-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Reward Card */
.premium-reward-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.reward-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(238, 77, 45, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.reward-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.reward-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.currency {
    color: #ee4d2d;
    font-size: 20px;
    font-weight: 700;
}

.amount {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1px;
}

.reward-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #4caf50;
    font-weight: 600;
}

.reward-status .material-symbols-outlined {
    font-size: 16px;
}

.pulse-btn {
    height: 60px !important;
    font-size: 17px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    box-shadow: 0 10px 25px rgba(238, 77, 45, 0.4) !important;
    animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
    0% { transform: scale(1); box-shadow: 0 10px 25px rgba(238, 77, 45, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 15px 35px rgba(238, 77, 45, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 25px rgba(238, 77, 45, 0.4); }
}

.limit-footer-text {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

/* ---------- SAQUE PAGE ---------- */
.saque-header {
    background: linear-gradient(135deg, #ee4d2d 0%, #ff5722 100%);
    padding: 40px 24px;
    text-align: center;
    color: white;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 4px 15px rgba(238, 77, 45, 0.3);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.saque-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.saque-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-weight: 400;
}

.saque-header h1 {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

.saque-card {
    background: var(--white);
    margin: 0 16px 16px;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.saque-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pix-keys-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.pix-key-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pix-key-btn.active {
    background: rgba(238, 77, 45, 0.04);
    border-color: var(--shopee-orange);
    color: var(--shopee-orange);
}

.pix-key-btn .material-symbols-outlined {
    font-size: 24px;
}

/* ---------- PAYOUT METHODS LIST ---------- */
.payout-methods {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 22px;
    border: 1px solid var(--shopee-border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.payout-method {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    border: none;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.15s;
}

.payout-method:last-child {
    border-bottom: none;
}

.payout-method:active,
.payout-method.active {
    background: #fff5f2;
}

.payout-method.active {
    box-shadow: inset 3px 0 0 var(--shopee-orange);
}

.payout-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    font-weight: 700;
    font-size: 20px;
    background: #fff;
}

.payout-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.payout-icon-cpf,
.payout-icon-cnpj {
    background: #32bcad;
    border-color: #32bcad;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.payout-icon-email,
.payout-icon-phone,
.payout-icon-random {
    background: #e8f8f6;
    border-color: #32bcad;
    color: #32bcad;
}

.payout-icon-email .material-symbols-outlined,
.payout-icon-phone .material-symbols-outlined,
.payout-icon-random .material-symbols-outlined {
    font-size: 22px;
}

.payout-icon-paypal {
    background: #fff;
}

.payout-icon-revolut {
    background: #fff;
    color: #000;
    font-family: Arial Black, Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
}

.payout-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.payout-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.payout-text small {
    font-size: 12px;
    color: #9a9a9a;
    font-weight: 400;
}

.payout-chevron {
    color: #c4c4c4;
    font-size: 22px;
    flex-shrink: 0;
}

.payout-method.active .payout-chevron {
    color: var(--shopee-orange);
}

.saque-info-box {
    margin-top: 20px;
    padding: 16px;
    background: #fff9f8;
    border-radius: 12px;
    border: 1px solid rgba(238, 77, 45, 0.1);
}

.info-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item span {
    font-size: 18px;
    color: var(--shopee-orange);
}

.info-item p {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}

.saque-hint {
    margin: 8px 0 0;
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

.saque-error {
    margin: 8px 0 0;
    font-size: 13px;
    color: #d32f2f;
    font-weight: 600;
    line-height: 1.4;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    opacity: 0.6;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
}

.black-nav {
    background-color: #000 !important;
    border-top: none !important;
}
.circle-icon {
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orange-nav {
    background-color: var(--shopee-orange) !important;
    border-top: none !important;
}

.orange-nav .nav-item .nav-icon {
    color: rgba(255, 255, 255, 0.5) !important; /* Desativado (transparente) */
    font-size: 32px !important;
    transition: all 0.3s ease;
    font-variation-settings: 'FILL' 0;
}

.orange-nav .nav-item.active .nav-icon {
    color: #ffffff !important; /* Ativado (branco) */
    font-variation-settings: 'FILL' 1;
    transform: scale(1.15);
}


/* ---------- SOCIAL PROOF ---------- */
.social-proof-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 50px;
    padding: 8px 16px 8px 8px;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    min-width: 250px;
    max-width: 90%;
}
@keyframes slideDown {
    0% { top: -50px; opacity: 0; }
    100% { top: 20px; opacity: 1; }
}
@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
.social-proof-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--shopee-orange);
}
.sp-text {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ---------- COMO FUNCIONA / AJUDA ---------- */
.how-page {
    padding: 16px 16px 24px;
    max-width: 560px;
    margin: 0 auto;
}
.how-hero {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px 16px 18px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.how-logo {
    width: 150px;
    margin-bottom: 12px;
}
.how-title {
    color: #ee4d2d;
    margin: 0 0 10px;
    font-size: 22px;
}
.how-lead {
    color: #666;
    text-align: left;
    line-height: 1.55;
    font-size: 14px;
    margin: 0;
}
.how-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    text-align: left;
}
.how-card-title {
    margin: 0 0 12px;
    font-size: 16px;
    color: #222;
    font-weight: 700;
}
.how-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.how-steps li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.how-step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ee4d2d;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-steps strong {
    display: block;
    font-size: 14px;
    color: #222;
    margin-bottom: 2px;
}
.how-steps p,
.how-list,
.how-faq p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}
.how-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.how-list li {
    position: relative;
    padding-left: 16px;
}
.how-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ee4d2d;
}
.how-faq {
    border-top: 1px solid #f0f0f0;
    padding: 10px 0;
}
.how-faq:first-of-type {
    border-top: none;
    padding-top: 0;
}
.how-faq summary {
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.how-faq summary::-webkit-details-marker {
    display: none;
}
.how-faq summary::after {
    content: "expand_more";
    font-family: "Material Symbols Outlined";
    font-size: 20px;
    color: #ee4d2d;
    font-weight: normal;
}
.how-faq[open] summary::after {
    content: "expand_less";
}
.how-faq p {
    margin-top: 8px;
}
