        /* Estilos existentes mantidos */
        .user-profile {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--footer-text);
            text-decoration: none;
            position: relative;
        }
        .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
            color: var(--footer-text);
            text-transform: uppercase;
        }
        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .dropdown-toggle {
            color: var(--footer-text);
            font-size: 16px;
            padding: 5px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .favorite-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .dropdown-toggle:hover {
            color: var(--hover-light);
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background-color: var(--dropdown-bg);
            border-radius: 5px;
            box-shadow: 0 2px 5px var(--shadow-color);
            min-width: 150px;
            z-index: 1000;
            margin-top: 0.5rem;
        }
        .dropdown-menu.active {
            display: block;
        }
        .dropdown-menu a {
            display: block;
            padding: 8px 15px;
            color: var(--dropdown-text);
            text-decoration: none;
            font-size: 14px;
            transition: background-color 0.2s ease;
        }
        .dropdown-menu a:hover {
            background-color: var(--hover-light);
        }
        .warning-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .warning-modal.active {
            display: flex;
            opacity: 1;
        }
        .warning-modal-content {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 4px 15px var(--shadow-color);
            text-align: center;
        }
        .warning-modal-header h2 {
            margin: 0 0 10px;
            font-size: 1.5rem;
            color: var(--text-color);
        }
        .warning-modal-body p {
            margin: 0 0 15px;
            font-size: 1rem;
            color: var(--text-color);
        }
        .timer-text {
            font-weight: bold;
            color: #2563eb;
        }
        .payment-balloon {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .payment-balloon button {
            background: #39ad1c;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 25px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .payment-balloon button:hover {
            background: #2e8c16;
            transform: scale(1.05);
        }
        .payment-balloon button i {
            font-size: 1rem;
        }

        /* Novo Modal de Planos - Design Full e com Etapas */
        .plans-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(20, 20, 40, 0.85);
            z-index: 1002;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease-in-out;
        }
        .plans-modal.active {
            display: flex;
            opacity: 1;
        }
        .plans-modal-content {
            background: linear-gradient(135deg, #1e1e2f 0%, #2b2d42 100%);
            border-radius: 20px;
            max-width: 1000px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            padding: 20px;
        }
        .plans-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }
        .plans-modal-close:hover {
            background: rgba(255, 85, 85, 0.8);
            transform: rotate(180deg);
        }
        .plans-modal-step {
            padding: 40px;
            color: #fff;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .plans-step-1.hidden, .plans-step-2.hidden {
            display: none;
        }
        .plans-step-1.active, .plans-step-2.active {
            display: block;
        }
        .plans-step-1 h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #4cc9f0, #2563eb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            text-align: center;
        }
        .plans-step-1 p {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 30px;
            text-align: center;
        }
        .plans-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .plan-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .plan-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        .plan-item.selected {
            background: linear-gradient(90deg, #2563eb 0%, #4cc9f0 100%);
            border: none;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }
        .plan-item h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
            text-align: center;
        }
        .plan-item .price {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            text-align: center;
        }
        .plan-item .price span {
            font-size: 1rem;
            font-weight: 400;
            opacity: 0.8;
        }
        .plan-item ul {
            list-style: none;
            padding: 0;
            margin-bottom: 15px;
        }
        .plan-item ul li {
            font-size: 0.95rem;
            color: #fff;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0.9;
        }
        .plan-item ul li i {
            color: #4cc9f0;
        }
        .plan-item .duration {
            font-size: 0.9rem;
            color: #fff;
            text-align: center;
            opacity: 0.8;
        }
        .plans-modal-footer {
            text-align: center;
            padding-top: 20px;
        }
        .btn-checkout {
            background: linear-gradient(90deg, #2563eb 0%, #4cc9f0 100%);
            color: #fff;
            border: none;
            padding: 14px 50px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: none;
            box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
        }
        .btn-checkout:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
        }
        .btn-checkout:disabled {
            background: #ccc;
            cursor: not-allowed;
            box-shadow: none;
        }
        .plans-step-2 {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            color: #2b2d42;
        }
        .plans-step-2 h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }
        .plans-step-2 p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            text-align: center;
            color: #666;
        }
        #payment-brick-container {
            margin-top: 20px;
        }
        .back-to-plans {
            background: none;
            border: none;
            color: #2563eb;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }
        .back-to-plans:hover {
            color: #1d4ed8;
        }
        @media (max-width: 768px) {
            .plans-modal-content {
                max-width: 95%;
                margin: 10px;
            }
            .plans-modal-step {
                padding: 20px;
            }
            .plans-step-1 h2 {
                font-size: 1.8rem;
            }
            .plans-step-1 p {
                font-size: 1rem;
            }
            .plans-list {
                grid-template-columns: 1fr;
            }
            .plan-item {
                padding: 20px;
            }
            .plan-item h3 {
                font-size: 1.4rem;
            }
            .plan-item .price {
                font-size: 1.8rem;
            }
            .btn-checkout {
                padding: 12px 40px;
                font-size: 1.1rem;
            }
            .plans-step-2 h2 {
                font-size: 1.6rem;
            }
            .plans-step-2 p {
                font-size: 1rem;
            }
        }

    

/* Botão de Fechar do Modal */
.modal-close {
    position: absolute;
    top: 25px;
    right: 7px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px; /* Tamanho ajustado para caber melhor */
    height: 36px; /* Tamanho ajustado para caber melhor */
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem; /* Reduzido ligeiramente para proporção */
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 85, 85, 0.9); /* Vermelho suave para indicar "fechar" */
    transform: rotate(90deg); /* Rotação sutil para interação */
    color: #fff;
}

.modal-close i {
    font-size: 1.2rem; /* Tamanho do ícone */
}

/* Ajustes no Modal de Configuração da Loja */
.setup-store-step {
    text-align: center;
    padding: 40px;
    color: #fff;
    animation: fadeIn 0.5s ease-in-out;
}

.setup-store-step h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #34c759, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.setup-store-step p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
    color: #d1d5db;
}

.profile-btn {
    background: linear-gradient(90deg, #16a34a, #34c759);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    width: 100%;
    max-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.4);
}

.profile-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg, #13893c, #2eb24e);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.6);
}

.profile-btn i {
    font-size: 1.2rem;
}

/* Animação de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .setup-store-step {
        padding: 30px;
    }

    .setup-store-step h2 {
        font-size: 2rem;
    }

    .setup-store-step p {
        font-size: 1.1rem;
    }

    .profile-btn {
        padding: 10px 30px;
        font-size: 1rem;
        max-width: 180px;
    }

    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: 20px;
        right: 5px;
    }
}

@media (max-width: 480px) {
    .setup-store-step {
        padding: 20px;
    }

    .setup-store-step h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .setup-store-step p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .profile-btn {
        padding: 8px 25px;
        font-size: 0.9rem;
        max-width: 160px;
    }

    .modal-close {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        top: 20px;
        right: 5px;
    }
}

        /* Modal de Boas-Vindas */
        .welcome-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(20, 20, 40, 0.9);
            z-index: 1002;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease-in-out;
        }

        .welcome-modal.active {
            display: flex;
            opacity: 1;
        }

        .welcome-modal-content {
            background: linear-gradient(135deg, #1e1e2f 0%, #2b2d42 100%);
            border-radius: 16px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            position: relative;
            padding: 20px;
            animation: slideIn 0.5s ease-out forwards;
        }

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

        .welcome-modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            color: #fff;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .welcome-modal-close:hover {
            background: rgba(255, 85, 85, 0.8);
            transform: rotate(90deg);
        }

        .welcome-step {
            padding: 25px;
            color: #fff;
            text-align: center;
            transition: opacity 0.3s ease;
        }

        .welcome-step.hidden {
            display: none;
        }

        .welcome-step.active {
            display: block;
            animation: fadeInStep 0.4s ease forwards;
        }

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

        .welcome-step h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #4cc9f0, #2563eb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .welcome-step p {
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 20px;
            color: #d1d5db;
        }

        .welcome-modal-footer {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding-top: 15px;
        }

        .welcome-btn {
            background: linear-gradient(90deg, #2563eb 0%, #4cc9f0 100%);
            color: #fff;
            border: none;
            padding: 10px 30px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            max-width: 220px;
            text-align: center;
        }

        .welcome-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
        }

        #welcome-skip-btn {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            box-shadow: none;
        }

        #welcome-skip-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .welcome-modal-content {
                width: 85%;
                max-width: 400px;
                padding: 15px;
                border-radius: 12px;
            }

            .welcome-step {
                padding: 20px;
            }

            .welcome-step h2 {
                font-size: 1.6rem;
            }

            .welcome-step p {
                font-size: 0.9rem;
            }

            .welcome-btn {
                padding: 8px 25px;
                font-size: 0.95rem;
                max-width: 180px;
            }
        }

        @media (max-width: 480px) {
            .welcome-modal-content {
                width: 90%;
                padding: 10px;
                max-height: 85vh;
            }

            .welcome-step {
                padding: 15px;
            }

            .welcome-step h2 {
                font-size: 1.4rem;
                margin-bottom: 12px;
            }

            .welcome-step p {
                font-size: 0.85rem;
                margin-bottom: 15px;
            }

            .welcome-modal-footer {
                gap: 10px;
                padding-top: 10px;
            }

            .welcome-btn {
                padding: 8px 20px;
                font-size: 0.9rem;
                max-width: 160px;
            }

            .welcome-modal-close {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }
        }